mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 05:12:57 +01:00
make: s/PROJDEPS/APPDEPS/
fixes https://github.com/RIOT-OS/RIOT/issues/1284
This commit is contained in:
parent
9384b2435a
commit
de4677eb60
@ -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
2
dist/Makefile
vendored
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user