]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_c/Maasha/src/Makefile
added bed2fixedstep.c
[biopieces.git] / code_c / Maasha / src / Makefile
index c96912a7f2f25699dc44ca806f58a657e023661f..884817b497ae15e82e1882d3150248322b6da18f 100644 (file)
@@ -1,3 +1,5 @@
+# Martin Asser Hansen (mail@maasha.dk) Copyright (C) 2008 - All right reserved
+
 CC      = gcc
 # Cflags = -Wall -Werror
 Cflags = -Wall -Werror -g -pg # for gprof
@@ -9,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 bed2fixedstep bed_sort bipartite_scan bipartite_decode fasta_count repeat-O-matic
 
 libs:
        cd $(LIB_DIR) && ${MAKE} all
@@ -17,9 +19,18 @@ libs:
 utest:
        cd $(TEST_DIR) && ${MAKE} all
 
+bed2fixedstep: bed2fixedstep.c
+       $(CC) $(Cflags) $(INC) $(LIB) bed2fixedstep.c -o bed2fixedstep
+
+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
 
+bipartite_decode: bipartite_decode.c
+       $(CC) $(Cflags) $(INC) $(LIB) bipartite_decode.c -o bipartite_decode
+
 fasta_count: fasta_count.c
        $(CC) $(Cflags) $(INC) $(LIB) fasta_count.c -o fasta_count
 
@@ -29,6 +40,9 @@ repeat-O-matic: repeat-O-matic.c
 clean:
        cd $(LIB_DIR) && ${MAKE} clean
        cd $(TEST_DIR) && ${MAKE} clean
+       rm bed2fixedstep
+       rm bed_sort
        rm bipartite_scan
+       rm bipartite_decode
        rm fasta_count
        rm repeat-O-matic