-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmakefile.g95
More file actions
64 lines (55 loc) · 1.75 KB
/
Copy pathmakefile.g95
File metadata and controls
64 lines (55 loc) · 1.75 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Compile Data Collection Rating programs
# Compile age adjustment programs (makefile)
#
all: ageadjs.o ageadj.o aiplage.o bestpred.o bestpred_fmt4.o bestpred_parm.o bestpred_log.o bestpred
ageadjs.o: ageadjs.c
gcc -ggdb -O2 -L. -I. -c ageadjs.c
aiplage.o: aiplage.c aiplage.h
gcc -ggdb -O2 -L. -I. -c aiplage.c
ageadj.o: ageadj.c ageadj.h
gcc -ggdb -O2 -L. -I. -c ageadj.c
#g95 -c bestpred_log.f90 -O2 \
# -fno-underscoring \
# -fsloppy-char \
# -ftrace=full \
# -fstatic
bestpred_parm.o: bestpred_parm.f90
g95 -O2 -L. -I. -c bestpred_parm.f90 \
-fno-underscoring \
-fsloppy-char \
-ftrace=full \
-fstatic
bestpred_log.o: bestpred_log.f90
g95 -O2 -L. -I. -c bestpred_log.f90 \
-fno-underscoring \
-fsloppy-char \
-ftrace=full \
-fstatic
bestpred.o: bestpred.f90 bestpred_log.o
g95 -O2 -L. -I. -c bestpred.f90 \
-fno-underscoring \
-fsloppy-char \
-ftrace=full \
-fstatic \
bestpred_log.o
bestpred_fmt4.o: bestpred_fmt4.f90 ageadjs.o aiplage.o bestpred.o
g95 -O2 -L. -I. -c bestpred_fmt4.f90 \
-fno-underscoring \
-fsloppy-char \
-ftrace=full \
-fstatic \
ageadjs.o \
aiplage.o \
bestpred.o
bestpred: bestpred_main.f90 bestpred_parm.o bestpred_log.o bestpred_fmt4.o bestpred.o ageadjs.o aiplage.o
g95 -O2 -L. -I. bestpred_main.f90 -o bestpred \
-fno-underscoring \
-fsloppy-char \
-ftrace=full \
-fstatic \
bestpred_fmt4.o \
ageadjs.o \
aiplage.o \
bestpred.o \
bestpred_log.o \
bestpred_parm.o