mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 00:49:45 +01:00
e666c3864c
To keep Makefile.include clean and to be consistent with other tools, the Eclipse IDE support is put in a separate file.
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 > $@
|