diff options
author | June McEnroe <programble@gmail.com> | 2018-02-25 22:10:46 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-02-25 22:11:37 -0500 |
commit | e8c73759dc86ea05f7a7778a94ca6ce583a1305b (patch) | |
tree | c50bbe73e62a03d427d46da88abe10ab5d9e4ca3 /Makefile | |
parent | Add missing include (diff) | |
download | stream-e8c73759dc86ea05f7a7778a94ca6ce583a1305b.tar.gz stream-e8c73759dc86ea05f7a7778a94ca6ce583a1305b.zip |
Switch back to static window sizing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
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 |