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:
Greg King 2017-03-10 08:47:48 -05:00
parent 949333e37b
commit acb7c61302
1 changed files with 1 additions and 1 deletions

View File

@ -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: