diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
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 |