aboutsummaryrefslogtreecommitdiff
path: root/src/util/Makefile
diff options
context:
space:
mode:
authorDan Lynch <danjlynch@users.sourceforge.net>2006-06-27 17:31:01 +0000
committerDan Lynch <danjlynch@users.sourceforge.net>2006-06-27 17:31:01 +0000
commit2b15084388eb93794c3396daebc8c7dc0440a3a5 (patch)
treed153d233e373a46868f1eb6818564aa95e4c0617 /src/util/Makefile
parent0bcaa8a21f95027617ca6fe438b187d638634bac (diff)
downloadipxe-2b15084388eb93794c3396daebc8c7dc0440a3a5.zip
ipxe-2b15084388eb93794c3396daebc8c7dc0440a3a5.tar.gz
ipxe-2b15084388eb93794c3396daebc8c7dc0440a3a5.tar.bz2
- 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 21c7b96..d72661e 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