]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_c/Maasha/src/Makefile
bed_sort created
[biopieces.git] / code_c / Maasha / src / Makefile
index 527b6eab9ba72dc896843d2c1116aa25f4987fc9..4312b1fd7bfc2b5709207781704768e928ac42c8 100644 (file)
@@ -11,7 +11,7 @@ TEST_DIR = test/
 INC = -I $(INC_DIR)
 LIB = -lm $(LIB_DIR)*.o
 
-all: libs utest bipartite_scan fasta_count repeat-O-matic
+all: libs utest bed_sort bipartite_scan fasta_count repeat-O-matic
 
 libs:
        cd $(LIB_DIR) && ${MAKE} all
@@ -19,6 +19,9 @@ libs:
 utest:
        cd $(TEST_DIR) && ${MAKE} all
 
+bed_sort: bed_sort.c
+       $(CC) $(Cflags) $(INC) $(LIB) bed_sort.c -o bed_sort
+
 bipartite_scan: bipartite_scan.c
        $(CC) $(Cflags) $(INC) $(LIB) bipartite_scan.c -o bipartite_scan
 
@@ -31,6 +34,7 @@ repeat-O-matic: repeat-O-matic.c
 clean:
        cd $(LIB_DIR) && ${MAKE} clean
        cd $(TEST_DIR) && ${MAKE} clean
+       rm bed_sort
        rm bipartite_scan
        rm fasta_count
        rm repeat-O-matic