diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 10 |
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 |