From a2e0b6901cb4eef7ad1d78bee0d70c577c61e0f5 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sun, 25 Feb 2018 19:16:56 -0500 Subject: Rewrite everything --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit 1.4.1