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