1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-24 11:31:31 +00:00

Merge pull request #10 from greg-king5/target-util

Made geos-apple's file-converter depend on apple2enh's library.
This commit is contained in:
Oliver Schmidt 2013-05-10 03:15:09 -07:00
commit 0a9447a687

View File

@ -5,7 +5,10 @@ DEPS += ../wrk/$(TARGET)/convert.d
../wrk/$(TARGET)/convert.o: $(SRCDIR)/targetutil/convert.c | ../wrk/$(TARGET)
$(COMPILE_recipe)
../targetutil/convert.system: ../wrk/$(TARGET)/convert.o | ../targetutil
$(LD) -o $@ -C apple2enh-system.cfg $^ apple2enh.lib
../lib/apple2enh.lib:
@$(MAKE) --no-print-directory apple2enh
../targetutil/convert.system: ../wrk/$(TARGET)/convert.o ../lib/apple2enh.lib | ../targetutil
$(LD) -o $@ -C apple2enh-system.cfg $^
$(TARGET): ../targetutil/convert.system