summaryrefslogtreecommitdiff
path: root/rules.mk
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2021-04-11 09:05:25 +0000
committerAda Christine <adachristine18@gmail.com>2021-04-11 09:05:25 +0000
commit19a91071908c49365290fb1a49a5da8e354989e2 (patch)
tree59667272fc339fec1095d9ce8ad383be13bd0b78 /rules.mk
parent922e6ca1bc48cf62ad599ef1a2d63bf338a0e8c3 (diff)
added rule to compile .S files; page fault ISR and skeleton handler are present
Diffstat (limited to 'rules.mk')
-rw-r--r--rules.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/rules.mk b/rules.mk
index 4ac15a4..2115028 100644
--- a/rules.mk
+++ b/rules.mk
@@ -29,6 +29,10 @@ COMPILE.info = $(info $$(CC) $@)
$(COMPILE.info)
@$(COMPILE.cpp) -MMD -MP
+%.o: %.S
+ $(COMPILE.info)
+ @$(COMPILE.S) -MMD -MP
+
clean:
$(info $$(RM) $(CLEANLIST))
-@$(RM) $(CLEANLIST)