mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
10 lines
339 B
Makefile
10 lines
339 B
Makefile
|
# Generate an XML file containing all macro definitions and include paths for
|
||
|
# use in Eclipse CDT
|
||
|
.PHONY: eclipsesym eclipsesym.xml
|
||
|
eclipsesym: $(CURDIR)/eclipsesym.xml
|
||
|
eclipsesym.xml: eclipsesym
|
||
|
|
||
|
$(CURDIR)/eclipsesym.xml: FORCE
|
||
|
$(Q)printf "%s\n" $(CC) $(CFLAGS_WITH_MACROS) $(INCLUDES) | \
|
||
|
$(RIOTTOOLS)/eclipsesym/cmdline2xml.sh > $@
|