summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-17 17:51:51 +0200
committerMiguel <m.i@gmx.at>2018-08-17 17:51:51 +0200
commit51d4dd040a291b62c648ff6cc0d7e0058cf4056f (patch)
tree142b7db302ba038dba526f99e5854cfc87b5f92e /Makefile.common
parent006214f8c63189500b6ca55e0ef8f97eb35d47f5 (diff)
starting implicit function calls cleanup
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.common b/Makefile.common
index 32bb965..9f9f5cd 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -1,4 +1,5 @@
-### implicit rules ###
+### explicit rules ###
+
%.o: %.asm
nasm -f elf $*.asm -o $@
@@ -11,5 +12,3 @@
%.o: %.c
$(CC) -c $(CFLAGS) $*.c -o $*.o
$(CC) -MM -MT $*.o $(CFLAGS) $*.c > $*.d
-
-