File: makefile

package info (click to toggle)
adolc 1.8.7-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,592 kB
  • ctags: 1,654
  • sloc: ansic: 13,592; cpp: 10,280; makefile: 359; sh: 6
file content (186 lines) | stat: -rw-r--r-- 7,645 bytes parent folder | download | duplicates (2)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#**************************************************************************
#
#  --------------------------------------------------------------
#  makefile (INS) of ADOL-C version 1.8.7       as of Mar/10/2000
#  --------------------------------------------------------------
#  makefile for generating all other makefiles and total clean up
#
#**************************************************************************

COMPONENTS = makefile.DEX.head makefile.DEX.tail \
             makefile.EXA.head makefile.EXA.tail \
             makefile.EXA.ODE.head makefile.EXA.ODE.tail \
             makefile.EXA.TIMING.head makefile.EXA.TIMING.tail \
             makefile.EXA.TAYLOR.head makefile.EXA.TAYLOR.tail \
             makefile.EXA.TS.head makefile.EXA.TS.tail \
             makefile.EXA.SPARSE.head makefile.EXA.SPARSE.tail \
             makefile.EXA.LH.head makefile.EXA.LH.tail \
             makefile.EXA.LU.head makefile.EXA.LU.tail \
             makefile.EXA.CLOCK.head makefile.EXA.CLOCK.tail \
             makefile.SRC.head makefile.SRC.tail


gnuinstall: $(COMPONENTS) gnu_comp
	cat makefile.DEX.head gnu_comp makefile.DEX.tail > ../DEX/makefile
	cat makefile.EXA.head gnu_comp makefile.EXA.tail > ../EXA/makefile
	cat makefile.EXA.ODE.head gnu_comp makefile.EXA.ODE.tail \
	    > ../EXA/ODE/makefile
	cat makefile.EXA.TIMING.head gnu_comp makefile.EXA.TIMING.tail \
	    > ../EXA/TIMING/makefile
	cat makefile.EXA.TAYLOR.head gnu_comp makefile.EXA.TAYLOR.tail \
	    > ../EXA/TAYLOR/makefile
	cat makefile.EXA.TS.head gnu_comp makefile.EXA.TS.tail \
	    > ../EXA/TAPESAVE/makefile
	cat makefile.EXA.SPARSE.head gnu_comp makefile.EXA.SPARSE.tail \
	    > ../EXA/SPARSE/makefile
	cat makefile.EXA.LH.head gnu_comp makefile.EXA.LH.tail \
	    > ../EXA/LIGHTHOUSE/makefile
	cat makefile.EXA.LU.head gnu_comp makefile.EXA.LU.tail \
	    > ../EXA/LUFACT/makefile
	cat makefile.EXA.CLOCK.head gnu_comp makefile.EXA.CLOCK.tail \
	    > ../EXA/CLOCK/makefile
	cat makefile.SRC.head gnu_comp makefile.SRC.tail > ../SRC/makefile
	@echo installation of makefiles finished


aixinstall: $(COMPONENTS) aix_comp
	cat makefile.DEX.head aix_comp makefile.DEX.tail > ../DEX/makefile
	cat makefile.EXA.head aix_comp makefile.EXA.tail > ../EXA/makefile
	cat makefile.EXA.ODE.head aix_comp makefile.EXA.ODE.tail \
	    > ../EXA/ODE/makefile
	cat makefile.EXA.TIMING.head aix_comp makefile.EXA.TIMING.tail \
	    > ../EXA/TIMING/makefile
	cat makefile.EXA.TAYLOR.head aix_comp makefile.EXA.TAYLOR.tail \
	    > ../EXA/TAYLOR/makefile
	cat makefile.EXA.TS.head aix_comp makefile.EXA.TS.tail \
	    > ../EXA/TAPESAVE/makefile
	cat makefile.EXA.SPARSE.head aix_comp makefile.EXA.SPARSE.tail \
	    > ../EXA/SPARSE/makefile
	cat makefile.EXA.LH.head aix_comp makefile.EXA.LH.tail \
	    > ../EXA/LIGHTHOUSE/makefile
	cat makefile.EXA.LU.head aix_comp makefile.EXA.LU.tail \
	    > ../EXA/LUFACT/makefile
	cat makefile.EXA.CLOCK.head aix_comp makefile.EXA.CLOCK.tail \
	    > ../EXA/CLOCK/makefile
	cat makefile.SRC.head aix_comp makefile.SRC.tail > ../SRC/makefile
	@echo installation of makefiles finished


suninstall: $(COMPONENTS) sun_comp
	cat makefile.DEX.head sun_comp makefile.DEX.tail > ../DEX/makefile
	cat makefile.EXA.head sun_comp makefile.EXA.tail > ../EXA/makefile
	cat makefile.EXA.ODE.head sun_comp makefile.EXA.ODE.tail \
	    > ../EXA/ODE/makefile
	cat makefile.EXA.TIMING.head sun_comp makefile.EXA.TIMING.tail \
	    > ../EXA/TIMING/makefile
	cat makefile.EXA.TAYLOR.head sun_comp makefile.EXA.TAYLOR.tail \
	    > ../EXA/TAYLOR/makefile
	cat makefile.EXA.TS.head sun_comp makefile.EXA.TS.tail \
	    > ../EXA/TAPESAVE/makefile
	cat makefile.EXA.SPARSE.head sun_comp makefile.EXA.SPARSE.tail \
	    > ../EXA/SPARSE/makefile
	cat makefile.EXA.LH.head sun_comp makefile.EXA.LH.tail \
	    > ../EXA/LIGHTHOUSE/makefile
	cat makefile.EXA.LU.head sun_comp makefile.EXA.LU.tail \
	    > ../EXA/LUFACT/makefile
	cat makefile.EXA.CLOCK.head sun_comp makefile.EXA.CLOCK.tail \
	    > ../EXA/CLOCK/makefile
	cat makefile.SRC.head sun_comp makefile.SRC.tail > ../SRC/makefile
	@echo installation of makefiles finished


decinstall: $(COMPONENTS) dec_comp
	cat makefile.DEX.head dec_comp makefile.DEX.tail > ../DEX/makefile
	cat makefile.EXA.head dec_comp makefile.EXA.tail > ../EXA/makefile
	cat makefile.EXA.ODE.head dec_comp makefile.EXA.ODE.tail \
	    > ../EXA/ODE/makefile
	cat makefile.EXA.TIMING.head dec_comp makefile.EXA.TIMING.tail \
	    > ../EXA/TIMING/makefile
	cat makefile.EXA.TAYLOR.head dec_comp makefile.EXA.TAYLOR.tail \
	    > ../EXA/TAYLOR/makefile
	cat makefile.EXA.TS.head dec_comp makefile.EXA.TS.tail \
	    > ../EXA/TAPESAVE/makefile
	cat makefile.EXA.SPARSE.head dec_comp makefile.EXA.SPARSE.tail \
	    > ../EXA/SPARSE/makefile
	cat makefile.EXA.LH.head dec_comp makefile.EXA.LH.tail \
	    > ../EXA/LIGHTHOUSE/makefile
	cat makefile.EXA.LU.head dec_comp makefile.EXA.LU.tail \
	    > ../EXA/LUFACT/makefile
	cat makefile.EXA.CLOCK.head dec_comp makefile.EXA.CLOCK.tail \
	    > ../EXA/CLOCK/makefile
	cat makefile.SRC.head dec_comp makefile.SRC.tail > ../SRC/makefile
	@echo installation of makefiles finished


sgiinstall: $(COMPONENTS) sgi_comp
	cat makefile.DEX.head sgi_comp makefile.DEX.tail > ../DEX/makefile
	cat makefile.EXA.head sgi_comp makefile.EXA.tail > ../EXA/makefile
	cat makefile.EXA.ODE.head sgi_comp makefile.EXA.ODE.tail \
	    > ../EXA/ODE/makefile
	cat makefile.EXA.TIMING.head sgi_comp makefile.EXA.TIMING.tail \
	    > ../EXA/TIMING/makefile
	cat makefile.EXA.TAYLOR.head sgi_comp makefile.EXA.TAYLOR.tail \
	    > ../EXA/TAYLOR/makefile
	cat makefile.EXA.TS.head sgi_comp makefile.EXA.TS.tail \
	    > ../EXA/TAPESAVE/makefile
	cat makefile.EXA.SPARSE.head sgi_comp makefile.EXA.SPARSE.tail \
	    > ../EXA/SPARSE/makefile
	cat makefile.EXA.LH.head sgi_comp makefile.EXA.LH.tail \
	    > ../EXA/LIGHTHOUSE/makefile
	cat makefile.EXA.LU.head sgi_comp makefile.EXA.LU.tail \
	    > ../EXA/LUFACT/makefile
	cat makefile.EXA.CLOCK.head sgi_comp makefile.EXA.CLOCK.tail \
	    > ../EXA/CLOCK/makefile
	cat makefile.SRC.head sgi_comp makefile.SRC.tail > ../SRC/makefile
	@echo installation of makefiles finished


xxxinstall: $(COMPONENTS) xxx_comp
	cat makefile.DEX.head xxx_comp makefile.DEX.tail > ../DEX/makefile
	cat makefile.EXA.head xxx_comp makefile.EXA.tail > ../EXA/makefile
	cat makefile.EXA.ODE.head xxx_comp makefile.EXA.ODE.tail \
	    > ../EXA/ODE/makefile
	cat makefile.EXA.TIMING.head xxx_comp makefile.EXA.TIMING.tail \
	    > ../EXA/TIMING/makefile
	cat makefile.EXA.TAYLOR.head xxx_comp makefile.EXA.TAYLOR.tail \
	    > ../EXA/TAYLOR/makefile
	cat makefile.EXA.TS.head xxx_comp makefile.EXA.TS.tail \
	    > ../EXA/TAPESAVE/makefile
	cat makefile.EXA.SPARSE.head xxx_comp makefile.EXA.SPARSE.tail \
	    > ../EXA/SPARSE/makefile
	cat makefile.EXA.LH.head xxx_comp makefile.EXA.LH.tail \
	    > ../EXA/LIGHTHOUSE/makefile
	cat makefile.EXA.LU.head xxx_comp makefile.EXA.LU.tail \
	    > ../EXA/LUFACT/makefile
	cat makefile.EXA.CLOCK.head xxx_comp makefile.EXA.CLOCK.tail \
	    > ../EXA/CLOCK/makefile
	cat makefile.SRC.head xxx_comp makefile.SRC.tail > ../SRC/makefile
	@echo installation of makefiles finished


uninstall:
	( cd ../DEX; make cleanall)
	-rm ../DEX/makefile
	( cd ../EXA; make cleanall; make cleanallsubdirs)
	-rm ../EXA/makefile
	-rm ../EXA/CLOCK/makefile
	-rm ../EXA/ODE/makefile
	-rm ../EXA/SPARSE/makefile
	-rm ../EXA/TAYLOR/makefile
	-rm ../EXA/TAPESAVE/makefile
	-rm ../EXA/LIGHTHOUSE/makefile
	-rm ../EXA/LUFACT/makefile
	-rm ../EXA/TIMING/makefile
	( cd ../SRC; make cleanall)
	-rm ../SRC/makefile
	-rm *~
	@echo uninstallation finished