diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-03-23 21:35:20 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-03-23 21:35:20 +0000 |
commit | 99032beccea35d288ed28aecc50f1a6427051b0f (patch) | |
tree | 5c52316cfa08ceba70b7824ebf98aaf01d24661a /src/util/Makefile | |
parent | 2299435f1ca6dcebff138fcc8976efe888ea9aaa (diff) | |
download | ipxe-99032beccea35d288ed28aecc50f1a6427051b0f.tar.gz |
Pick up the gPXE include files when building prototester.
Diffstat (limited to 'src/util/Makefile')
-rw-r--r-- | src/util/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Makefile b/src/util/Makefile index 97dec040e..21c7b9670 100644 --- a/src/util/Makefile +++ b/src/util/Makefile @@ -7,7 +7,7 @@ hijack : hijack.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -lpcap -o $@ $< prototester.o : prototester.c - $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< + $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -Wall -o $@ -c $< -idirafter ../include prototester : prototester.o $(BLIB) $(CC) -o $@ $< -lc $(BLIB) |