diff options
Diffstat (limited to 'projects/rtos-test/Makefile')
-rw-r--r-- | projects/rtos-test/Makefile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/projects/rtos-test/Makefile b/projects/rtos-test/Makefile deleted file mode 100644 index dd2cab5..0000000 --- a/projects/rtos-test/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -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 |