summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-02-08 17:15:52 -0500
committerGitHub <noreply@github.com>2021-02-08 17:15:52 -0500
commit487e04d269d0a1bcae9a8f739a60c624c557b8d2 (patch)
tree52b19d1cbc31cb29f52657cb46cda28555b43a31 /Makefile
parent6899acfb6fca351f0bf99ffaa7f5cc94c2e05514 (diff)
parent45ee3a687d0bbabc03dba53b9a8250952e8abe59 (diff)
Merge pull request #1319 from GriffinRichards/crt0comm
Add comments for some data in crt0.s
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 78a2c2a4f..d97634399 100644
--- a/Makefile
+++ b/Makefile
@@ -303,6 +303,7 @@ $1: $2 $$(shell $(SCANINC) -I include -I "" $2)
$$(PREPROC) $$< charmap.txt | $$(CPP) -I include | $$(AS) $$(ASFLAGS) -o $$@
endef
$(foreach src, $(REGULAR_DATA_ASM_SRCS), $(eval $(call DATA_ASM_DEP,$(patsubst $(DATA_ASM_SUBDIR)/%.s,$(DATA_ASM_BUILDDIR)/%.o, $(src)),$(src))))
+$(foreach src, $(C_ASM_SRCS), $(eval $(call DATA_ASM_DEP,$(patsubst $(C_SUBDIR)/%.s,$(C_BUILDDIR)/%.o, $(src)),$(src))))
endif
$(SONG_BUILDDIR)/%.o: $(SONG_SUBDIR)/%.s