aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 23 insertions, 0 deletions
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 $@
+