summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d49717f..fdbd50d 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ obj/%.o:
gcc -c -o $@ $< $(CFLAGS)
deps/%.d: src/%.c
- gcc -o $@ $< $(CFLAGS) -MM -MG -MT $(patsubst src/%.c,obj/%.o,$<)
+ gcc -MM -o $@ $< $(CFLAGS) -MG -MT $(patsubst src/%.c,obj/%.o,$<)
Makefile src/%.c inc/%.h: ;