Remove -t option for linker only.

This commit is contained in:
Sven Michael Klose 2021-12-25 20:10:53 +01:00 committed by mrdudz
parent a5ca1928f5
commit 6aabee0564
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ endif
.o:
ifeq ($(SYS),vic20)
$(LD) $(LDFLAGS_$(@F)_$(SYS)) $(LDFLAGS) -o $@ -t $(SYS) -C vic20-32k.cfg -m $@.map $^ $(SYS).lib
$(LD) $(LDFLAGS_$(@F)_$(SYS)) $(LDFLAGS) -o $@ -C vic20-32k.cfg -m $@.map $^ $(SYS).lib
else
$(LD) $(LDFLAGS_$(@F)_$(SYS)) $(LDFLAGS) -o $@ -t $(SYS) -m $@.map $^ $(SYS).lib
endif