summaryrefslogtreecommitdiffstats
path: root/src/util/Makefile
diff options
context:
space:
mode:
authorDan Lynch2006-06-27 19:31:01 +0200
committerDan Lynch2006-06-27 19:31:01 +0200
commit2b15084388eb93794c3396daebc8c7dc0440a3a5 (patch)
treed153d233e373a46868f1eb6818564aa95e4c0617 /src/util/Makefile
parentFirst stab at DHCP option handling in a way that will allow us to have (diff)
downloadipxe-2b15084388eb93794c3396daebc8c7dc0440a3a5.tar.gz
ipxe-2b15084388eb93794c3396daebc8c7dc0440a3a5.tar.xz
ipxe-2b15084388eb93794c3396daebc8c7dc0440a3a5.zip
- first check-in for mucurses_test.c
- added mucurses_test.c build targets
Diffstat (limited to 'src/util/Makefile')
-rw-r--r--src/util/Makefile10
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