summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2011-07-01 20:11:11 -0500
committerKamil Kaminski <kamilkss@gmail.com>2011-07-01 20:11:11 -0500
commitfd6f82b5c6b3869d893e48b4b25ba6bf195eeb3a (patch)
tree6d373c18cc30a5b47a1f0b8976a9996564f7ea99 /Makefile
parent18d02b08d397b1b8f02c94fa11155fb696ec44dc (diff)
downloadsandbox-fd6f82b5c6b3869d893e48b4b25ba6bf195eeb3a.tar.gz
sandbox-fd6f82b5c6b3869d893e48b4b25ba6bf195eeb3a.tar.bz2
sandbox-fd6f82b5c6b3869d893e48b4b25ba6bf195eeb3a.zip
remove Windows escape codes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5c2f6c5..c12e440 100644
--- a/Makefile
+++ b/Makefile
@@ -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