From c670d7b194eea62d6fd6f9de0ae4025abe076ad4 Mon Sep 17 00:00:00 2001 From: Fredrik Thulin Date: Fri, 13 May 2016 12:52:38 +0200 Subject: Add test program for libcli based CLI. --- projects/cli-test/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 projects/cli-test/Makefile (limited to 'projects/cli-test/Makefile') diff --git a/projects/cli-test/Makefile b/projects/cli-test/Makefile new file mode 100644 index 0000000..1f1f890 --- /dev/null +++ b/projects/cli-test/Makefile @@ -0,0 +1,21 @@ +TEST = cli-test + +CFLAGS += -I$(LIBCLI_DIR) +LIBS += $(LIBCLI_DIR)/libcli.a + +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