]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_c/Maasha/src/Makefile
added bed2tag_contigs.c
[biopieces.git] / code_c / Maasha / src / Makefile
index 884817b497ae15e82e1882d3150248322b6da18f..d1e8d844e0f60e26564966e73afc51e83e7ad3b2 100644 (file)
@@ -11,7 +11,7 @@ TEST_DIR = test/
 INC = -I $(INC_DIR)
 LIB = -lm $(LIB_DIR)*.o
 
-all: libs utest bed2fixedstep bed_sort bipartite_scan bipartite_decode fasta_count repeat-O-matic
+all: libs utest bed2fixedstep bed2tag_contigs bed_sort bipartite_scan bipartite_decode fasta_count repeat-O-matic
 
 libs:
        cd $(LIB_DIR) && ${MAKE} all
@@ -22,6 +22,9 @@ utest:
 bed2fixedstep: bed2fixedstep.c
        $(CC) $(Cflags) $(INC) $(LIB) bed2fixedstep.c -o bed2fixedstep
 
+bed2tag_contigs: bed2tag_contigs.c
+       $(CC) $(Cflags) $(INC) $(LIB) bed2tag_contigs.c -o bed2tag_contigs
+
 bed_sort: bed_sort.c
        $(CC) $(Cflags) $(INC) $(LIB) bed_sort.c -o bed_sort
 
@@ -41,6 +44,7 @@ clean:
        cd $(LIB_DIR) && ${MAKE} clean
        cd $(TEST_DIR) && ${MAKE} clean
        rm bed2fixedstep
+       rm bed2tag_contigs
        rm bed_sort
        rm bipartite_scan
        rm bipartite_decode