diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile index e1fea15..9b8c704 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CHROOT_GROUP = ${CHROOT_USER} CFLAGS += -Wall -Wextra -Wpedantic LDFLAGS = -static -LDLIBS = -lutil +LDLIBS = -lcurses -lutil -include config.mk @@ -19,7 +19,10 @@ all: tags ${BINS} ingest: ingest.o term.o ${CC} ${LDFLAGS} ingest.o term.o ${LDLIBS} -o $@ -ingest.o term.o: stream.h +view: view.o term.o + ${CC} ${LDFLAGS} view.o term.o ${LDLIBS} -o $@ + +ingest.o term.o view.o: stream.h tags: *.c *.h ctags -w *.c *.h |