summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-02-25 22:10:46 -0500
committerJune McEnroe <programble@gmail.com>2018-02-25 22:11:37 -0500
commite8c73759dc86ea05f7a7778a94ca6ce583a1305b (patch)
treec50bbe73e62a03d427d46da88abe10ab5d9e4ca3 /Makefile
parentAdd missing include (diff)
downloadstream-e8c73759dc86ea05f7a7778a94ca6ce583a1305b.tar.gz
stream-e8c73759dc86ea05f7a7778a94ca6ce583a1305b.zip
Switch back to static window sizing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 7f55f7b..58e7cc9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,15 +6,6 @@ LDLIBS = -lutil
 
 all: tags $(BINS)
 
-ingest: ingest.o winch.o
-	$(CC) $(LDFLAGS) ingest.o winch.o $(LDLIBS) -o $@
-
-ptee: ptee.o winch.o
-	$(CC) $(LDFLAGS) ptee.o winch.o $(LDLIBS) -o $@
-
-view: view.o winch.o
-	$(CC) $(LDFLAGS) view.o winch.o $(LDLIBS) -o $@
-
 tags: *.c
 	ctags -w *.c
 
@@ -42,6 +33,6 @@ chroot.tar: $(BINS)
 	tar -c -f chroot.tar -C root bin home lib libexec usr
 
 clean:
-	rm -f tags *.o $(BINS) chroot.tar
+	rm -f tags $(BINS) chroot.tar
 
 .PHONY: all clean