1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

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

View File

@ -90,7 +90,7 @@ LDFLAGS_tgidemo_atarixl = --start-addr 0x4000
%: %.s %: %.s
.c.o: .c.o:
$(CC) $(CFLAGS) -Oirs --codesize 500 -T -g -t $(SYS) $< $(CC) $(CFLAGS) -Ors --codesize 500 -T -g -t $(SYS) $<
$(AS) $(<:.c=.s) $(AS) $(<:.c=.s)
.s.o: .s.o: