]> git.sur5r.net Git - cc65/commitdiff
Removed a pointless cc65 command-line option from the samples makefile. 395/head
authorGreg King <gregdk@users.sf.net>
Fri, 10 Mar 2017 13:47:48 +0000 (08:47 -0500)
committerGreg King <gregdk@users.sf.net>
Fri, 10 Mar 2017 13:47:48 +0000 (08:47 -0500)
"-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

index edfeca689c42ff1b92823474d3266110f0e0bd8d..94994002224dd425bb977f1416098bce15233c8a 100644 (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: