crashtest-r0ket/misc/openbeacon/lpc13xx/rtos-simple-demo/Makefile

22 lines
312 B
Makefile

TARGET=rtos-simple-demo
ARCH=LPC13
CPU=$(ARCH)43
DEBUG=-g
OPTIM=-Os -mword-relocations
APP_CFLAGS=-Iinc -std=gnu99 -fgnu89-inline -D__USE_CMSIS
APP_LDFLAGS=-lm
APP_SRC= \
src/main.c
APP_SRC+=$(IMAGES_C)
all: $(TARGET).bin
app_clean:
find src -name '*.o' -exec rm \{\} \;
include ../core/Makefile.rules