diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile index ecc777e..7f55f7b 100644 --- a/Makefile +++ b/Makefile @@ -7,10 +7,13 @@ 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 |