summaryrefslogtreecommitdiff
path: root/Makefile
blob: e9bf8ae30915422ea1cac63883fd83a7407f5489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
all: nothing

nothing:
	@echo "Nothing to see here"

pkg:
	dpkg-buildpackage -rfakeroot -uc -us -b

PREFIX ?= /usr

install:
	install -d $(DESTDIR)$(PREFIX)/sbin
	for TOOL in br-ct-sync-chroots enter-baserock manage-baserock; do \
		install -m 0755 $${TOOL} $(DESTDIR)$(PREFIX)/sbin/$${TOOL}; \
	done
	install -d $(DESTDIR)/opt/baserock/chroots
	install -d $(DESTDIR)/opt/baserock/src