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