build: move from srctree to ZEPHYR_BASE for app include paths

$srctree for the application might not be set to be $ZEPHYR_BASE, use
$ZEPHYR_BASE instead to be more explicit in the build.

Change-Id: Iefa5ff59f246b584949329044f7a6531adc6ed62
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2016-06-18 08:44:38 -05:00 committed by Inaky Perez-Gonzalez
commit 7dcbbc39e7
79 changed files with 149 additions and 149 deletions

View file

@ -1,7 +1,7 @@
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${srctree}/samples/bluetooth
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth
obj-y = main.o ../../gatt/ipss.o

View file

@ -1,4 +1,4 @@
ccflags-y +=-I${srctree}/samples/bluetooth
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth
obj-y = main.o ../../gatt/gap.o ../../gatt/hrs.o ../../gatt/dis.o \
../../gatt/bas.o ../../gatt/cts.o

View file

@ -1,3 +1,3 @@
ccflags-y +=-I${srctree}/samples/bluetooth
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth
obj-y = main.o ../../gatt/gap.o ../../gatt/dis.o ../../gatt/bas.o

View file

@ -1,3 +1,3 @@
ccflags-y +=-I${srctree}/samples/bluetooth
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth
obj-y = main.o ../../gatt/gap.o ../../gatt/dis.o

View file

@ -1,3 +1,3 @@
ccflags-y +=-I${srctree}/samples/bluetooth
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth
obj-y = main.o ../../gatt/gap.o ../../gatt/dis.o ../../gatt/bas.o

View file

@ -1,4 +1,4 @@
ccflags-y +=-I${srctree}/samples/bluetooth
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth
obj-y = main.o ../../gatt/gap.o ../../gatt/hrs.o ../../gatt/dis.o \
../../gatt/bas.o

View file

@ -1,3 +1,3 @@
ccflags-y +=-I${srctree}/samples/bluetooth
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth
obj-y = main.o ../../gatt/gap.o

View file

@ -1,5 +1,5 @@
ccflags-y += ${PROJECTINCLUDE} \
-I$(srctree)/include/drivers \
-I$(srctree)/drivers -I$(srctree)/arch/arc
-I$(ZEPHYR_BASE)/include/drivers \
-I$(ZEPHYR_BASE)/drivers -I$(ZEPHYR_BASE)/arch/arc
obj-y = main.o

View file

@ -1,5 +1,5 @@
ccflags-y += ${PROJECTINCLUDE}
ccflags-y +=-I$(srctree)/include/drivers
ccflags-y +=-I$(srctree)/drivers -I$(srctree)/arch/x86
ccflags-y +=-I$(ZEPHYR_BASE)/include/drivers
ccflags-y +=-I$(ZEPHYR_BASE)/drivers -I$(ZEPHYR_BASE)/arch/x86
obj-y = main.o

View file

@ -1,5 +1,5 @@
ccflags-y += ${PROJECTINCLUDE} \
-I$(srctree)/include/drivers \
-I$(srctree)/drivers -I$(srctree)/arch/arc
-I$(ZEPHYR_BASE)/include/drivers \
-I$(ZEPHYR_BASE)/drivers -I$(ZEPHYR_BASE)/arch/arc
obj-y = hello.o

View file

@ -1,5 +1,5 @@
ccflags-y += ${PROJECTINCLUDE}
ccflags-y +=-I$(srctree)/include/drivers
ccflags-y +=-I$(srctree)/drivers -I$(srctree)/arch/x86
ccflags-y +=-I$(ZEPHYR_BASE)/include/drivers
ccflags-y +=-I$(ZEPHYR_BASE)/drivers -I$(ZEPHYR_BASE)/arch/x86
obj-y = hello.o

View file

@ -1,12 +1,12 @@
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os/sys
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip/tinydtls
ccflags-y +=-I${srctree}/net/ip/er-coap
ccflags-y +=-I${srctree}/net/ip/rest-engine
ccflags-y +=-I${srctree}/samples/bluetooth/
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/sys
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/tinydtls
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/er-coap
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/rest-engine
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth/
obj-y = coap-observe-client.o
@ -15,6 +15,6 @@ ifeq ($(CONFIG_NETWORKING_WITH_BT), y)
endif
ifeq ($(CONFIG_NET_TESTING), y)
ccflags-y +=-I${srctree}/samples/net/common/
ccflags-y +=-I${ZEPHYR_BASE}/samples/net/common/
ccflags-y +=-DNET_TESTING_SERVER=0
endif

View file

@ -1,12 +1,12 @@
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os/sys
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip/tinydtls
ccflags-y +=-I${srctree}/net/ip/er-coap
ccflags-y +=-I${srctree}/net/ip/rest-engine
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${srctree}/samples/bluetooth/
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/sys
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/tinydtls
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/er-coap
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/rest-engine
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth/
obj-y = coap-server.o
@ -15,7 +15,7 @@ ifeq ($(CONFIG_NETWORKING_WITH_BT), y)
endif
ifeq ($(CONFIG_NET_TESTING), y)
ccflags-y +=-I${srctree}/samples/net/common/
ccflags-y +=-I${ZEPHYR_BASE}/samples/net/common/
ccflags-y +=-DNET_TESTING_SERVER=1
endif

View file

@ -1,6 +1,6 @@
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
obj-y = dhcp-client.o

View file

@ -1,11 +1,11 @@
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip/contiki/os/sys
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/sys
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
ifeq ($(CONFIG_NET_TESTING), y)
ccflags-y +=-I${srctree}/samples/net/common/
ccflags-y +=-I${ZEPHYR_BASE}/samples/net/common/
ccflags-y +=-DNET_TESTING_SERVER=0
endif

View file

@ -1,12 +1,12 @@
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip/contiki/os/sys
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${srctree}/samples/bluetooth/
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/sys
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth/
ifeq ($(CONFIG_NET_TESTING), y)
ccflags-y +=-I${srctree}/samples/net/common/
ccflags-y +=-I${ZEPHYR_BASE}/samples/net/common/
ccflags-y +=-DNET_TESTING_SERVER=1
endif

View file

@ -1,11 +1,11 @@
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${srctree}/samples/bluetooth/
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth/
ifeq ($(CONFIG_NET_TESTING), y)
ccflags-y +=-I${srctree}/samples/net/common/
ccflags-y +=-I${ZEPHYR_BASE}/samples/net/common/
ccflags-y +=-DNET_TESTING_SERVER=0
endif

View file

@ -1,11 +1,11 @@
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${srctree}/samples/bluetooth/
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth/
ifeq ($(CONFIG_NET_TESTING), y)
ccflags-y +=-I${srctree}/samples/net/common/
ccflags-y +=-I${ZEPHYR_BASE}/samples/net/common/
ccflags-y +=-DNET_TESTING_SERVER=1
endif

View file

@ -1,6 +1,6 @@
ccflags-y += -I${srctree}/net/ip/contiki
ccflags-y += -I${srctree}/net/ip/contiki/os/lib
ccflags-y += -I${srctree}/net/ip/contiki/os
ccflags-y += -I${srctree}/net/ip
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y += -I${ZEPHYR_BASE}/net/ip
obj-y = network.o

View file

@ -14,10 +14,10 @@
# limitations under the License.
#
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
obj-y += tcp.o
obj-y += mqtt.o

View file

@ -14,12 +14,12 @@
# limitations under the License.
#
ccflags-y +=-I${srctree}/net/ip/contiki
ccflags-y +=-I${srctree}/net/ip/contiki/os/lib
ccflags-y +=-I${srctree}/net/ip/contiki/os
ccflags-y +=-I${srctree}/net/ip
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y +=-I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y +=-I${ZEPHYR_BASE}/net/ip
ccflags-y += -I${srctree}/samples/net/paho_mqtt_client/src
ccflags-y += -I${ZEPHYR_BASE}/samples/net/paho_mqtt_client/src
obj-y += main.o
obj-y += mqtt_shell.o

View file

@ -1,7 +1,7 @@
ccflags-y += -I${srctree}/net/ip/contiki
ccflags-y += -I${srctree}/net/ip/contiki/os/lib
ccflags-y += -I${srctree}/net/ip/contiki/os
ccflags-y += -I${srctree}/net/ip
ccflags-$(CONFIG_NET_SANITY_TEST) += -I${srctree}/samples/include
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y += -I${ZEPHYR_BASE}/net/ip
ccflags-$(CONFIG_NET_SANITY_TEST) += -I${ZEPHYR_BASE}/samples/include
obj-y = network.o

View file

@ -3,10 +3,10 @@ ccflags-y += -DPROFILER
endif
ccflags-y += -I${srctree}/net/ip/contiki
ccflags-y += -I${srctree}/net/ip/contiki/os/lib
ccflags-y += -I${srctree}/net/ip/contiki/os
ccflags-y += -I${srctree}/net/ip
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki/os/lib
ccflags-y += -I${ZEPHYR_BASE}/net/ip/contiki/os
ccflags-y += -I${ZEPHYR_BASE}/net/ip
ccflags-y += -I${ZEPHYR_BASE}/samples/task_profiler/profiler/src
obj-y += zperf_shell.o

View file

@ -1,4 +1,4 @@
ccflags-y +=-I$(srctree)/include/drivers
ccflags-y +=-I$(srctree)/drivers -I$(srctree)/arch/x86
ccflags-y +=-I$(ZEPHYR_BASE)/include/drivers
ccflags-y +=-I$(ZEPHYR_BASE)/drivers -I$(ZEPHYR_BASE)/arch/x86
obj-y = x86_bmi160.o

View file

@ -1,5 +1,5 @@
ccflags-y += -I$(CURDIR)/misc/generated/sysgen
ccflags-y += -I$(srctree)/tests/benchmark/latency_measure/microkernel/src
ccflags-y += -I$(ZEPHYR_BASE)/tests/benchmark/latency_measure/microkernel/src
obj-y := fifo_b.o mailbox_b.o master.o mempool_b.o \
nop_b.o pipe_r.o sema_r.o event_b.o \

View file

@ -1,4 +1,4 @@
ccflags-y += -I$(CURDIR)/misc/generated/sysgen
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y=boot_time.o

View file

@ -1,5 +1,5 @@
ccflags-y += -I$(CURDIR)/misc/generated/sysgen
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
ccflags-$(CONFIG_SOC_QUARK_D2000) += -DSTACKSIZE=256
obj-y = main.o \

View file

@ -1,4 +1,4 @@
ccflags-y = -I$(srctree)/tests/benchmark/latency_measure/microkernel/src -I${srctree}/tests/include
ccflags-y = -I$(ZEPHYR_BASE)/tests/benchmark/latency_measure/microkernel/src -I${ZEPHYR_BASE}/tests/include
ccflags-y += -I$(CURDIR)/misc/generated/sysgen
obj-y = lifo.o \

View file

@ -1,5 +1,5 @@
ccflags-y +=-I$(srctree)/include/drivers
ccflags-y +=-I$(srctree)/samples/bluetooth
ccflags-y +=-I$(ZEPHYR_BASE)/include/drivers
ccflags-y +=-I$(ZEPHYR_BASE)/samples/bluetooth
obj-y = main.o ../../../../samples/bluetooth/gatt/gap.o \
../../../../samples/bluetooth/gatt/hrs.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = bluetooth.o

View file

@ -1,3 +1,3 @@
ccflags-y +=-I$(srctree)/include/drivers
ccflags-y +=-I$(ZEPHYR_BASE)/include/drivers
obj-y = bttester.o gap.o gatt.o l2cap.o main.o

View file

@ -1,2 +1,2 @@
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y = test_aes.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y = test_cbc_mode.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y = test_ccm_mode.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y = test_cmac_mode.o

View file

@ -1,2 +1,2 @@
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y = test_ctr_mode.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y = test_hmac.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y = test_hmac_prng.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I$(srctree)/tests/include
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
obj-y = test_sha256.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = main.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = atomic.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = bitfield.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = context.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = critical.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = early_sleep.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = main.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = events.o test_fiber.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = fifo.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = fifo.o fifo_timeout.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y += main.o
obj-y += pi.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = main.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = ipm_dummy.o test_ipm.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = main.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = libraries.o
obj-y += main.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = lifo.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = mail.o main.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = map.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
DQUOTE = "
BUILD_ARCH = $(strip $(subst $(DQUOTE),,$(CONFIG_ARCH)))

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = mutex.o task50.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = main.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = phil_fiber.o phil_task.o object_monitor.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = pend.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = main.o pipe.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = pool.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = test-rand32.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = test_ring_buf.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = main.o sema.o test_fiber.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = sema.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = sleep.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = slist.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = test_sprintf.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = stack.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = stackprot.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = static_idt.o test_stubs.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = task.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = test_tickless.o
ifeq ($(ARCH),arm)

View file

@ -1,4 +1,4 @@
ccflags-y += -I${srctree}/tests/include \
-I$(srctree)/tests/kernel/test_fifo/nanokernel/src/
ccflags-y += -I${ZEPHYR_BASE}/tests/include \
-I$(ZEPHYR_BASE)/tests/kernel/test_fifo/nanokernel/src/
obj-y = timer.o

View file

@ -1,4 +1,4 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
ccflags-$(CONFIG_SOC_QUARK_D2000) += -DFIBER_STACKSIZE=256 -DFIBER2_STACKSIZE=256
obj-y=timer.o

View file

@ -1,3 +1,3 @@
ccflags-y += -I${srctree}/tests/include
ccflags-y += -I${ZEPHYR_BASE}/tests/include
obj-y = test_xip.o test_xip_helper.o