summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-22 16:06:34 -0500
committerJune McEnroe <programble@gmail.com>2018-02-22 16:06:34 -0500
commitc6267a7306cdd69ab13cd8f24414113a655341c8 (patch)
tree578a0b61fa80d40c3c7b5775be12b87e941fd475 /Makefile
parentAdd command.sh (diff)
downloadstream-c6267a7306cdd69ab13cd8f24414113a655341c8.tar.gz
stream-c6267a7306cdd69ab13cd8f24414113a655341c8.zip
Rename command to ssh-command
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 86e09de..e45a101 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-BINS = broadcast command ingest view
+BINS = broadcast ingest ssh-command view
 USER = stream
 
 CFLAGS += -Wall -Wextra -Wpedantic
@@ -9,7 +9,7 @@ all: tags $(BINS)
 tags: *.c
 	ctags -w *.c
 
-chroot.tar: command ingest view
+chroot.tar: ingest ssh-command view
 	mkdir -p root
 	install -d -o root -g wheel \
 	    root/bin \
@@ -29,7 +29,7 @@ chroot.tar: command ingest 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 command ingest view root/bin
+	install -o root -g wheel -m 555 ingest ssh-command view root/bin
 	tar -c -f chroot.tar -C root bin home lib libexec usr
 
 clean: