From 6a7295a258932a78c616ea4f8f591eb5f0191da4 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Wed, 8 Jan 2014 11:20:39 -0500 Subject: initial commit --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3