diff options
author | Aaron Ball <nullspoon@iohq.net> | 2015-10-01 23:29:51 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@iohq.net> | 2015-10-01 23:29:51 -0600 |
commit | b8de26c118b09ee8bd763fa12111ea9d20b14684 (patch) | |
tree | 2923b1e5090ad0b273690b84db1f3cab02aa451e | |
parent | 027de39b76558ec5ce6729042c84ab09bf90d7a7 (diff) | |
download | palindrome_finder-b8de26c118b09ee8bd763fa12111ea9d20b14684.tar.gz palindrome_finder-b8de26c118b09ee8bd763fa12111ea9d20b14684.tar.xz |
Updated optimization
Don't want to optimize ourselves out of obvlion. Going from optimize
level 3 to 2, since performance decrease is negligable.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,5 +2,5 @@ out = palindromfinder cc = cc all: - $(cc) -O3 src/main.c -o $(out) + $(cc) -O2 src/main.c -o $(out) |