diff options
author | 2008-03-04 17:31:25 -0500 | |
---|---|---|
committer | 2008-03-04 17:31:25 -0500 | |
commit | 4187ba40e77ee91ae99b6fb6356cced2eb717d7e (patch) | |
tree | 810575260b836aaff88328afe8fc6a3ccccc2f8a | |
parent | 72e36a2282824ba14eb21cf632d4e958516b7463 (diff) | |
download | textadept-4187ba40e77ee91ae99b6fb6356cced2eb717d7e.tar.gz textadept-4187ba40e77ee91ae99b6fb6356cced2eb717d7e.zip |
Modified Makefile option flag to optimize for size; src/Makefile
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 7328b2c6..07db7ba0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -6,7 +6,7 @@ INCLUDEDIRS=-Iscintilla-st/include ifdef DEBUG CXXFLAGS=-DDEBUG -g -DGTK -DSCI_LEXER -W -Wall else -CXXFLAGS=-DNDEBUG -0s -DGTK -DSCI_LEXER -W -Wall +CXXFLAGS=-DNDEBUG -Os -DGTK -DSCI_LEXER -W -Wall endif LEXEROBJS=$(wildcard scintilla-st/gtk/Lex*.o) |