From: Greg King Date: Fri, 10 Mar 2017 13:47:48 +0000 (-0500) Subject: Removed a pointless cc65 command-line option from the samples makefile. X-Git-Tag: V2.16~32^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=refs%2Fpull%2F395%2Fhead;p=cc65 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. --- diff --git a/samples/Makefile b/samples/Makefile index edfeca689..949940022 100644 --- a/samples/Makefile +++ b/samples/Makefile @@ -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: