summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
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
63&follow=1'>Fix termcap patch for background colorsJune McEnroe 2017-07-30Update helpJune McEnroe 2017-07-30Fix help to track colorJune McEnroe 2017-07-30Support background colorsJune McEnroe 2017-07-30Track color only client-sideJune McEnroe 2017-07-30Add ostensible support for background colorsJune McEnroe 2017-07-30Add tile create and access timestampsJune McEnroe 2017-07-30Assert stable struct Tile field offsetsJune McEnroe 2017-07-30Add chroot.shJune McEnroe 2017-07-30Add ` commandJune McEnroe 2017-07-30Add sshd_configJune McEnroe 2017-07-30Add termcap patchJune McEnroe