Skip to content
Snippets Groups Projects
Commit de4677eb authored by Ludwig Knüpfer's avatar Ludwig Knüpfer
Browse files

make: s/PROJDEPS/APPDEPS/

parent 9384b243
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ $(RIOTBASE)/pkg/%/Makefile.include::
# pull in dependency info for *existing* .o files
-include $(OBJ:.o=.d)
$(BINDIR)$(APPLICATION)/%.o: %.c $(PROJDEPS) $(USEPKG:%=${BINDIR}%.a)
$(BINDIR)$(APPLICATION)/%.o: %.c $(APPDEPS) $(USEPKG:%=${BINDIR}%.a)
@echo; echo "Compiling.... $*.c"; echo
$(AD)mkdir -p "$(dir $@)"
$(AD)$(CC) $(CFLAGS) $(INCLUDES) -c "$<" -o "$@"
......
......@@ -49,7 +49,7 @@ export QUIET ?= 1
#export INCLUDES += -Iapplication_include
# Specify custom dependencies for your application here ...
# export PROJDEPS = proj_data.h
# export APPDEPS = app_data.h
include $(RIOTBASE)/Makefile.include
......
......@@ -7,7 +7,7 @@ BOARD_INSUFFICIENT_RAM := chronos mbed_lpc1768 msb-430 msb-430h redbee-econotag
USEMODULE += hashes
USEMODULE += bloom
PROJDEPS = $(BINDIR)projdeps/sets.h
APPDEPS = $(BINDIR)projdeps/sets.h
INCLUDES += -I$(BINDIR)projdeps
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment