]> git.donarmstrong.com Git - biopieces.git/blob - code_c/Maasha/src/lib/Makefile
5f608457ddc10fd16f955dc43da4a2b0c6accccb
[biopieces.git] / code_c / Maasha / src / lib / Makefile
1 CC      = gcc
2 # Cflags  = -Wall -Werror
3 Cflags = -Wall -Werror -g -pg  # gprof
4 INC_DIR = -I ../inc/
5
6 all: bits.o common.o mem.o strings.o seq.o filesys.o fasta.o list.o hash.o ucsc.o
7
8 bits.o: bits.c
9         $(CC) $(Cflags) $(INC_DIR) -c bits.c
10
11 common.o: common.c
12         $(CC) $(Cflags) $(INC_DIR) -c common.c
13
14 mem.o: mem.c
15         $(CC) $(Cflags) $(INC_DIR) -c mem.c
16
17 strings.o: strings.c
18         $(CC) $(Cflags) $(INC_DIR) -c strings.c
19
20 seq.o: seq.c
21         $(CC) $(Cflags) $(INC_DIR) -c seq.c
22
23 filesys.o: filesys.c
24         $(CC) $(Cflags) $(INC_DIR) -c filesys.c
25
26 fasta.o: fasta.c
27         $(CC) $(Cflags) $(INC_DIR) -c fasta.c
28
29 list.o: list.c
30         $(CC) $(Cflags) $(INC_DIR) -c list.c
31
32 hash.o: hash.c
33         $(CC) $(Cflags) $(INC_DIR) -c hash.c
34
35 ucsc.o: ucsc.c
36         $(CC) $(Cflags) $(INC_DIR) -c ucsc.c
37
38 clean:
39         rm bits.o
40         rm common.o
41         rm mem.o
42         rm strings.o
43         rm seq.o
44         rm filesys.o
45         rm fasta.o
46         rm list.o
47         rm hash.o
48         rm ucsc.o
49