all: Make use of $(TOP) variable in Makefiles, instead of "..".

$(TOP) is defined in py/mkenv.mk and should be used to refer to the top
level of this repository.
This commit is contained in:
Damien George
2017-08-11 12:22:19 +10:00
parent f9dfd8aa3b
commit 7d4a2f773c
15 changed files with 87 additions and 87 deletions

View File

@@ -4,13 +4,13 @@ BOOT_INC = -Ibootmgr
BOOT_INC += -Ibootmgr/sl
BOOT_INC += -Ihal
BOOT_INC += -Ihal/inc
BOOT_INC += -I../drivers/cc3100/inc
BOOT_INC += -I$(TOP)/drivers/cc3100/inc
BOOT_INC += -Imisc
BOOT_INC += -Imods
BOOT_INC += -Isimplelink
BOOT_INC += -Isimplelink/oslib
BOOT_INC += -Iutil
BOOT_INC += -I..
BOOT_INC += -I$(TOP)
BOOT_INC += -I.
BOOT_INC += -I$(BUILD)