Changeset 2743 in Sophya for trunk/SophyaProg/PrgMap
- Timestamp:
- May 20, 2005, 9:57:11 AM (20 years ago)
- Location:
- trunk/SophyaProg/PrgMap
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PrgMap/Makefile
r1598 r2743 1 MODULECXXREPNAME := PrgMap 2 include ../Mgr/Makefile.h 3 4 ifdef NOSHLIB 5 LIBF = $(LIB)libFitsIOServer.a $(LIB)libSamba.a $(LIB)libSkyMap.a $(LIB)libSkyT.a $(LIB)libNTools.a $(LIB)libHiStats.a $(LIB)libTArray.a $(LIB)libSysTools.a 6 LIBS = -L$(LIB) -lFitsIOServer -lSamba -lSkyMap -lSkyT -lNTools -lHiStats -lTArray -lSysTools -lm 7 ifeq ($(CXX),cxx) 8 # librairie des instances de templates cxx 9 LIBS := $(LIBS) -lertcxx 10 endif 11 else 12 LIBF = $(SLB)libsophya.so $(SLB)libextsophya.so 13 LIBS = -L$(SLB) -lsophya -lextsophya -lm 14 endif 15 LIBSORA := $(LIBS) 16 LDLIBS := $(LIBS) $(LDLIBS) 17 PROGS = $(EXE)cl2map $(EXE)map2cl $(EXE)prjsmap $(EXE)cremskfrsph \ 18 $(EXE)msksphere $(EXE)extrapsph $(EXE)extrap2sph 19 20 PROBJS = $(OBJ)cl2map.o $(OBJ)map2cl.o $(OBJ)prjsmap.o \ 21 $(OBJ)cremskfrsph.o $(OBJ)msksphere.o \ 22 $(OBJ)extrapsph.o $(OBJ)extrap2sph.o 23 1 include ../BuildMgr/sophyamake.inc 2 3 PROGS = $(SOPHYAEXEP)cl2map $(SOPHYAEXEP)map2cl $(SOPHYAEXEP)prjsmap $(SOPHYAEXEP)cremskfrsph $(SOPHYAEXEP)extrapsph $(SOPHYAEXEP)extrap2sph 4 24 5 all: $(PROGS) 25 6 26 7 clean: 27 8 rm -f $(PROGS) 28 rm -f $(PROBJS) 29 if [ -d $(OBJ)cxxrep_PrgMap ] ; then cd $(OBJ)cxxrep_PrgMap ; rm -f *.o ; fi 30 31 cl2map: $(EXE)cl2map 32 @ echo cl2map done 33 $(EXE)cl2map: $(OBJ)cl2map.o 34 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 35 36 map2cl: $(EXE)map2cl 37 @ echo map2cl done 38 $(EXE)map2cl: $(OBJ)map2cl.o 39 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 40 41 prjsmap: $(EXE)prjsmap 42 @ echo prjsmap done 43 $(EXE)prjsmap: $(OBJ)prjsmap.o 44 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 45 46 cremskfrsph: $(EXE)cremskfrsph 47 @ echo cremskfrsph done 48 $(EXE)cremskfrsph: $(OBJ)cremskfrsph.o 49 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 50 51 msksphere: $(EXE)msksphere 52 @ echo msksphere done 53 $(EXE)msksphere: $(OBJ)msksphere.o 54 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 55 56 extrapsph: $(EXE)extrapsph 57 @ echo extrapsph done 58 $(EXE)extrapsph: $(OBJ)extrapsph.o 59 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 60 61 extrap2sph: $(EXE)extrap2sph 62 @ echo extrap2sph done 63 $(EXE)extrap2sph: $(OBJ)extrap2sph.o 64 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 65 66 $(OBJ)cl2map.o: cl2map.cc $(INC)machdefs.h \ 67 $(INC)nbmath.h \ 68 $(INC)smathconst.h \ 69 $(INC)timing.h \ 70 $(INC)array.h \ 71 $(INC)tarray.h \ 72 $(INC)basarr.h \ 73 $(INC)anydataobj.h \ 74 $(INC)mutyv.h \ 75 $(INC)dvlist.h \ 76 $(INC)objfio.h \ 77 $(INC)ppersist.h \ 78 $(INC)pexceptions.h \ 79 $(INC)gnumd5.h \ 80 $(INC)ndatablock.h \ 81 $(INC)utilarr.h \ 82 $(INC)tmatrix.h \ 83 $(INC)tvector.h \ 84 $(INC)matharr.h \ 85 $(INC)fioarr.h \ 86 $(INC)sopemtx.h \ 87 $(INC)skymap.h \ 88 $(INC)spherethetaphi.h \ 89 $(INC)sphericalmap.h \ 90 $(INC)pixelmap.h \ 91 $(INC)spherepos.h \ 92 $(INC)unitvector.h \ 93 $(INC)vector3d.h \ 94 $(INC)longlat.h \ 95 $(INC)utilgeom.h \ 96 $(INC)spherehealpix.h \ 97 $(INC)HEALPixUtils.h \ 98 $(INC)localmap.h \ 99 $(INC)fiospherethetaphi.h \ 100 $(INC)fiospherehealpix.h \ 101 $(INC)fiolocalmap.h \ 102 $(INC)samba.h \ 103 $(INC)alm.h \ 104 $(INC)nbrandom.h \ 105 $(INC)srandgen.h \ 106 $(INC)triangmtx.h \ 107 $(INC)bruit.h \ 108 $(INC)circle.h \ 109 $(INC)geometry.h \ 110 $(INC)lambdaBuilder.h \ 111 $(INC)misstime.h \ 112 $(INC)mlobe.h \ 113 $(INC)prefcount.h \ 114 $(INC)scan.h \ 115 $(INC)sphericaltransformserver.h \ 116 $(INC)fftservintf.h \ 117 $(INC)fftpserver.h \ 118 $(INC)tod.h \ 119 $(INC)sambainit.h \ 120 $(INC)skymapinit.h \ 121 $(INC)sophyainit.h \ 122 $(INC)ntoolsinit.h \ 123 $(INC)tarrinit.h \ 124 $(INC)fitsspherehealpix.h \ 125 $(INC)fitsfile.h \ 126 $(INC)fitstarray.h 127 $(OBJ)map2cl.o: map2cl.cc $(INC)machdefs.h \ 128 $(INC)nbmath.h \ 129 $(INC)smathconst.h \ 130 $(INC)timing.h \ 131 $(INC)array.h \ 132 $(INC)tarray.h \ 133 $(INC)basarr.h \ 134 $(INC)anydataobj.h \ 135 $(INC)mutyv.h \ 136 $(INC)dvlist.h \ 137 $(INC)objfio.h \ 138 $(INC)ppersist.h \ 139 $(INC)pexceptions.h \ 140 $(INC)gnumd5.h \ 141 $(INC)ndatablock.h \ 142 $(INC)utilarr.h \ 143 $(INC)tmatrix.h \ 144 $(INC)tvector.h \ 145 $(INC)matharr.h \ 146 $(INC)fioarr.h \ 147 $(INC)sopemtx.h \ 148 $(INC)skymap.h \ 149 $(INC)spherethetaphi.h \ 150 $(INC)sphericalmap.h \ 151 $(INC)pixelmap.h \ 152 $(INC)spherepos.h \ 153 $(INC)unitvector.h \ 154 $(INC)vector3d.h \ 155 $(INC)longlat.h \ 156 $(INC)utilgeom.h \ 157 $(INC)spherehealpix.h \ 158 $(INC)HEALPixUtils.h \ 159 $(INC)localmap.h \ 160 $(INC)fiospherethetaphi.h \ 161 $(INC)fiospherehealpix.h \ 162 $(INC)fiolocalmap.h \ 163 $(INC)samba.h \ 164 $(INC)alm.h \ 165 $(INC)nbrandom.h \ 166 $(INC)srandgen.h \ 167 $(INC)triangmtx.h \ 168 $(INC)bruit.h \ 169 $(INC)circle.h \ 170 $(INC)geometry.h \ 171 $(INC)lambdaBuilder.h \ 172 $(INC)misstime.h \ 173 $(INC)mlobe.h \ 174 $(INC)prefcount.h \ 175 $(INC)scan.h \ 176 $(INC)sphericaltransformserver.h \ 177 $(INC)fftservintf.h \ 178 $(INC)fftpserver.h \ 179 $(INC)tod.h \ 180 $(INC)sambainit.h \ 181 $(INC)skymapinit.h \ 182 $(INC)sophyainit.h \ 183 $(INC)ntoolsinit.h \ 184 $(INC)tarrinit.h \ 185 $(INC)fitsspherehealpix.h \ 186 $(INC)fitsfile.h \ 187 $(INC)fitstarray.h 188 $(OBJ)prjsmap.o: prjsmap.cc $(INC)machdefs.h \ 189 $(INC)nbmath.h \ 190 $(INC)smathconst.h \ 191 $(INC)timing.h \ 192 $(INC)array.h \ 193 $(INC)tarray.h \ 194 $(INC)basarr.h \ 195 $(INC)anydataobj.h \ 196 $(INC)mutyv.h \ 197 $(INC)dvlist.h \ 198 $(INC)objfio.h \ 199 $(INC)ppersist.h \ 200 $(INC)pexceptions.h \ 201 $(INC)gnumd5.h \ 202 $(INC)ndatablock.h \ 203 $(INC)utilarr.h \ 204 $(INC)tmatrix.h \ 205 $(INC)tvector.h \ 206 $(INC)matharr.h \ 207 $(INC)fioarr.h \ 208 $(INC)sopemtx.h \ 209 $(INC)skymap.h \ 210 $(INC)spherethetaphi.h \ 211 $(INC)sphericalmap.h \ 212 $(INC)pixelmap.h \ 213 $(INC)spherepos.h \ 214 $(INC)unitvector.h \ 215 $(INC)vector3d.h \ 216 $(INC)longlat.h \ 217 $(INC)utilgeom.h \ 218 $(INC)spherehealpix.h \ 219 $(INC)HEALPixUtils.h \ 220 $(INC)localmap.h \ 221 $(INC)fiospherethetaphi.h \ 222 $(INC)fiospherehealpix.h \ 223 $(INC)fiolocalmap.h \ 224 $(INC)samba.h \ 225 $(INC)alm.h \ 226 $(INC)nbrandom.h \ 227 $(INC)srandgen.h \ 228 $(INC)triangmtx.h \ 229 $(INC)bruit.h \ 230 $(INC)circle.h \ 231 $(INC)geometry.h \ 232 $(INC)lambdaBuilder.h \ 233 $(INC)misstime.h \ 234 $(INC)mlobe.h \ 235 $(INC)prefcount.h \ 236 $(INC)scan.h \ 237 $(INC)sphericaltransformserver.h \ 238 $(INC)fftservintf.h \ 239 $(INC)fftpserver.h \ 240 $(INC)tod.h \ 241 $(INC)sambainit.h \ 242 $(INC)skymapinit.h \ 243 $(INC)sophyainit.h \ 244 $(INC)ntoolsinit.h \ 245 $(INC)tarrinit.h \ 246 $(INC)fitsspherehealpix.h \ 247 $(INC)fitsfile.h \ 248 $(INC)fitstarray.h 249 $(OBJ)cremskfrsph.o: cremskfrsph.cc \ 250 $(INC)machdefs.h \ 251 $(INC)skymapinit.h \ 252 $(INC)sophyainit.h \ 253 $(INC)skymap.h \ 254 $(INC)spherethetaphi.h \ 255 $(INC)sphericalmap.h \ 256 $(INC)smathconst.h \ 257 $(INC)pixelmap.h \ 258 $(INC)ppersist.h \ 259 $(INC)pexceptions.h \ 260 $(INC)gnumd5.h \ 261 $(INC)dvlist.h \ 262 $(INC)objfio.h \ 263 $(INC)anydataobj.h \ 264 $(INC)mutyv.h \ 265 $(INC)spherepos.h \ 266 $(INC)unitvector.h \ 267 $(INC)vector3d.h \ 268 $(INC)longlat.h \ 269 $(INC)utilgeom.h \ 270 $(INC)tvector.h \ 271 $(INC)tmatrix.h \ 272 $(INC)tarray.h \ 273 $(INC)basarr.h \ 274 $(INC)ndatablock.h \ 275 $(INC)utilarr.h \ 276 $(INC)spherehealpix.h \ 277 $(INC)HEALPixUtils.h \ 278 $(INC)localmap.h \ 279 $(INC)fiospherethetaphi.h \ 280 $(INC)fiospherehealpix.h \ 281 $(INC)fiolocalmap.h \ 282 $(INC)fitsspherehealpix.h \ 283 $(INC)fitsfile.h 284 $(OBJ)extrapsph.o: extrapsph.cc \ 285 $(INC)machdefs.h \ 286 $(INC)skymapinit.h \ 287 $(INC)sophyainit.h \ 288 $(INC)skymap.h \ 289 $(INC)spherethetaphi.h \ 290 $(INC)sphericalmap.h \ 291 $(INC)smathconst.h \ 292 $(INC)pixelmap.h \ 293 $(INC)ppersist.h \ 294 $(INC)pexceptions.h \ 295 $(INC)gnumd5.h \ 296 $(INC)dvlist.h \ 297 $(INC)objfio.h \ 298 $(INC)anydataobj.h \ 299 $(INC)mutyv.h \ 300 $(INC)spherepos.h \ 301 $(INC)unitvector.h \ 302 $(INC)vector3d.h \ 303 $(INC)longlat.h \ 304 $(INC)utilgeom.h \ 305 $(INC)tvector.h \ 306 $(INC)tmatrix.h \ 307 $(INC)tarray.h \ 308 $(INC)basarr.h \ 309 $(INC)ndatablock.h \ 310 $(INC)utilarr.h \ 311 $(INC)spherehealpix.h \ 312 $(INC)HEALPixUtils.h \ 313 $(INC)localmap.h \ 314 $(INC)fiospherethetaphi.h \ 315 $(INC)fiospherehealpix.h \ 316 $(INC)fiolocalmap.h \ 317 $(INC)fitsspherehealpix.h \ 318 $(INC)fitsfile.h 319 $(OBJ)extrap2sph.o: extrap2sph.cc \ 320 $(INC)machdefs.h \ 321 $(INC)skymapinit.h \ 322 $(INC)sophyainit.h \ 323 $(INC)skymap.h \ 324 $(INC)spherethetaphi.h \ 325 $(INC)sphericalmap.h \ 326 $(INC)smathconst.h \ 327 $(INC)pixelmap.h \ 328 $(INC)ppersist.h \ 329 $(INC)pexceptions.h \ 330 $(INC)gnumd5.h \ 331 $(INC)dvlist.h \ 332 $(INC)objfio.h \ 333 $(INC)anydataobj.h \ 334 $(INC)mutyv.h \ 335 $(INC)spherepos.h \ 336 $(INC)unitvector.h \ 337 $(INC)vector3d.h \ 338 $(INC)longlat.h \ 339 $(INC)utilgeom.h \ 340 $(INC)tvector.h \ 341 $(INC)tmatrix.h \ 342 $(INC)tarray.h \ 343 $(INC)basarr.h \ 344 $(INC)ndatablock.h \ 345 $(INC)utilarr.h \ 346 $(INC)spherehealpix.h \ 347 $(INC)HEALPixUtils.h \ 348 $(INC)localmap.h \ 349 $(INC)fiospherethetaphi.h \ 350 $(INC)fiospherehealpix.h \ 351 $(INC)fiolocalmap.h \ 352 $(INC)fitsspherehealpix.h \ 353 $(INC)fitsfile.h 354 $(OBJ)msksphere.o: msksphere.cc \ 355 $(INC)machdefs.h \ 356 $(INC)skymapinit.h \ 357 $(INC)sophyainit.h \ 358 $(INC)skymap.h \ 359 $(INC)spherethetaphi.h \ 360 $(INC)sphericalmap.h \ 361 $(INC)smathconst.h \ 362 $(INC)pixelmap.h \ 363 $(INC)ppersist.h \ 364 $(INC)pexceptions.h \ 365 $(INC)gnumd5.h \ 366 $(INC)dvlist.h \ 367 $(INC)objfio.h \ 368 $(INC)anydataobj.h \ 369 $(INC)mutyv.h \ 370 $(INC)spherepos.h \ 371 $(INC)unitvector.h \ 372 $(INC)vector3d.h \ 373 $(INC)longlat.h \ 374 $(INC)utilgeom.h \ 375 $(INC)tvector.h \ 376 $(INC)tmatrix.h \ 377 $(INC)tarray.h \ 378 $(INC)basarr.h \ 379 $(INC)ndatablock.h \ 380 $(INC)utilarr.h \ 381 $(INC)spherehealpix.h \ 382 $(INC)HEALPixUtils.h \ 383 $(INC)localmap.h \ 384 $(INC)fiospherethetaphi.h \ 385 $(INC)fiospherehealpix.h \ 386 $(INC)fiolocalmap.h \ 387 $(INC)fitsspherehealpix.h \ 388 $(INC)fitsfile.h 9 rm -f $(SOPHYAOBJP)extrap2sph.o $(SOPHYAOBJP)extrapsph.o $(SOPHYAOBJP)cremskfrsph.o $(SOPHYAOBJP)prjsmap.o $(SOPHYAOBJP)map2cl.o $(SOPHYAOBJP)cl2map.o 10 11 cl2map: $(SOPHYAEXEP)cl2map 12 echo $@ " done" 13 $(SOPHYAEXEP)cl2map: $(SOPHYAOBJP)cl2map.o 14 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 15 16 map2cl: $(SOPHYAEXEP)map2cl 17 echo $@ " done" 18 $(SOPHYAEXEP)map2cl: $(SOPHYAOBJP)map2cl.o 19 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 20 21 prjsmap: $(SOPHYAEXEP)prjsmap 22 echo $@ " done" 23 $(SOPHYAEXEP)prjsmap: $(SOPHYAOBJP)prjsmap.o 24 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 25 26 cremskfrsph: $(SOPHYAEXEP)cremskfrsph 27 echo $@ " done" 28 $(SOPHYAEXEP)cremskfrsph: $(SOPHYAOBJP)cremskfrsph.o 29 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 30 31 extrapsph: $(SOPHYAEXEP)extrapsph 32 echo $@ " done" 33 $(SOPHYAEXEP)extrapsph: $(SOPHYAOBJP)extrapsph.o 34 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 35 36 extrap2sph: $(SOPHYAEXEP)extrap2sph 37 echo $@ " done" 38 $(SOPHYAEXEP)extrap2sph: $(SOPHYAOBJP)extrap2sph.o 39 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 40 41 $(SOPHYAOBJP)cl2map.o: cl2map.cc $(SOPHYAINCP)sopnamsp.h \ 42 $(SOPHYAINCP)machdefs.h \ 43 $(SOPHYAINCP)nbmath.h \ 44 $(SOPHYAINCP)smathconst.h \ 45 $(SOPHYAINCP)timing.h \ 46 $(SOPHYAINCP)array.h \ 47 $(SOPHYAINCP)tarray.h \ 48 $(SOPHYAINCP)basarr.h \ 49 $(SOPHYAINCP)anydataobj.h \ 50 $(SOPHYAINCP)mutyv.h \ 51 $(SOPHYAINCP)dvlist.h \ 52 $(SOPHYAINCP)objfio.h \ 53 $(SOPHYAINCP)ppersist.h \ 54 $(SOPHYAINCP)pexceptions.h \ 55 $(SOPHYAINCP)gnumd5.h \ 56 $(SOPHYAINCP)ppfbinstream.h \ 57 $(SOPHYAINCP)rawstream.h \ 58 $(SOPHYAINCP)ppfnametag.h \ 59 $(SOPHYAINCP)ndatablock.h \ 60 $(SOPHYAINCP)utilarr.h \ 61 $(SOPHYAINCP)tmatrix.h \ 62 $(SOPHYAINCP)tvector.h \ 63 $(SOPHYAINCP)matharr.h \ 64 $(SOPHYAINCP)fioarr.h \ 65 $(SOPHYAINCP)sopemtx.h \ 66 $(SOPHYAINCP)skymap.h \ 67 $(SOPHYAINCP)spherethetaphi.h \ 68 $(SOPHYAINCP)sphericalmap.h \ 69 $(SOPHYAINCP)pixelmap.h \ 70 $(SOPHYAINCP)spherepos.h \ 71 $(SOPHYAINCP)unitvector.h \ 72 $(SOPHYAINCP)vector3d.h \ 73 $(SOPHYAINCP)longlat.h \ 74 $(SOPHYAINCP)utilgeom.h \ 75 $(SOPHYAINCP)spherehealpix.h \ 76 $(SOPHYAINCP)HEALPixUtils.h \ 77 $(SOPHYAINCP)localmap.h \ 78 $(SOPHYAINCP)sphereecp.h \ 79 $(SOPHYAINCP)fiospherethetaphi.h \ 80 $(SOPHYAINCP)fiospherehealpix.h \ 81 $(SOPHYAINCP)fiolocalmap.h \ 82 $(SOPHYAINCP)fiosphereecp.h \ 83 $(SOPHYAINCP)samba.h \ 84 $(SOPHYAINCP)alm.h \ 85 $(SOPHYAINCP)nbrandom.h \ 86 $(SOPHYAINCP)srandgen.h \ 87 $(SOPHYAINCP)triangmtx.h \ 88 $(SOPHYAINCP)bruit.h \ 89 $(SOPHYAINCP)circle.h \ 90 $(SOPHYAINCP)geometry.h \ 91 $(SOPHYAINCP)lambdaBuilder.h \ 92 $(SOPHYAINCP)misstime.h \ 93 $(SOPHYAINCP)mlobe.h \ 94 $(SOPHYAINCP)prefcount.h \ 95 $(SOPHYAINCP)scan.h \ 96 $(SOPHYAINCP)sphericaltransformserver.h \ 97 $(SOPHYAINCP)fftservintf.h \ 98 $(SOPHYAINCP)fftpserver.h \ 99 $(SOPHYAINCP)tod.h \ 100 $(SOPHYAINCP)sambainit.h \ 101 $(SOPHYAINCP)skymapinit.h \ 102 $(SOPHYAINCP)sophyainit.h \ 103 $(SOPHYAINCP)ntoolsinit.h \ 104 $(SOPHYAINCP)tarrinit.h \ 105 $(SOPHYAINCP)fitsspherehealpix.h \ 106 $(SOPHYAINCP)fitsfile.h \ 107 $(SOPHYAINCP)FitsIO/fitsio.h \ 108 $(SOPHYAINCP)FitsIO/longnam.h \ 109 $(SOPHYAINCP)fitstarray.h 110 $(CXXCOMPILE) -o $@ $< 111 112 $(SOPHYAOBJP)cremskfrsph.o: cremskfrsph.cc \ 113 $(SOPHYAINCP)sopnamsp.h \ 114 $(SOPHYAINCP)machdefs.h \ 115 $(SOPHYAINCP)skymapinit.h \ 116 $(SOPHYAINCP)sophyainit.h \ 117 $(SOPHYAINCP)skymap.h \ 118 $(SOPHYAINCP)spherethetaphi.h \ 119 $(SOPHYAINCP)sphericalmap.h \ 120 $(SOPHYAINCP)smathconst.h \ 121 $(SOPHYAINCP)pixelmap.h \ 122 $(SOPHYAINCP)ppersist.h \ 123 $(SOPHYAINCP)pexceptions.h \ 124 $(SOPHYAINCP)gnumd5.h \ 125 $(SOPHYAINCP)ppfbinstream.h \ 126 $(SOPHYAINCP)rawstream.h \ 127 $(SOPHYAINCP)ppfnametag.h \ 128 $(SOPHYAINCP)dvlist.h \ 129 $(SOPHYAINCP)objfio.h \ 130 $(SOPHYAINCP)anydataobj.h \ 131 $(SOPHYAINCP)mutyv.h \ 132 $(SOPHYAINCP)spherepos.h \ 133 $(SOPHYAINCP)unitvector.h \ 134 $(SOPHYAINCP)vector3d.h \ 135 $(SOPHYAINCP)longlat.h \ 136 $(SOPHYAINCP)utilgeom.h \ 137 $(SOPHYAINCP)tvector.h \ 138 $(SOPHYAINCP)tmatrix.h \ 139 $(SOPHYAINCP)tarray.h \ 140 $(SOPHYAINCP)basarr.h \ 141 $(SOPHYAINCP)ndatablock.h \ 142 $(SOPHYAINCP)utilarr.h \ 143 $(SOPHYAINCP)spherehealpix.h \ 144 $(SOPHYAINCP)HEALPixUtils.h \ 145 $(SOPHYAINCP)localmap.h \ 146 $(SOPHYAINCP)sphereecp.h \ 147 $(SOPHYAINCP)fiospherethetaphi.h \ 148 $(SOPHYAINCP)fiospherehealpix.h \ 149 $(SOPHYAINCP)fiolocalmap.h \ 150 $(SOPHYAINCP)fiosphereecp.h \ 151 $(SOPHYAINCP)fitsspherehealpix.h \ 152 $(SOPHYAINCP)fitsfile.h \ 153 $(SOPHYAINCP)FitsIO/fitsio.h \ 154 $(SOPHYAINCP)FitsIO/longnam.h 155 $(CXXCOMPILE) -o $@ $< 156 157 $(SOPHYAOBJP)extrap2sph.o: extrap2sph.cc \ 158 $(SOPHYAINCP)sopnamsp.h \ 159 $(SOPHYAINCP)machdefs.h \ 160 $(SOPHYAINCP)skymapinit.h \ 161 $(SOPHYAINCP)sophyainit.h \ 162 $(SOPHYAINCP)skymap.h \ 163 $(SOPHYAINCP)spherethetaphi.h \ 164 $(SOPHYAINCP)sphericalmap.h \ 165 $(SOPHYAINCP)smathconst.h \ 166 $(SOPHYAINCP)pixelmap.h \ 167 $(SOPHYAINCP)ppersist.h \ 168 $(SOPHYAINCP)pexceptions.h \ 169 $(SOPHYAINCP)gnumd5.h \ 170 $(SOPHYAINCP)ppfbinstream.h \ 171 $(SOPHYAINCP)rawstream.h \ 172 $(SOPHYAINCP)ppfnametag.h \ 173 $(SOPHYAINCP)dvlist.h \ 174 $(SOPHYAINCP)objfio.h \ 175 $(SOPHYAINCP)anydataobj.h \ 176 $(SOPHYAINCP)mutyv.h \ 177 $(SOPHYAINCP)spherepos.h \ 178 $(SOPHYAINCP)unitvector.h \ 179 $(SOPHYAINCP)vector3d.h \ 180 $(SOPHYAINCP)longlat.h \ 181 $(SOPHYAINCP)utilgeom.h \ 182 $(SOPHYAINCP)tvector.h \ 183 $(SOPHYAINCP)tmatrix.h \ 184 $(SOPHYAINCP)tarray.h \ 185 $(SOPHYAINCP)basarr.h \ 186 $(SOPHYAINCP)ndatablock.h \ 187 $(SOPHYAINCP)utilarr.h \ 188 $(SOPHYAINCP)spherehealpix.h \ 189 $(SOPHYAINCP)HEALPixUtils.h \ 190 $(SOPHYAINCP)localmap.h \ 191 $(SOPHYAINCP)sphereecp.h \ 192 $(SOPHYAINCP)fiospherethetaphi.h \ 193 $(SOPHYAINCP)fiospherehealpix.h \ 194 $(SOPHYAINCP)fiolocalmap.h \ 195 $(SOPHYAINCP)fiosphereecp.h \ 196 $(SOPHYAINCP)fitsspherehealpix.h \ 197 $(SOPHYAINCP)fitsfile.h \ 198 $(SOPHYAINCP)FitsIO/fitsio.h \ 199 $(SOPHYAINCP)FitsIO/longnam.h 200 $(CXXCOMPILE) -o $@ $< 201 202 $(SOPHYAOBJP)extrapsph.o: extrapsph.cc \ 203 $(SOPHYAINCP)sopnamsp.h \ 204 $(SOPHYAINCP)machdefs.h \ 205 $(SOPHYAINCP)skymapinit.h \ 206 $(SOPHYAINCP)sophyainit.h \ 207 $(SOPHYAINCP)skymap.h \ 208 $(SOPHYAINCP)spherethetaphi.h \ 209 $(SOPHYAINCP)sphericalmap.h \ 210 $(SOPHYAINCP)smathconst.h \ 211 $(SOPHYAINCP)pixelmap.h \ 212 $(SOPHYAINCP)ppersist.h \ 213 $(SOPHYAINCP)pexceptions.h \ 214 $(SOPHYAINCP)gnumd5.h \ 215 $(SOPHYAINCP)ppfbinstream.h \ 216 $(SOPHYAINCP)rawstream.h \ 217 $(SOPHYAINCP)ppfnametag.h \ 218 $(SOPHYAINCP)dvlist.h \ 219 $(SOPHYAINCP)objfio.h \ 220 $(SOPHYAINCP)anydataobj.h \ 221 $(SOPHYAINCP)mutyv.h \ 222 $(SOPHYAINCP)spherepos.h \ 223 $(SOPHYAINCP)unitvector.h \ 224 $(SOPHYAINCP)vector3d.h \ 225 $(SOPHYAINCP)longlat.h \ 226 $(SOPHYAINCP)utilgeom.h \ 227 $(SOPHYAINCP)tvector.h \ 228 $(SOPHYAINCP)tmatrix.h \ 229 $(SOPHYAINCP)tarray.h \ 230 $(SOPHYAINCP)basarr.h \ 231 $(SOPHYAINCP)ndatablock.h \ 232 $(SOPHYAINCP)utilarr.h \ 233 $(SOPHYAINCP)spherehealpix.h \ 234 $(SOPHYAINCP)HEALPixUtils.h \ 235 $(SOPHYAINCP)localmap.h \ 236 $(SOPHYAINCP)sphereecp.h \ 237 $(SOPHYAINCP)fiospherethetaphi.h \ 238 $(SOPHYAINCP)fiospherehealpix.h \ 239 $(SOPHYAINCP)fiolocalmap.h \ 240 $(SOPHYAINCP)fiosphereecp.h \ 241 $(SOPHYAINCP)fitsspherehealpix.h \ 242 $(SOPHYAINCP)fitsfile.h \ 243 $(SOPHYAINCP)FitsIO/fitsio.h \ 244 $(SOPHYAINCP)FitsIO/longnam.h 245 $(CXXCOMPILE) -o $@ $< 246 247 $(SOPHYAOBJP)map2cl.o: map2cl.cc $(SOPHYAINCP)sopnamsp.h \ 248 $(SOPHYAINCP)machdefs.h \ 249 $(SOPHYAINCP)nbmath.h \ 250 $(SOPHYAINCP)smathconst.h \ 251 $(SOPHYAINCP)timing.h \ 252 $(SOPHYAINCP)array.h \ 253 $(SOPHYAINCP)tarray.h \ 254 $(SOPHYAINCP)basarr.h \ 255 $(SOPHYAINCP)anydataobj.h \ 256 $(SOPHYAINCP)mutyv.h \ 257 $(SOPHYAINCP)dvlist.h \ 258 $(SOPHYAINCP)objfio.h \ 259 $(SOPHYAINCP)ppersist.h \ 260 $(SOPHYAINCP)pexceptions.h \ 261 $(SOPHYAINCP)gnumd5.h \ 262 $(SOPHYAINCP)ppfbinstream.h \ 263 $(SOPHYAINCP)rawstream.h \ 264 $(SOPHYAINCP)ppfnametag.h \ 265 $(SOPHYAINCP)ndatablock.h \ 266 $(SOPHYAINCP)utilarr.h \ 267 $(SOPHYAINCP)tmatrix.h \ 268 $(SOPHYAINCP)tvector.h \ 269 $(SOPHYAINCP)matharr.h \ 270 $(SOPHYAINCP)fioarr.h \ 271 $(SOPHYAINCP)sopemtx.h \ 272 $(SOPHYAINCP)skymap.h \ 273 $(SOPHYAINCP)spherethetaphi.h \ 274 $(SOPHYAINCP)sphericalmap.h \ 275 $(SOPHYAINCP)pixelmap.h \ 276 $(SOPHYAINCP)spherepos.h \ 277 $(SOPHYAINCP)unitvector.h \ 278 $(SOPHYAINCP)vector3d.h \ 279 $(SOPHYAINCP)longlat.h \ 280 $(SOPHYAINCP)utilgeom.h \ 281 $(SOPHYAINCP)spherehealpix.h \ 282 $(SOPHYAINCP)HEALPixUtils.h \ 283 $(SOPHYAINCP)localmap.h \ 284 $(SOPHYAINCP)sphereecp.h \ 285 $(SOPHYAINCP)fiospherethetaphi.h \ 286 $(SOPHYAINCP)fiospherehealpix.h \ 287 $(SOPHYAINCP)fiolocalmap.h \ 288 $(SOPHYAINCP)fiosphereecp.h \ 289 $(SOPHYAINCP)samba.h \ 290 $(SOPHYAINCP)alm.h \ 291 $(SOPHYAINCP)nbrandom.h \ 292 $(SOPHYAINCP)srandgen.h \ 293 $(SOPHYAINCP)triangmtx.h \ 294 $(SOPHYAINCP)bruit.h \ 295 $(SOPHYAINCP)circle.h \ 296 $(SOPHYAINCP)geometry.h \ 297 $(SOPHYAINCP)lambdaBuilder.h \ 298 $(SOPHYAINCP)misstime.h \ 299 $(SOPHYAINCP)mlobe.h \ 300 $(SOPHYAINCP)prefcount.h \ 301 $(SOPHYAINCP)scan.h \ 302 $(SOPHYAINCP)sphericaltransformserver.h \ 303 $(SOPHYAINCP)fftservintf.h \ 304 $(SOPHYAINCP)fftpserver.h \ 305 $(SOPHYAINCP)tod.h \ 306 $(SOPHYAINCP)sambainit.h \ 307 $(SOPHYAINCP)skymapinit.h \ 308 $(SOPHYAINCP)sophyainit.h \ 309 $(SOPHYAINCP)ntoolsinit.h \ 310 $(SOPHYAINCP)tarrinit.h \ 311 $(SOPHYAINCP)fitsspherehealpix.h \ 312 $(SOPHYAINCP)fitsfile.h \ 313 $(SOPHYAINCP)FitsIO/fitsio.h \ 314 $(SOPHYAINCP)FitsIO/longnam.h \ 315 $(SOPHYAINCP)fitstarray.h 316 $(CXXCOMPILE) -o $@ $< 317 318 $(SOPHYAOBJP)prjsmap.o: prjsmap.cc \ 319 $(SOPHYAINCP)sopnamsp.h \ 320 $(SOPHYAINCP)machdefs.h \ 321 $(SOPHYAINCP)nbmath.h \ 322 $(SOPHYAINCP)smathconst.h \ 323 $(SOPHYAINCP)timing.h \ 324 $(SOPHYAINCP)array.h \ 325 $(SOPHYAINCP)tarray.h \ 326 $(SOPHYAINCP)basarr.h \ 327 $(SOPHYAINCP)anydataobj.h \ 328 $(SOPHYAINCP)mutyv.h \ 329 $(SOPHYAINCP)dvlist.h \ 330 $(SOPHYAINCP)objfio.h \ 331 $(SOPHYAINCP)ppersist.h \ 332 $(SOPHYAINCP)pexceptions.h \ 333 $(SOPHYAINCP)gnumd5.h \ 334 $(SOPHYAINCP)ppfbinstream.h \ 335 $(SOPHYAINCP)rawstream.h \ 336 $(SOPHYAINCP)ppfnametag.h \ 337 $(SOPHYAINCP)ndatablock.h \ 338 $(SOPHYAINCP)utilarr.h \ 339 $(SOPHYAINCP)tmatrix.h \ 340 $(SOPHYAINCP)tvector.h \ 341 $(SOPHYAINCP)matharr.h \ 342 $(SOPHYAINCP)fioarr.h \ 343 $(SOPHYAINCP)sopemtx.h \ 344 $(SOPHYAINCP)skymap.h \ 345 $(SOPHYAINCP)spherethetaphi.h \ 346 $(SOPHYAINCP)sphericalmap.h \ 347 $(SOPHYAINCP)pixelmap.h \ 348 $(SOPHYAINCP)spherepos.h \ 349 $(SOPHYAINCP)unitvector.h \ 350 $(SOPHYAINCP)vector3d.h \ 351 $(SOPHYAINCP)longlat.h \ 352 $(SOPHYAINCP)utilgeom.h \ 353 $(SOPHYAINCP)spherehealpix.h \ 354 $(SOPHYAINCP)HEALPixUtils.h \ 355 $(SOPHYAINCP)localmap.h \ 356 $(SOPHYAINCP)sphereecp.h \ 357 $(SOPHYAINCP)fiospherethetaphi.h \ 358 $(SOPHYAINCP)fiospherehealpix.h \ 359 $(SOPHYAINCP)fiolocalmap.h \ 360 $(SOPHYAINCP)fiosphereecp.h \ 361 $(SOPHYAINCP)samba.h \ 362 $(SOPHYAINCP)alm.h \ 363 $(SOPHYAINCP)nbrandom.h \ 364 $(SOPHYAINCP)srandgen.h \ 365 $(SOPHYAINCP)triangmtx.h \ 366 $(SOPHYAINCP)bruit.h \ 367 $(SOPHYAINCP)circle.h \ 368 $(SOPHYAINCP)geometry.h \ 369 $(SOPHYAINCP)lambdaBuilder.h \ 370 $(SOPHYAINCP)misstime.h \ 371 $(SOPHYAINCP)mlobe.h \ 372 $(SOPHYAINCP)prefcount.h \ 373 $(SOPHYAINCP)scan.h \ 374 $(SOPHYAINCP)sphericaltransformserver.h \ 375 $(SOPHYAINCP)fftservintf.h \ 376 $(SOPHYAINCP)fftpserver.h \ 377 $(SOPHYAINCP)tod.h \ 378 $(SOPHYAINCP)sambainit.h \ 379 $(SOPHYAINCP)skymapinit.h \ 380 $(SOPHYAINCP)sophyainit.h \ 381 $(SOPHYAINCP)ntoolsinit.h \ 382 $(SOPHYAINCP)tarrinit.h \ 383 $(SOPHYAINCP)fitsspherehealpix.h \ 384 $(SOPHYAINCP)fitsfile.h \ 385 $(SOPHYAINCP)FitsIO/fitsio.h \ 386 $(SOPHYAINCP)FitsIO/longnam.h \ 387 $(SOPHYAINCP)fitstarray.h 388 $(CXXCOMPILE) -o $@ $< 389
Note:
See TracChangeset
for help on using the changeset viewer.