mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
300d6b3e35
Closes #993. We do not need to descend into the modules to know what to do on `make clean BOARD=blub`. We can just invoke `rm -rf bin/blub`. This PR only keeps the descending into the USEPKGs, since they might want to delete cached/downloaded/extracted data.
25 lines
738 B
Makefile
25 lines
738 B
Makefile
MODULE =cpu
|
|
|
|
OBJECTS = system_LPC17xx.o startup_LPC17xx.o main.o
|
|
|
|
CC_SYMBOLS = -DTARGET_LPC1769 -DTOOLCHAIN_GCC_ARM -DNDEBUG -D__CORTEX_M3
|
|
|
|
LD_FLAGS = -mcpu=cortex-m3 -mthumb -Wl,--gc-sections,-Map=$(PROJECT).map,--cref --specs=nano.specs
|
|
LD_SYS_LIBS = -lc -lgcc -lnosys
|
|
|
|
all: $(BINDIR)$(MODULE).a
|
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
# This is needed for NXP Cortex M devices
|
|
nxpsum:
|
|
$(CCLOCAL) nxpsum.c -std=c99 -o nxpsum
|
|
|
|
#$(PROJECT).elf: $(OBJECTS) $(SYS_OBJECTS)
|
|
# $(LD) $(LD_FLAGS) -T$(LINKER_SCRIPT) $(LIBRARY_PATHS) -o $@ $(addprefix $(BUILD_DIR), $^) $(LIBRARIES) $(LD_SYS_LIBS) $(LIBRARIES) $(LD_SYS_LIBS)
|
|
|
|
$(PROJECT).bin: $(PROJECT).elf nxpsum
|
|
$(OBJCOPY) -O binary $< $@
|
|
# Compute nxp checksum on .bin file here
|
|
./nxpsum $@
|