summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2014-10-29 20:32:33 -0500
committerBobby Bingham <koorogi@koorogi.info>2014-10-29 20:32:33 -0500
commit8a27889d505b07d91ecd03ad1cfeb818b9b440f7 (patch)
tree733e342e932f67aa56b9554b6d901fea129ad578 /Makefile
parent40a6ba5c0a5f544bed9c11dc30b751e05a435b1e (diff)
Add instrumentation
Track the number of comparisons, swaps, and rotations performed in each part of the sorting algorithm.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8cf35ad..e1281d1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-COMMONFLAGS = -Os -pipe -D_XOPEN_SOURCE=500
+COMMONFLAGS = -Os -pipe -D_XOPEN_SOURCE=700
CFLAGS = -std=c99
CXXFLAGS = -std=c++11
LIBS = -lm -lrt