diff options
author | garakmon <thomastaps194@comcast.net> | 2018-06-16 19:03:20 -0400 |
---|---|---|
committer | garakmon <thomastaps194@comcast.net> | 2018-06-16 19:03:20 -0400 |
commit | 9766108fbc343dec01d3690c1ed8e38daa84d131 (patch) | |
tree | b6ea78a87d7dbef291228f511e2de4d16fd921ad | |
parent | 0b574eb01cafb2af8827a4fcb4202146cfa0e84d (diff) |
adding agbcc include path
For some reason the headers for agbcc are being installed in
tools/agbcc instead of tools/agbcc/include. This is a simple
(potentially temporary) workaround.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ ASFLAGS := -mcpu=arm7tdmi CC1 := tools/agbcc/bin/agbcc override CFLAGS += -mthumb-interwork -Wimplicit -Wparentheses -Werror -O2 -fhex-asm -CPPFLAGS := -I tools/agbcc/include -iquote include -nostdinc -undef +CPPFLAGS := -I tools/agbcc/include -I tools/agbcc -iquote include -nostdinc -undef LDFLAGS = -Map ../../$(MAP) |