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:
parent
ff694e92b5
commit
7dcbbc39e7
79 changed files with 149 additions and 149 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y +=-I${srctree}/samples/bluetooth
|
||||
ccflags-y +=-I${ZEPHYR_BASE}/samples/bluetooth
|
||||
|
||||
obj-y = main.o ../../gatt/gap.o
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = bluetooth.o
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
ccflags-y += -I$(srctree)/tests/include
|
||||
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
|
||||
obj-y = test_aes.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I$(srctree)/tests/include
|
||||
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
|
||||
|
||||
obj-y = test_cbc_mode.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I$(srctree)/tests/include
|
||||
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
|
||||
|
||||
obj-y = test_ccm_mode.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I$(srctree)/tests/include
|
||||
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
|
||||
|
||||
obj-y = test_cmac_mode.o
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
ccflags-y += -I$(srctree)/tests/include
|
||||
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
|
||||
obj-y = test_ctr_mode.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I$(srctree)/tests/include
|
||||
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
|
||||
|
||||
obj-y = test_hmac.o
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
ccflags-y += -I$(srctree)/tests/include
|
||||
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
|
||||
|
||||
obj-y = test_hmac_prng.o
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
ccflags-y += -I$(srctree)/tests/include
|
||||
ccflags-y += -I$(ZEPHYR_BASE)/tests/include
|
||||
|
||||
obj-y = test_sha256.o
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = main.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = atomic.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = bitfield.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = context.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = critical.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = early_sleep.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = main.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = events.o test_fiber.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = fifo.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = fifo.o fifo_timeout.o
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = main.o
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = main.o
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = lifo.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = mail.o main.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = map.o
|
||||
|
|
|
@ -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)))
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = mutex.o task50.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = main.o
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = pend.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = main.o pipe.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = pool.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = test-rand32.o
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = test_ring_buf.o
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = sema.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = sleep.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = slist.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = test_sprintf.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = stack.o
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = stackprot.o
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
ccflags-y += -I${srctree}/tests/include
|
||||
ccflags-y += -I${ZEPHYR_BASE}/tests/include
|
||||
|
||||
obj-y = task.o
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue