1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-07-05 02:09:49 +03:00
ben-blinkenlights/lpc111x-isp/test/Makefile
2012-12-31 03:19:59 -03:00

27 lines
481 B
Makefile

PREFIX = arm-linux-gnueabi-
CC = $(PREFIX)gcc
OBJCOPY = $(PREFIX)objcopy
OBJDUMP = $(PREFIX)objdump
CFLAGS = -Wall -mcpu=cortex-m0 -march=armv6-m -mthumb \
-nostdlib
LDFLAGS = -Tlpc1112fxx2xx.lds
OBJS = test.o
.PHONY: dump clean
test.bin: test.elf
$(OBJCOPY) -j .text -j .data -O binary $< $@ || \
{ rm -f $@; exit 1; }
test.elf: $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)
dump: test.elf
$(OBJDUMP) -d test.elf
clean:
rm -f $(OBJS) test.elf test.bin