Removed a pointless cc65 command-line option from the samples makefile.
"-Oi --codesize 500" is the same as "-O --codesize 200 --codesize 500". That first "--codesize" is replaced by the second one. Don't set it twice.
This commit is contained in:
parent
949333e37b
commit
acb7c61302
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ LDFLAGS_tgidemo_atarixl = --start-addr 0x4000
|
|||
%: %.s
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -Oirs --codesize 500 -T -g -t $(SYS) $<
|
||||
$(CC) $(CFLAGS) -Ors --codesize 500 -T -g -t $(SYS) $<
|
||||
$(AS) $(<:.c=.s)
|
||||
|
||||
.s.o:
|
||||
|
|
Loading…
Add table
Reference in a new issue