aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e3ccc3d..3408355 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,9 @@
+#CC := arm-none-eabi-gcc -mcpu=cortex-m4 -mthumb
CC := gcc
CFLAGS := -O3 -ggdb -g3 -Wall -Wextra
-all:
- $(CC) $(CFLAGS) -c foci.c
+all: foci
$(CC) $(CFLAGS) main.c foci.o -o main
+
+foci:
+ $(CC) $(CFLAGS) -c foci.c