aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-01-08 11:20:39 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2014-01-08 11:20:39 -0500
commit6a7295a258932a78c616ea4f8f591eb5f0191da4 (patch)
tree6a32de9133d65c194f84e111ccf889021b2ca440 /Makefile
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1f8d839
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+VERSION=\"v0.0.1\"
+CC = gcc
+CFLAGS = -O3 -s -mtune=native -Wall -DVERSION=$(VERSION) -Wextra
+
+all: strstream
+
+strstream: strstream.c
+ $(CC) strstream.c -o strstream $(CLIBS) $(CFLAGS)
+
+clean:
+ rm -vf kmer_total_count kmer_counts_per_sequence libkmer.so libkmer.a libkmer.o