makefile: remove quotes from platform path
Change-Id: I54ff58be05e193969a3e569f612b66e83f38a63f Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
d7a1e577df
commit
74e2870366
4 changed files with 5 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
||||||
ccflags-y +=-I$(srctree)/arch/arc/platforms/$(strip $(CONFIG_PLATFORM))
|
ccflags-y +=-I$(srctree)/arch/arc/platforms/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
||||||
asflags-y +=-I$(srctree)/arch/arc/platforms/$(strip $(CONFIG_PLATFORM))
|
asflags-y +=-I$(srctree)/arch/arc/platforms/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
||||||
|
|
||||||
obj-y = core/
|
obj-y = core/
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
ccflags-y +=-I$(srctree)/include/drivers
|
ccflags-y +=-I$(srctree)/include/drivers
|
||||||
ccflags-y +=-I$(srctree)/arch/$(ARCH)/platforms/$(strip $(CONFIG_PLATFORM))
|
ccflags-y +=-I$(srctree)/arch/$(ARCH)/platforms/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
||||||
|
|
||||||
asflags-y = $(ccflags-y)
|
asflags-y = $(ccflags-y)
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
ccflags-y +=-I$(srctree)/arch/$(ARCH)/platforms/$(strip $(CONFIG_PLATFORM))
|
ccflags-y +=-I$(srctree)/arch/$(ARCH)/platforms/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
||||||
|
|
||||||
obj-y = main.o
|
obj-y = main.o
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
ccflags-y += ${PROJECTINCLUDE} -I${srctree}/samples/include
|
ccflags-y += ${PROJECTINCLUDE} -I${srctree}/samples/include
|
||||||
ccflags-y +=-I$(srctree)/arch/$(ARCH)/platforms/$(strip $(CONFIG_PLATFORM))
|
ccflags-y +=-I$(srctree)/arch/$(ARCH)/platforms/$(subst $(DQUOTE),,$(CONFIG_PLATFORM))
|
||||||
|
|
||||||
obj-y = context.o
|
obj-y = context.o
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue