-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
50 lines (34 loc) · 1.63 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
programma : main.o fingerprint.o dict_entry_occ_kmers.o dict_occ_kmers.o read_start_tuple.o hash_dict.o min_sharing_dict_entry.o min_sharing_dict.o matches_dict_entry.o matches_dict.o menu.o hash_min_sharing_dict.o hash_matches_dict.o hash_overlap_dict.o overlap_dict.o overlap_dict_entry.o
gcc -O3 -o main main.o fingerprint.o dict_entry_occ_kmers.o dict_occ_kmers.o read_start_tuple.o hash_dict.o min_sharing_dict_entry.o min_sharing_dict.o matches_dict_entry.o matches_dict.o menu.o hash_min_sharing_dict.o hash_matches_dict.o hash_overlap_dict.o overlap_dict.o overlap_dict_entry.o
main.o : main.c
gcc -O3 -c main.c
fingerprint.o : fingerprint.c
gcc -O3 -c fingerprint.c
dict_entry_occ_kmers.o : dict_entry_occ_kmers.c
gcc -O3 -c dict_entry_occ_kmers.c
dict_occ_kmers.o : dict_occ_kmers.c
gcc -O3 -c dict_occ_kmers.c
read_start_tuple.o : read_start_tuple.c
gcc -O3 -c read_start_tuple.c
hash_dict.o : hash_dict.c
gcc -O3 -c hash_dict.c
min_sharing_dict_entry.o : min_sharing_dict_entry.c
gcc -O3 -c min_sharing_dict_entry.c
min_sharing_dict.o : min_sharing_dict.c
gcc -O3 -c min_sharing_dict.c
matches_dict_entry.o : matches_dict_entry.c
gcc -O3 -c matches_dict_entry.c
matches_dict.o : matches_dict.c
gcc -O3 -c matches_dict.c
menu.o : menu.c
gcc -O3 -c menu.c
hash_min_sharing_dict.o : hash_min_sharing_dict.c
gcc -O3 -c hash_min_sharing_dict.c
hash_matches_dict.o : hash_matches_dict.c
gcc -O3 -c hash_matches_dict.c
hash_overlap_dict.o : hash_overlap_dict.c
gcc -O3 -c hash_overlap_dict.c
overlap_dict.o : overlap_dict.c
gcc -O3 -c overlap_dict.c
overlap_dict_entry.o : overlap_dict_entry.c
gcc -O3 -c overlap_dict_entry.c