summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-25 19:16:56 -0500
committerJune McEnroe <programble@gmail.com>2018-02-25 19:16:56 -0500
commita2e0b6901cb4eef7ad1d78bee0d70c577c61e0f5 (patch)
treea7fe735a4b2b509d89eb8d4c4ff6f492df1439a5 /Makefile
parentHardcode path lengths in setup (diff)
downloadstream-a2e0b6901cb4eef7ad1d78bee0d70c577c61e0f5.tar.gz
stream-a2e0b6901cb4eef7ad1d78bee0d70c577c61e0f5.zip
Rewrite everything
Diffstat (limited to '')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 57af159..ecc777e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-BINS = broadcast ingest setup ssh-command view
+BINS = ingest ptee setup ssh-command view
 USER = stream
 
 CFLAGS += -Wall -Wextra -Wpedantic
@@ -6,6 +6,12 @@ LDLIBS = -lutil
 
 all: tags $(BINS)
 
+ingest: ingest.o winch.o
+
+ptee: ptee.o winch.o
+
+view: view.o winch.o
+
 tags: *.c
 	ctags -w *.c
 
@@ -33,6 +39,6 @@ chroot.tar: $(BINS)
 	tar -c -f chroot.tar -C root bin home lib libexec usr
 
 clean:
-	rm -f tags $(BINS) chroot.tar
+	rm -f tags *.o $(BINS) chroot.tar
 
 .PHONY: all clean