Skip to content

Commit

Permalink
Add MKCONFIG utility, and add "-I ." to CFLAGS so that we can work
Browse files Browse the repository at this point in the history
with generated headers.
  • Loading branch information
Michael Brown committed Apr 17, 2005
1 parent b79895c commit b5ee376
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Makefile
Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit b5ee376

Please sign in to comment.