Yurttas/PL/OOL/Cplusplus/F/07/03/02/01/00/make.dna counts 00

From ZCubes Wiki
Revision as of 00:10, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">dna_counts_00 : dna_counts_00.o \ get_data.o \ get_string.o \ to_uppe...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
 1dna_counts_00 : dna_counts_00.o \
 2                get_data.o \
 3                get_string.o \
 4                to_upper_sequence.o \
 5                to_upper.o \
 6                count.o \
 7                construct_map.o \
 8                print_dna_counts_list.o \
 9                get_char.o
10
11	g++ dna_counts_00.o \
12            get_data.o \
13            get_string.o \
14            to_upper_sequence.o \
15            to_upper.o \
16            count.o \
17            construct_map.o \
18            print_dna_counts_list.o \
19            get_char.o \
20         -o dna_counts_00
21
22dna_counts_00.o : dna_counts_00.cpp \
23                  parameters.h \
24                  common.h \
25                  f_specs.h
26
27	g++ -c dna_counts_00.cpp
28
29get_data.o : get_data.cpp \
30             common.h \
31             io.h
32
33	g++ -c get_data.cpp
34
35get_string.o : get_string.cpp \
36               common.h \
37               io.h
38
39	g++ -c get_string.cpp
40
41to_upper.o : to_upper.cpp \
42             common.h
43
44	g++ -c to_upper.cpp
45
46to_upper_sequence.o : to_upper_sequence.cpp \
47                      common.h
48
49	g++ -c to_upper_sequence.cpp
50
51count.o : count.cpp \
52          common.h
53
54	g++ -c count.cpp
55
56construct_map.o : construct_map.cpp \
57                  common.h
58
59	g++ -c construct_map.cpp
60
61print_dna_counts_list.o : print_dna_counts_list.cpp \
62                          common.h \
63                          io.h
64
65	g++ -c print_dna_counts_list.cpp
66
67get_char.o : get_char.cpp \
68             common.h \
69             io.h
70
71	g++ -c get_char.cpp