aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 41c8458..e977db6 100644
--- a/Makefile
+++ b/Makefile
@@ -63,7 +63,7 @@ kernel/%.o: kernel/%.S
kernel/%.o: kernel/%.c
$(CC) $(CFLAGS) -I$(dir $<) $(addprefix -I, $(INCLUDES)) -o $@ -c $<
-# Local sources may use arduino and therfore need special includes
+# Local sources
%.o: %.s
$(CC) $(CFLAGS) -I$(dir $<) $(addprefix -I, $(INCLUDES)) -o $@ -c $<
@@ -72,7 +72,6 @@ kernel/%.o: kernel/%.c
%.o: %.cpp
$(CPP) $(CPPFLAGS) -I$(dir $<) $(addprefix -I, $(INCLUDES)) -o $@ -c $<
-
# Utility rules
size: target