1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 10:12:45 +01:00

make: s/PROJDEPS/APPDEPS/

fixes https://github.com/RIOT-OS/RIOT/issues/1284
This commit is contained in:
Ludwig Ortmann 2014-06-21 18:08:11 +02:00
parent 9384b2435a
commit de4677eb60
3 changed files with 3 additions and 3 deletions

View File

@ -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 "$@"

2
dist/Makefile vendored
View File

@ -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

View File

@ -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