From 4a38cf6f44d1c013cbe794093ea6c5b50337431a Mon Sep 17 00:00:00 2001 From: Paul Selkirk Date: Thu, 14 Apr 2016 18:50:38 -0400 Subject: import mbed rtos library --- projects/rtos-test/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 projects/rtos-test/Makefile (limited to 'projects/rtos-test/Makefile') diff --git a/projects/rtos-test/Makefile b/projects/rtos-test/Makefile new file mode 100644 index 0000000..dd2cab5 --- /dev/null +++ b/projects/rtos-test/Makefile @@ -0,0 +1,18 @@ +TEST = thread-test semaphore-test mutex-test + +all: $(TEST:=.elf) + +%.elf: %.o $(BOARD_OBJS) $(LIBS) + $(CC) $(CFLAGS) $^ -o $@ -T$(LDSCRIPT) -g -Wl,-Map=$*.map + $(OBJCOPY) -O ihex $*.elf $*.hex + $(OBJCOPY) -O binary $*.elf $*.bin + $(OBJDUMP) -St $*.elf >$*.lst + $(SIZE) $*.elf + +clean: + rm -f *.o + rm -f *.elf + rm -f *.hex + rm -f *.bin + rm -f *.map + rm -f *.lst -- cgit v1.2.3