diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-04-17 15:58:39 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-04-17 15:58:39 +0000 |
commit | b5ee3763c61a97b1f11b9ad6cd57c298c6f02782 (patch) | |
tree | 55baaf2d390ff8547deb6c596cd4d23306e2c068 /src/Makefile | |
parent | b79895c9d6c6c6cae6b9aa97f5d303e08d057fbe (diff) | |
download | ipxe-b5ee3763c61a97b1f11b9ad6cd57c298c6f02782.tar.gz |
Add MKCONFIG utility, and add "-I ." to CFLAGS so that we can work
with generated headers.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 4ea843edd..ede590f52 100644 --- a/src/Makefile +++ b/src/Makefile @@ -73,6 +73,7 @@ RANLIB ?= $(CROSS_COMPILE)ranlib OBJCOPY ?= $(CROSS_COMPILE)objcopy PARSEROM ?= $(PERL) ./util/parserom.pl MAKEROM ?= $(PERL) ./util/makerom.pl +MKCONFIG ?= $(PERL) ./util/mkconfig.pl NRV2B ?= ./util/nrv2b # Location to place generated files @@ -84,7 +85,7 @@ BLIB = $(BIN)/blib.a # Common flags # -CFLAGS += -I include -I arch/$(ARCH)/include -DARCH=$(ARCH) +CFLAGS += -I include -I arch/$(ARCH)/include -I . -DARCH=$(ARCH) CFLAGS += -Os -ffreestanding CFLAGS += -Wall -W -Wno-format CFLAGS += $(EXTRA_CFLAGS) |