1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

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= LDFLAGS=
ifeq ($(SYS),c64) ifeq ($(SYS),c64)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),c128) ifeq ($(SYS),c128)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),c16) ifeq ($(SYS),c16)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),cbm510) ifeq ($(SYS),cbm510)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),cbm510) ifeq ($(SYS),cbm510)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),cx16) ifeq ($(SYS),cx16)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),geos-cbm) ifeq ($(SYS),geos-cbm)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),lunix) ifeq ($(SYS),lunix)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),pet) ifeq ($(SYS),pet)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),pet-overlay) ifeq ($(SYS),pet-overlay)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),plus4) ifeq ($(SYS),plus4)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
ifeq ($(SYS),vic20) ifeq ($(SYS),vic20)
LDFLAGS+=-Ln $@.lst LDFLAGS+=-Ln $@.lbl
endif endif
.o: .o:
@ -428,7 +428,7 @@ testcode.atr: testcode
# Clean-up rules # Clean-up rules
mostlyclean: 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 # 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) @$(DEL) ${patsubst %.c,%.s,$(wildcard *.c)} 2>$(NULLDEV)

View File

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