diff options
author | Kyle K <kylek389@gmail.com> | 2011-07-01 20:11:11 -0500 |
---|---|---|
committer | Kamil Kaminski <kamilkss@gmail.com> | 2011-07-01 20:11:11 -0500 |
commit | fd6f82b5c6b3869d893e48b4b25ba6bf195eeb3a (patch) | |
tree | 6d373c18cc30a5b47a1f0b8976a9996564f7ea99 /Makefile | |
parent | 18d02b08d397b1b8f02c94fa11155fb696ec44dc (diff) | |
download | sandbox-fd6f82b5c6b3869d893e48b4b25ba6bf195eeb3a.tar.gz sandbox-fd6f82b5c6b3869d893e48b4b25ba6bf195eeb3a.tar.bz2 sandbox-fd6f82b5c6b3869d893e48b4b25ba6bf195eeb3a.zip |
remove Windows escape codes
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,11 +1,12 @@ BINS = ascii class depipe_strings dup fpipe pipe realloc strpbrk strsep \ - tokenizer getopt prime_mask + tokenizer getopt prime_mask linked_list pi_bbp CC = gcc +CFLAGS = -Wall -std=gnu99 -pedantic DBGFLAGS = -g -O0 ifdef DEBUG - CFLAGS = $(DBGFLAGS) -D DEBUG -std=gnu99 -Wall -pedantic + CFLAGS += $(DBGFLAGS) -D DEBUG else - CFLAGS = -O2 -std=gnu99 -Wall -pedantic + CFLAGS += -O2 -mtune=native -march=native endif LDFLAGS = -lm |