summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8f40589c9060933a109ecb1887f11b2ffbb5d8c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
# SPDX-FileCopyrightText: 2024 Matthew Fennell <matthew@fennell.dev>
#
# SPDX-License-Identifier: AGPL-3.0-or-later

.PHONY: all lint install

INSTALL_DIR = /usr/local/share/ansible/roles

all:
	make lint
	sudo make install

lint:
	precious --ascii lint --all

install:
	rm -rf $(INSTALL_DIR)
	mkdir -p $(INSTALL_DIR)
	cp -r bootstrap $(INSTALL_DIR)