mirror of
https://github.com/cc65/cc65.git
synced 2025-01-08 04:30:15 +00:00
10 lines
333 B
Makefile
10 lines
333 B
Makefile
DEPS += ../wrk/$(TARGET)/loader.d
|
|
|
|
../wrk/$(TARGET)/loader.o: $(SRCDIR)/targetutil/loader.s | ../wrk/$(TARGET)
|
|
$(ASSEMBLE_recipe)
|
|
|
|
../targetutil/loader.system: ../wrk/$(TARGET)/loader.o $(SRCDIR)/targetutil/loader.cfg | ../targetutil
|
|
$(LD) -o $@ -C $(filter %.cfg,$^) $(filter-out %.cfg,$^)
|
|
|
|
$(TARGET): ../targetutil/loader.system
|