source: Sophya/trunk/SophyaProg/PrgUtil/Makefile@ 1523

Last change on this file since 1523 was 1522, checked in by cmv, 24 years ago

creation sphere mask a partir sphere valeurs cmv 13/6/01

File size: 6.5 KB
Line 
1MODULECXXREPNAME := PrgUtil
2include ../Mgr/Makefile.h
3
4ifdef NOSHLIB
5LIBF = $(LIB)libTArray.a $(LIB)libSysTools.a $(LIB)libNTools.a $(LIB)libSkyMap.a $(LIB)libSamba.a $(LIB)libSkyT.a $(LIB)lib.a $(LIB)lib.a
6LIBS = -L$(LIB) -lTArray -lSysTools -lNTools -lSkyMap -lSamba -lSkyT -l -l -lm
7ifeq ($(CXX),cxx)
8# librairie des instances de templates cxx
9LIBS := $(LIBS) -lertcxx
10endif
11else
12LIBF = $(SLB)libsophya.so $(SLB)libextsophya.so
13LIBS = -L$(SLB) -lsophya -lextsophya -lm
14endif
15LIBSORA := $(LIBS)
16LDLIBS := $(LIBS) $(LDLIBS)
17PROGS = $(EXE)runcxx $(EXE)scanppf $(EXE)scanfits $(EXE)cl2map $(EXE)map2cl $(EXE)prjsmap \
18 $(EXE)cremskfrsph
19
20PROBJS = $(OBJ)runcxx.o $(OBJ)scanppf.o $(OBJ)scanfits.o $(OBJ)cl2map.o $(OBJ)map2cl.o \
21 $(OBJ)prjsmap.o $(OBJ)cremskfrsph.o
22
23all: $(PROGS)
24
25clean:
26 rm -f $(PROGS)
27 rm -f $(PROBJS)
28 if [ -d $(OBJ)cxxrep_PrgUtil ] ; then cd $(OBJ)cxxrep_PrgUtil ; rm -f *.o ; fi
29
30runcxx: $(EXE)runcxx
31 @ echo runcxx done
32$(EXE)runcxx: $(OBJ)runcxx.o
33 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
34
35scanppf: $(EXE)scanppf
36 @ echo scanppf done
37$(EXE)scanppf: $(OBJ)scanppf.o
38 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
39
40scanfits: $(EXE)scanfits
41 @ echo scanfits done
42$(EXE)scanfits: $(OBJ)scanfits.o
43 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
44
45cl2map: $(EXE)cl2map
46 @ echo cl2map done
47$(EXE)cl2map: $(OBJ)cl2map.o
48 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
49
50map2cl: $(EXE)map2cl
51 @ echo map2cl done
52$(EXE)map2cl: $(OBJ)map2cl.o
53 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
54
55prjsmap: $(EXE)prjsmap
56 @ echo prjsmap done
57$(EXE)prjsmap: $(OBJ)prjsmap.o
58 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
59
60cremskfrsph: $(EXE)cremskfrsph
61 @ echo cremskfrsph done
62$(EXE)cremskfrsph: $(OBJ)cremskfrsph.o
63 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
64
65: $(EXE)
66
67$(EXE):
68 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
69
70$(OBJ)cl2map.o: cl2map.cc $(INC)machdefs.h \
71 $(INC)nbmath.h \
72 $(INC)smathconst.h \
73 $(INC)timing.h \
74 $(INC)array.h \
75 $(INC)tarray.h \
76 $(INC)basarr.h \
77 $(INC)anydataobj.h \
78 $(INC)mutyv.h \
79 $(INC)dvlist.h \
80 $(INC)objfio.h \
81 $(INC)ppersist.h \
82 $(INC)pexceptions.h \
83 $(INC)gnumd5.h \
84 $(INC)ndatablock.h \
85 $(INC)utilarr.h \
86 $(INC)tmatrix.h \
87 $(INC)tvector.h \
88 $(INC)matharr.h \
89 $(INC)fioarr.h \
90 $(INC)sopemtx.h \
91 $(INC)skymap.h \
92 $(INC)spherethetaphi.h \
93 $(INC)sphericalmap.h \
94 $(INC)pixelmap.h \
95 $(INC)spherepos.h \
96 $(INC)unitvector.h \
97 $(INC)vector3d.h \
98 $(INC)longlat.h \
99 $(INC)utilgeom.h \
100 $(INC)spherehealpix.h \
101 $(INC)HEALPixUtils.h \
102 $(INC)localmap.h \
103 $(INC)fiospherethetaphi.h \
104 $(INC)fiospherehealpix.h \
105 $(INC)fiolocalmap.h \
106 $(INC)samba.h \
107 $(INC)alm.h \
108 $(INC)nbrandom.h \
109 $(INC)srandgen.h \
110 $(INC)triangmtx.h \
111 $(INC)bruit.h \
112 $(INC)circle.h \
113 $(INC)geometry.h \
114 $(INC)lambdaBuilder.h \
115 $(INC)misstime.h \
116 $(INC)mlobe.h \
117 $(INC)prefcount.h \
118 $(INC)scan.h \
119 $(INC)sphericaltransformserver.h \
120 $(INC)fftservintf.h \
121 $(INC)fftpserver.h \
122 $(INC)tod.h \
123 $(INC)sambainit.h \
124 $(INC)skymapinit.h \
125 $(INC)sophyainit.h \
126 $(INC)ntoolsinit.h \
127 $(INC)tarrinit.h \
128 $(INC)fitsspherehealpix.h \
129 $(INC)fitsfile.h \
130 $(INC)fitstarray.h
131$(OBJ)map2cl.o: map2cl.cc $(INC)machdefs.h \
132 $(INC)nbmath.h \
133 $(INC)smathconst.h \
134 $(INC)timing.h \
135 $(INC)array.h \
136 $(INC)tarray.h \
137 $(INC)basarr.h \
138 $(INC)anydataobj.h \
139 $(INC)mutyv.h \
140 $(INC)dvlist.h \
141 $(INC)objfio.h \
142 $(INC)ppersist.h \
143 $(INC)pexceptions.h \
144 $(INC)gnumd5.h \
145 $(INC)ndatablock.h \
146 $(INC)utilarr.h \
147 $(INC)tmatrix.h \
148 $(INC)tvector.h \
149 $(INC)matharr.h \
150 $(INC)fioarr.h \
151 $(INC)sopemtx.h \
152 $(INC)skymap.h \
153 $(INC)spherethetaphi.h \
154 $(INC)sphericalmap.h \
155 $(INC)pixelmap.h \
156 $(INC)spherepos.h \
157 $(INC)unitvector.h \
158 $(INC)vector3d.h \
159 $(INC)longlat.h \
160 $(INC)utilgeom.h \
161 $(INC)spherehealpix.h \
162 $(INC)HEALPixUtils.h \
163 $(INC)localmap.h \
164 $(INC)fiospherethetaphi.h \
165 $(INC)fiospherehealpix.h \
166 $(INC)fiolocalmap.h \
167 $(INC)samba.h \
168 $(INC)alm.h \
169 $(INC)nbrandom.h \
170 $(INC)srandgen.h \
171 $(INC)triangmtx.h \
172 $(INC)bruit.h \
173 $(INC)circle.h \
174 $(INC)geometry.h \
175 $(INC)lambdaBuilder.h \
176 $(INC)misstime.h \
177 $(INC)mlobe.h \
178 $(INC)prefcount.h \
179 $(INC)scan.h \
180 $(INC)sphericaltransformserver.h \
181 $(INC)fftservintf.h \
182 $(INC)fftpserver.h \
183 $(INC)tod.h \
184 $(INC)sambainit.h \
185 $(INC)skymapinit.h \
186 $(INC)sophyainit.h \
187 $(INC)ntoolsinit.h \
188 $(INC)tarrinit.h \
189 $(INC)fitsspherehealpix.h \
190 $(INC)fitsfile.h \
191 $(INC)fitstarray.h
192$(OBJ)prjsmap.o: prjsmap.cc $(INC)machdefs.h \
193 $(INC)nbmath.h \
194 $(INC)smathconst.h \
195 $(INC)timing.h \
196 $(INC)array.h \
197 $(INC)tarray.h \
198 $(INC)basarr.h \
199 $(INC)anydataobj.h \
200 $(INC)mutyv.h \
201 $(INC)dvlist.h \
202 $(INC)objfio.h \
203 $(INC)ppersist.h \
204 $(INC)pexceptions.h \
205 $(INC)gnumd5.h \
206 $(INC)ndatablock.h \
207 $(INC)utilarr.h \
208 $(INC)tmatrix.h \
209 $(INC)tvector.h \
210 $(INC)matharr.h \
211 $(INC)fioarr.h \
212 $(INC)sopemtx.h \
213 $(INC)skymap.h \
214 $(INC)spherethetaphi.h \
215 $(INC)sphericalmap.h \
216 $(INC)pixelmap.h \
217 $(INC)spherepos.h \
218 $(INC)unitvector.h \
219 $(INC)vector3d.h \
220 $(INC)longlat.h \
221 $(INC)utilgeom.h \
222 $(INC)spherehealpix.h \
223 $(INC)HEALPixUtils.h \
224 $(INC)localmap.h \
225 $(INC)fiospherethetaphi.h \
226 $(INC)fiospherehealpix.h \
227 $(INC)fiolocalmap.h \
228 $(INC)samba.h \
229 $(INC)alm.h \
230 $(INC)nbrandom.h \
231 $(INC)srandgen.h \
232 $(INC)triangmtx.h \
233 $(INC)bruit.h \
234 $(INC)circle.h \
235 $(INC)geometry.h \
236 $(INC)lambdaBuilder.h \
237 $(INC)misstime.h \
238 $(INC)mlobe.h \
239 $(INC)prefcount.h \
240 $(INC)scan.h \
241 $(INC)sphericaltransformserver.h \
242 $(INC)fftservintf.h \
243 $(INC)fftpserver.h \
244 $(INC)tod.h \
245 $(INC)sambainit.h \
246 $(INC)skymapinit.h \
247 $(INC)sophyainit.h \
248 $(INC)ntoolsinit.h \
249 $(INC)tarrinit.h \
250 $(INC)fitsspherehealpix.h \
251 $(INC)fitsfile.h \
252 $(INC)fitstarray.h
253$(OBJ)runcxx.o: runcxx.cc $(INC)sambainit.h \
254 $(INC)skymapinit.h \
255 $(INC)sophyainit.h \
256 $(INC)machdefs.h \
257 $(INC)ntoolsinit.h \
258 $(INC)tarrinit.h \
259 $(INC)skyinit.h \
260 $(INC)pexceptions.h \
261 $(INC)cxxcmplnk.h \
262 $(INC)pdlmgr.h \
263 $(INC)timing.h
264$(OBJ)scanfits.o: scanfits.cc $(INC)histinit.h \
265 $(INC)ntoolsinit.h \
266 $(INC)tarrinit.h \
267 $(INC)sophyainit.h \
268 $(INC)machdefs.h \
269 $(INC)dvlist.h \
270 $(INC)objfio.h \
271 $(INC)anydataobj.h \
272 $(INC)ppersist.h \
273 $(INC)pexceptions.h \
274 $(INC)gnumd5.h \
275 $(INC)mutyv.h \
276 $(INC)ntuple.h \
277 $(INC)ntupintf.h \
278 $(INC)xntuple.h \
279 $(INC)fitsxntuple.h \
280 $(INC)fitsfile.h \
281 $(INC)ndatablock.h \
282 $(INC)fitsntuple.h
283$(OBJ)scanppf.o: scanppf.cc $(INC)ppersist.h \
284 $(INC)machdefs.h \
285 $(INC)pexceptions.h \
286 $(INC)gnumd5.h \
287 $(INC)anydataobj.h \
288 $(INC)sambainit.h \
289 $(INC)skymapinit.h \
290 $(INC)sophyainit.h \
291 $(INC)ntoolsinit.h \
292 $(INC)tarrinit.h
293$(OBJ)cremskfrsph.o: cremskfrsph.cc
Note: See TracBrowser for help on using the repository browser.