]> git.donarmstrong.com Git - biopieces.git/blob - code_c/Maasha/src/lib/Makefile
84dc3a3d9b299855a3dd5cb615254c710c84b0cf
[biopieces.git] / code_c / Maasha / src / lib / Makefile
1 CC      = gcc
2 # Cflags  = -Wall 
3 Cflags = -Wall -g -pg  # gprof
4 INC_DIR = -I ../inc/
5
6 all: common.o seq.o filesys.o fasta.o list.o hash.o ucsc.o
7
8 common.o: common.c
9         $(CC) $(Cflags) $(INC_DIR) -c common.c
10
11 seq.o: seq.c
12         $(CC) $(Cflags) $(INC_DIR) -c seq.c
13
14 filesys.o: filesys.c
15         $(CC) $(Cflags) $(INC_DIR) -c filesys.c
16
17 fasta.o: fasta.c
18         $(CC) $(Cflags) $(INC_DIR) -c fasta.c
19
20 list.o: list.c
21         $(CC) $(Cflags) $(INC_DIR) -c list.c
22
23 hash.o: hash.c
24         $(CC) $(Cflags) $(INC_DIR) -c hash.c
25
26 ucsc.o: ucsc.c
27         $(CC) $(Cflags) $(INC_DIR) -c ucsc.c
28
29 clean:
30         rm common.o seq.o filesys.o fasta.o list.o hash.o ucsc.o