1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-18 07:29:36 +00:00

Made dependency handling for C sources actually work.

This commit is contained in:
Oliver Schmidt 2013-05-12 18:19:46 +02:00
parent 0a9447a687
commit 16b77658a7

View 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