Use suffix '.lbl' instead of '.lst'.

This commit is contained in:
Sven Michael Klose 2021-12-25 20:07:34 +01:00 committed by mrdudz
parent 0ac1b8d6b1
commit 582c2f65e3
2 changed files with 14 additions and 14 deletions

View File

@ -124,40 +124,40 @@ DISK_atarixl = testcode.atr
LDFLAGS=
ifeq ($(SYS),c64)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),c128)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),c16)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),cbm510)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),cbm510)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),cx16)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),geos-cbm)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),lunix)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),pet)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),pet-overlay)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),plus4)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
ifeq ($(SYS),vic20)
LDFLAGS+=-Ln $@.lst
LDFLAGS+=-Ln $@.lbl
endif
.o:
@ -428,7 +428,7 @@ testcode.atr: testcode
# Clean-up rules
mostlyclean:
@$(DEL) *.lbl *.map *.lst *.o 2>$(NULLDEV)
@$(DEL) *.lbl *.map *.lbl *.o 2>$(NULLDEV)
# we cant use .s since we have asm files in the directory that we want to keep
@$(DEL) ${patsubst %.c,%.s,$(wildcard *.c)} 2>$(NULLDEV)

View File

@ -47,4 +47,4 @@ else
endif
clean:
@$(DEL) *.lst petscii.prg cbmdir-test.prg 2>$(NULLDEV)
@$(DEL) *.lbl petscii.prg cbmdir-test.prg 2>$(NULLDEV)