summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornorly <ny-git@enpas.org>2017-04-23 14:54:26 +0200
committernorly <ny-git@enpas.org>2017-04-23 14:54:26 +0200
commit7c66927d8141cd22fc1f29bf7f1a8fb2adb2bdbd (patch)
tree3de180d3237b6175a58649b922742b05922ed31e /Makefile
parent9875dcaa0de63d8c72ea734aa6ed342de0c078f2 (diff)
vw-bap-frame.c: Extract frame handling functions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5b235d5..6a0fe71 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,11 @@
CFLAGS += -Wall -g
+BAPLIB = vw-bap.c vw-bap-frame.c
+
all: vw-bap-dump vw-bap-sniffer
-vw-bap-dump: vw-bap-dump.c vw-bap.c
+vw-bap-dump: vw-bap-dump.c $(BAPLIB)
-vw-bap-sniffer: vw-bap-sniffer.c vw-bap.c
+vw-bap-sniffer: vw-bap-sniffer.c $(BAPLIB)
gcc -o $@ $^ -lncurses