diff options
author | June McEnroe <programble@gmail.com> | 2018-02-22 16:06:34 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-02-22 16:06:34 -0500 |
commit | c6267a7306cdd69ab13cd8f24414113a655341c8 (patch) | |
tree | 578a0b61fa80d40c3c7b5775be12b87e941fd475 /Makefile | |
parent | Add command.sh (diff) | |
download | stream-c6267a7306cdd69ab13cd8f24414113a655341c8.tar.gz stream-c6267a7306cdd69ab13cd8f24414113a655341c8.zip |
Rename command to ssh-command
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
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: |