The build system is actually using the output directory as the working dir for the Make session, using a symlink to the source directory. Relative paths don't work correctly, it only works now due to other issues in the build system where absolute paths are being used instead for app source files (causing other problems). Change-Id: I2bcd82314692902f12da51c96fe912efb68bdc5e Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
11 lines
295 B
Makefile
11 lines
295 B
Makefile
MDEF_FILE = prj.mdef
|
|
KERNEL_TYPE = micro
|
|
PLATFORM_CONFIG ?= basic_atom
|
|
CONF_FILE = prj_$(ARCH).conf
|
|
SOURCE_DIR := $(ZEPHYR_BASE)/samples/microkernel/test/test_map/src
|
|
|
|
# Enable testing for private microkernel memory map objects
|
|
CFLAGS = -DTEST_PRIV_MEM_MAPS
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.inc
|