]> git.sur5r.net Git - cc65/commitdiff
Made dependency handling for C sources actually work.
authorOliver Schmidt <ol.sc@web.de>
Sun, 12 May 2013 16:19:46 +0000 (18:19 +0200)
committerOliver Schmidt <ol.sc@web.de>
Sun, 12 May 2013 16:21:49 +0000 (18:21 +0200)
libsrc/Makefile

index b4393a6ac3ead3cad165c2c3f52257c20b17c0a9..aa61dda6be6bca73d43b27ba0ef1ff633ac31fb2 100644 (file)
@@ -211,7 +211,7 @@ endef
 define COMPILE_recipe
 
 @echo $(TARGET) - $<
-@$(CC) -t $(TARGET) $(CFLAGS) --create-dep $(@:.o=.d) -o $(@:.o=.s) $<
+@$(CC) -t $(TARGET) $(CFLAGS) --create-dep $(@:.o=.d) --dep-target $@ -o $(@:.o=.s) $<
 @$(CA) -t $(TARGET) -o $@ $(@:.o=.s)
 
 endef