From 9e8543c9a4e25897350b6156a7245145093fbb27 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sun, 25 Feb 2018 19:23:36 -0500 Subject: Define rules for multi-object binaries --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') 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 -- cgit 1.4.1