1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 20:29:34 +00:00

Made geos-apple's file-converter depend on apple2enh's library.

The geos-apple target will build that library if it doesn't exist.
This commit is contained in:
Greg King 2013-05-09 14:46:04 -04:00
parent 9ecf20a56a
commit 415279457b

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