From acb7c6130274d7c2ad91ac82c6b64b741fa47d97 Mon Sep 17 00:00:00 2001 From: Greg King Date: Fri, 10 Mar 2017 08:47:48 -0500 Subject: [PATCH] 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. --- samples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: