From 67f3a6c9896a5651e00eb22ee6e036c536aa0587 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 22 Oct 2021 07:50:50 -0400 Subject: first draft; needs tests --- Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d9c168c --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +CROSS := +CC := $(CROSS)gcc +CFLAGS := -Os -ggdb -g3 \ + -Wall -Wextra -pedantic -Werror + +CSRC := $(wildcard src/*.c) +COBJ := $(patsubst %.c,%.o,$(CSRC)) + +all: lib430core.a + +clean: + @echo " CLEAN" + @rm -f lib430core.a $(COBJ) + +lib430core.a: $(COBJ) + @echo " AR " $@ + @$(CROSS)ar rc $@ $(COBJ) + @$(CROSS)size -t $@ + +.c.o: + @echo " CC " $< + @$(CC) $(CFLAGS) -c $< -o $@ + -- cgit v1.2.3