output target before name(s)

This commit is contained in:
mrdudz
2025-06-26 23:53:36 +02:00
parent 0c22e310ef
commit 1f1e1f1490
6 changed files with 29 additions and 26 deletions

View File

@@ -72,33 +72,33 @@ else
endif
charmapping.xex: charmapping.c
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
$(CL) -t atari -o charmapping.xex charmapping.c
defdev.xex: defdev.c
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
$(CL) -t atari -o defdev.xex defdev.c
displaylist.xex: displaylist.c
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
$(CL) -t atari -o displaylist.xex displaylist.c
mem.xex: mem.c ../getsp.s
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
$(CL) -t atari -o mem.xex mem.c ../getsp.s
multi.xex: multi-xex.s multi-xex.cfg
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
$(CL) -t atari -C multi-xex.cfg multi-xex.s -o multi.xex
ostype.xex: ostype.c
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
$(CL) -t atari -o ostype.xex ostype.c
scrcode.com: scrcode.s
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
# ca65 -t atari -o scrcode.o scrcode.s
# ld65 -C atari-asm.cfg -o scrcode.com scrcode.o
$(CL) -t atari -C atari-asm.cfg -o scrcode.com scrcode.s
sys.xex: sys.c
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
$(CL) -t atari -o sys.xex sys.c
sound.xex: sound.c
$(if $(QUIET),echo $@)
$(if $(QUIET),echo $(SYS):$@)
$(CL) -t atari -o sound.xex sound.c
clean:
@$(DEL) charmapping.xex 2>$(NULLDEV)