mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
10 lines
380 B
Makefile
10 lines
380 B
Makefile
DEPS += ../libwrk/$(TARGET)/loader.d
|
|
|
|
../libwrk/$(TARGET)/loader.o: $(SRCDIR)/targetutil/loader.s | ../libwrk/$(TARGET)
|
|
$(ASSEMBLE_recipe)
|
|
|
|
../target/$(TARGET)/util/loader.system: ../libwrk/$(TARGET)/loader.o $(SRCDIR)/targetutil/loader.cfg | ../target/$(TARGET)/util
|
|
$(LD65) -o $@ -C $(filter %.cfg,$^) $(filter-out %.cfg,$^)
|
|
|
|
$(TARGET): ../target/$(TARGET)/util/loader.system
|