This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
811c838ff1
zephyr
/
samples
/
microkernel
/
test
/
test_mutex
/
src
/
Makefile
4 lines
77 B
Makefile
Raw
Normal View
History
Unescape
Escape
Use ccflags-y and asflags-y instead of EXTRA_CFLAGS According to section 3.7 of Documentation/kbuild/makefiles.txt, using EXTRA_CFLAGS in Makefiles is "still supported but their usage is deprecated." However, using make EXTRA_CFLAGS="-DSOMETHING" results in EXTRA_CFLAGS from Makefiles being overwritten, obviously breaking the build. This patch converts to them to the newer ccflags-y which also fixes the problem. Change-Id: I6309439599d4c9cc184f9ecd941bde841982ef07 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2015-06-04 10:17:57 +08:00
ccflags-y
+=
${
PROJECTINCLUDE
}
-I
${
srctree
}
/samples/include
Kbuild: Test Makefiles This commit adds Makefiles for each sample test in the project. The Makefiles integrate the test samples into the Kbuild system. Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com> Change-Id: I8d84756836c1f7d00dc823d7ff76334c75304d66
2015-04-30 06:16:20 +08:00
obj-y
=
mutex.o