|
Last change
on this file since 1421 was 1331, checked in by ansari, 25 years ago |
|
oubli de scanfits ds programs , Reza 14/11/2000
|
|
File size:
3.9 KB
|
| Rev | Line | |
|---|
| [1306] | 1 | MODULECXXREPNAME := PrgUtil
|
|---|
| 2 | include ../Mgr/Makefile.h
|
|---|
| 3 |
|
|---|
| 4 | ifdef NOSHLIB
|
|---|
| 5 | LIBF = $(LIB)libTArray.a $(LIB)libSysTools.a $(LIB)libNTools.a $(LIB)libSkyMap.a $(LIB)libSamba.a $(LIB)libSkyT.a $(LIB)lib.a $(LIB)lib.a
|
|---|
| 6 | LIBS = -L$(LIB) -lTArray -lSysTools -lNTools -lSkyMap -lSamba -lSkyT -l -l -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 | ifdef ORACLE_HOME
|
|---|
| 17 | LIBSORA := -L$(LIB) -lDb++ $(LIBS) -lErosDb -L$(ORACLE_HOME)/lib -lclntsh
|
|---|
| 18 | endif
|
|---|
| 19 | LDLIBS := $(LIBS) $(LDLIBS)
|
|---|
| [1331] | 20 | PROGS = $(EXE)runcxx $(EXE)scanppf $(EXE)scanfits
|
|---|
| [1306] | 21 |
|
|---|
| 22 | all: $(PROGS)
|
|---|
| 23 |
|
|---|
| 24 | clean:
|
|---|
| 25 | rm -f $(PROGS)
|
|---|
| 26 | if [ -d $(OBJ)cxxrep_PrgUtil ] ; then cd $(OBJ)cxxrep_PrgUtil ; rm -f *.o ; fi
|
|---|
| 27 |
|
|---|
| 28 | runcxx: $(EXE)runcxx
|
|---|
| 29 |
|
|---|
| 30 | $(EXE)runcxx: $(OBJ)runcxx.o
|
|---|
| 31 | $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
|---|
| 32 |
|
|---|
| 33 | scanppf: $(EXE)scanppf
|
|---|
| 34 |
|
|---|
| 35 | $(EXE)scanppf: $(OBJ)scanppf.o
|
|---|
| 36 | $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
|---|
| 37 |
|
|---|
| 38 | scanfits: $(EXE)scanfits
|
|---|
| 39 |
|
|---|
| 40 | $(EXE)scanfits: $(OBJ)scanfits.o
|
|---|
| 41 | $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@
|
|---|
| 42 |
|
|---|
| [1331] | 43 | $(OBJ)acxxrun.o: acxxrun.cc $(INC)machdefs.h \
|
|---|
| 44 | $(INC)systools.h \
|
|---|
| 45 | $(INC)sophyainit.h \
|
|---|
| 46 | $(INC)ppersist.h \
|
|---|
| 47 | $(INC)pexceptions.h \
|
|---|
| 48 | $(INC)gnumd5.h \
|
|---|
| 49 | $(INC)ndatablock.h \
|
|---|
| 50 | $(INC)anydataobj.h \
|
|---|
| 51 | $(INC)dvlist.h \
|
|---|
| 52 | $(INC)objfio.h \
|
|---|
| 53 | $(INC)mutyv.h \
|
|---|
| 54 | $(INC)pdlmgr.h \
|
|---|
| 55 | $(INC)perrors.h \
|
|---|
| 56 | $(INC)srandgen.h \
|
|---|
| 57 | $(INC)strutil.h \
|
|---|
| 58 | $(INC)ctimer.h \
|
|---|
| 59 | $(INC)timing.h \
|
|---|
| 60 | $(INC)ntools.h \
|
|---|
| 61 | $(INC)ntoolsinit.h \
|
|---|
| 62 | $(INC)tarrinit.h \
|
|---|
| 63 | $(INC)nbconst.h \
|
|---|
| 64 | $(INC)fmath.h \
|
|---|
| 65 | $(INC)nbrandom.h \
|
|---|
| 66 | $(INC)perandom.h \
|
|---|
| 67 | $(INC)histos.h \
|
|---|
| 68 | $(INC)peida.h \
|
|---|
| 69 | $(INC)utils.h \
|
|---|
| 70 | $(INC)tvector.h \
|
|---|
| 71 | $(INC)tmatrix.h \
|
|---|
| 72 | $(INC)tarray.h \
|
|---|
| 73 | $(INC)basarr.h \
|
|---|
| 74 | $(INC)utilarr.h \
|
|---|
| 75 | $(INC)nbtri.h \
|
|---|
| 76 | $(INC)linfit.h \
|
|---|
| 77 | $(INC)sopemtx.h \
|
|---|
| 78 | $(INC)poly.h \
|
|---|
| 79 | $(INC)datatypes.h \
|
|---|
| 80 | $(INC)cimage.h \
|
|---|
| 81 | $(INC)fioarr.h \
|
|---|
| 82 | $(INC)dynccd.h \
|
|---|
| 83 | $(INC)generaldata.h \
|
|---|
| 84 | $(INC)ntupintf.h \
|
|---|
| 85 | $(INC)generalfit.h \
|
|---|
| 86 | $(INC)fct1dfit.h \
|
|---|
| 87 | $(INC)fct2dfit.h \
|
|---|
| 88 | $(INC)objfitter.h \
|
|---|
| 89 | $(INC)histos2.h \
|
|---|
| 90 | $(INC)hisprof.h \
|
|---|
| 91 | $(INC)fftpserver.h \
|
|---|
| 92 | $(INC)fftservintf.h \
|
|---|
| 93 | $(INC)array.h \
|
|---|
| 94 | $(INC)matharr.h \
|
|---|
| 95 | $(INC)histats.h \
|
|---|
| 96 | $(INC)histinit.h \
|
|---|
| 97 | $(INC)ntuple.h \
|
|---|
| 98 | $(INC)xntuple.h \
|
|---|
| 99 | $(INC)skymap.h \
|
|---|
| 100 | $(INC)spherethetaphi.h \
|
|---|
| 101 | $(INC)sphericalmap.h \
|
|---|
| 102 | $(INC)smathconst.h \
|
|---|
| 103 | $(INC)pixelmap.h \
|
|---|
| 104 | $(INC)spherepos.h \
|
|---|
| 105 | $(INC)unitvector.h \
|
|---|
| 106 | $(INC)vector3d.h \
|
|---|
| 107 | $(INC)longlat.h \
|
|---|
| 108 | $(INC)utilgeom.h \
|
|---|
| 109 | $(INC)spherehealpix.h \
|
|---|
| 110 | $(INC)HEALPixUtils.h \
|
|---|
| 111 | $(INC)localmap.h \
|
|---|
| 112 | $(INC)fiospherethetaphi.h \
|
|---|
| 113 | $(INC)fiospherehealpix.h \
|
|---|
| 114 | $(INC)fiolocalmap.h \
|
|---|
| 115 | $(INC)samba.h \
|
|---|
| 116 | $(INC)alm.h \
|
|---|
| 117 | $(INC)nbmath.h \
|
|---|
| 118 | $(INC)triangmtx.h \
|
|---|
| 119 | $(INC)bruit.h \
|
|---|
| 120 | $(INC)circle.h \
|
|---|
| 121 | $(INC)geometry.h \
|
|---|
| 122 | $(INC)lambdaBuilder.h \
|
|---|
| 123 | $(INC)misstime.h \
|
|---|
| 124 | $(INC)mlobe.h \
|
|---|
| 125 | $(INC)prefcount.h \
|
|---|
| 126 | $(INC)scan.h \
|
|---|
| 127 | $(INC)sphericaltransformserver.h \
|
|---|
| 128 | $(INC)tod.h \
|
|---|
| 129 | $(INC)skyt.h \
|
|---|
| 130 | $(INC)convtools.h \
|
|---|
| 131 | $(INC)radspecvector.h \
|
|---|
| 132 | $(INC)radspec.h \
|
|---|
| 133 | $(INC)specresp.h \
|
|---|
| 134 | $(INC)blackbody.h \
|
|---|
| 135 | $(INC)derivblackbody.h \
|
|---|
| 136 | $(INC)nupower.h \
|
|---|
| 137 | $(INC)specrespvector.h \
|
|---|
| 138 | $(INC)squarefilt.h \
|
|---|
| 139 | $(INC)trianglefilt.h \
|
|---|
| 140 | $(INC)gaussfilt.h tst.icc
|
|---|
| [1306] | 141 | $(OBJ)runcxx.o: runcxx.cc $(INC)sambainit.h \
|
|---|
| 142 | $(INC)skymapinit.h \
|
|---|
| 143 | $(INC)sophyainit.h \
|
|---|
| 144 | $(INC)machdefs.h \
|
|---|
| 145 | $(INC)ntoolsinit.h \
|
|---|
| 146 | $(INC)tarrinit.h \
|
|---|
| 147 | $(INC)skyinit.h \
|
|---|
| 148 | $(INC)pexceptions.h \
|
|---|
| 149 | $(INC)cxxcmplnk.h \
|
|---|
| 150 | $(INC)pdlmgr.h \
|
|---|
| 151 | $(INC)timing.h
|
|---|
| 152 | $(OBJ)scanfits.o: scanfits.cc $(INC)histinit.h \
|
|---|
| 153 | $(INC)ntoolsinit.h \
|
|---|
| 154 | $(INC)tarrinit.h \
|
|---|
| 155 | $(INC)sophyainit.h \
|
|---|
| 156 | $(INC)machdefs.h \
|
|---|
| 157 | $(INC)dvlist.h \
|
|---|
| 158 | $(INC)objfio.h \
|
|---|
| 159 | $(INC)anydataobj.h \
|
|---|
| 160 | $(INC)ppersist.h \
|
|---|
| 161 | $(INC)pexceptions.h \
|
|---|
| 162 | $(INC)gnumd5.h \
|
|---|
| 163 | $(INC)mutyv.h \
|
|---|
| 164 | $(INC)ntuple.h \
|
|---|
| 165 | $(INC)ntupintf.h \
|
|---|
| 166 | $(INC)xntuple.h \
|
|---|
| 167 | $(INC)fitsxntuple.h \
|
|---|
| 168 | $(INC)fitsfile.h \
|
|---|
| 169 | $(INC)ndatablock.h \
|
|---|
| 170 | $(INC)fitsntuple.h
|
|---|
| 171 | $(OBJ)scanppf.o: scanppf.cc $(INC)ppersist.h \
|
|---|
| 172 | $(INC)machdefs.h \
|
|---|
| 173 | $(INC)pexceptions.h \
|
|---|
| 174 | $(INC)gnumd5.h \
|
|---|
| 175 | $(INC)anydataobj.h \
|
|---|
| 176 | $(INC)sambainit.h \
|
|---|
| 177 | $(INC)skymapinit.h \
|
|---|
| 178 | $(INC)sophyainit.h \
|
|---|
| 179 | $(INC)ntoolsinit.h \
|
|---|
| 180 | $(INC)tarrinit.h
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.