diff options
Diffstat (limited to 'src/util/Makefile')
| -rw-r--r-- | src/util/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/util/Makefile b/src/util/Makefile index 21c7b9670..d72661e21 100644 --- a/src/util/Makefile +++ b/src/util/Makefile @@ -1,7 +1,7 @@ BLIB = ../bin/blib.a CFLAGS = -Os -all : hijack prototester +all : hijack prototester mucurses_test hijack : hijack.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $< @@ -12,5 +12,11 @@ prototester.o : prototester.c prototester : prototester.o $(BLIB) $(CC) -o $@ $< -lc $(BLIB) +mucurses_test.o : mucurses_test.c + $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< + +mucurses_test : mucurses_test.o $(BLIB) + $(CC) -o $@ $< -lc $(BLIB) + clean : - rm -f hijack prototester *.o + rm -f hijack prototester mucurses_test *.o |
