summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5f4e0b1
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+all: nothing
+
+nothing:
+ @echo "Nothing to see here"
+
+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
+