summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-22 18:27:26 -0500
committerJune McEnroe <programble@gmail.com>2018-02-22 18:27:26 -0500
commitbcf4b48fd9d77e4c28ca51180a69a6b06231c7e4 (patch)
tree056712f5276b4f1f0f7d8e6d6eb2e655868b8140 /Makefile
parentIndent list of streams (diff)
downloadstream-bcf4b48fd9d77e4c28ca51180a69a6b06231c7e4.tar.gz
stream-bcf4b48fd9d77e4c28ca51180a69a6b06231c7e4.zip
Add setup, start command
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e45a101..57af159 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-BINS = broadcast ingest ssh-command view
+BINS = broadcast ingest setup ssh-command view
 USER = stream
 
 CFLAGS += -Wall -Wextra -Wpedantic
@@ -9,7 +9,7 @@ all: tags $(BINS)
 tags: *.c
 	ctags -w *.c
 
-chroot.tar: ingest ssh-command view
+chroot.tar: $(BINS)
 	mkdir -p root
 	install -d -o root -g wheel \
 	    root/bin \
@@ -29,7 +29,7 @@ chroot.tar: ingest ssh-command view
 	    root/lib
 	install -o root -g wheel -m 444 /usr/share/misc/termcap.db root/usr/share/misc
 	install -o root -g wheel -m 555 /bin/sh root/bin
-	install -o root -g wheel -m 555 ingest ssh-command view root/bin
+	install -o root -g wheel -m 555 $(BINS) root/bin
 	tar -c -f chroot.tar -C root bin home lib libexec usr
 
 clean: