From f363df2ac34c34b1c2f223bb5a81c456a764ac38 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Fri, 21 Mar 2014 13:42:54 -0400 Subject: add end of sequences in as points in our array --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f33dd1a..3e1f471 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CC = gcc CFLAGS = -O3 -s -mtune=native -Wall -DVERSION=$(VERSION) -Wextra DEST = /usr/local/bin/ -all: output_dir bin/strstream bin/filter_melting_range bin/strstreamone +all: output_dir bin/strstream bin/filter_melting_range bin/strstreamone bin/sequence_end_points output_dir: mkdir -p bin @@ -11,6 +11,8 @@ bin/strstream: src/strstream.c $(CC) src/strstream.c -o bin/strstream $(CLIBS) $(CFLAGS) bin/strstreamone: src/strstreamone.c $(CC) src/strstreamone.c -o bin/strstreamone $(CLIBS) $(CFLAGS) +bin/sequence_end_points: src/sequence_end_points.c + $(CC) src/sequence_end_points.c -o bin/sequence_end_points $(CLIBS) $(CFLAGS) bin/filter_melting_range: src/filter_melting_range.c $(CC) src/filter_melting_range.c -o bin/filter_melting_range $(CLIBS) $(CFLAGS) -- cgit v1.2.3