- Timestamp:
- May 20, 2005, 9:57:11 AM (20 years ago)
- Location:
- trunk
- Files:
-
- 30 added
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/IFFTW/Makefile
r1837 r2743 1 include ../ Mgr/Makefile.h1 include ../BuildMgr/sophyamake.inc 2 2 3 all: $(LIB)libIFFTW.a 3 all: $(SOPHYALIBP)libIFFTW.a 4 4 5 clean: 5 rm -f $(OBJ)fftwserver.o 6 rm -f $(LIB)libIFFTW.a 7 $(LIB)libIFFTW.a : $(OBJ)fftwserver.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 6 rm -f $(SOPHYAOBJP)fftwserver.o 7 rm -f $(SOPHYALIBP)libIFFTW.a 12 8 13 $(OBJ)fftwserver.o: fftwserver.cc fftwserver.h \ 14 $(INC)machdefs.h \ 15 $(INC)fftservintf.h \ 16 $(INC)pexceptions.h \ 17 $(INC)tmatrix.h \ 18 $(INC)tarray.h \ 19 $(INC)basarr.h \ 20 $(INC)anydataobj.h \ 21 $(INC)mutyv.h \ 22 $(INC)dvlist.h \ 23 $(INC)objfio.h \ 24 $(INC)ppersist.h \ 25 $(INC)gnumd5.h \ 26 $(INC)ndatablock.h \ 27 $(INC)utilarr.h \ 28 $(INC)tvector.h \ 29 $(EXTINCPATH)FFTW/fftw.h \ 30 $(EXTINCPATH)FFTW/rfftw.h 9 $(SOPHYALIBP)libIFFTW.a : $(SOPHYAOBJP)fftwserver.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)fftwserver.o: fftwserver.cc \ 13 $(SOPHYAINCP)sopnamsp.h fftwserver.h \ 14 $(SOPHYAINCP)machdefs.h \ 15 $(SOPHYAINCP)fftservintf.h \ 16 $(SOPHYAINCP)pexceptions.h \ 17 $(SOPHYAINCP)tmatrix.h \ 18 $(SOPHYAINCP)tarray.h \ 19 $(SOPHYAINCP)basarr.h \ 20 $(SOPHYAINCP)anydataobj.h \ 21 $(SOPHYAINCP)mutyv.h \ 22 $(SOPHYAINCP)dvlist.h \ 23 $(SOPHYAINCP)objfio.h \ 24 $(SOPHYAINCP)ppersist.h \ 25 $(SOPHYAINCP)gnumd5.h \ 26 $(SOPHYAINCP)ppfbinstream.h \ 27 $(SOPHYAINCP)rawstream.h \ 28 $(SOPHYAINCP)ppfnametag.h \ 29 $(SOPHYAINCP)ndatablock.h \ 30 $(SOPHYAINCP)utilarr.h \ 31 $(SOPHYAINCP)tvector.h \ 32 $(SOPHYAINCP)FFTW/fftw.h \ 33 $(SOPHYAINCP)FFTW/rfftw.h 34 $(CXXCOMPILE) -o $@ $< 35 -
trunk/SophyaExt/LinAlg/Makefile
r1837 r2743 1 include ../ Mgr/Makefile.h1 include ../BuildMgr/sophyamake.inc 2 2 3 all: $(LIB)libLinAlg.a 3 all: $(SOPHYALIBP)libLinAlg.a 4 4 5 clean: 5 rm -f $(OBJ)intflapack.o 6 rm -f $(LIB)libLinAlg.a 7 $(LIB)libLinAlg.a : $(OBJ)intflapack.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 6 rm -f $(SOPHYAOBJP)intflapack.o 7 rm -f $(SOPHYALIBP)libLinAlg.a 12 8 13 $(OBJ)intflapack.o: intflapack.cc intflapack.h \ 14 $(INC)machdefs.h \ 15 $(INC)tarray.h \ 16 $(INC)basarr.h \ 17 $(INC)anydataobj.h \ 18 $(INC)mutyv.h \ 19 $(INC)dvlist.h \ 20 $(INC)objfio.h \ 21 $(INC)ppersist.h \ 22 $(INC)pexceptions.h \ 23 $(INC)gnumd5.h \ 24 $(INC)ndatablock.h \ 25 $(INC)utilarr.h \ 26 $(INC)tvector.h \ 27 $(INC)tmatrix.h 9 $(SOPHYALIBP)libLinAlg.a : $(SOPHYAOBJP)intflapack.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)intflapack.o: intflapack.cc \ 13 $(SOPHYAINCP)sopnamsp.h intflapack.h \ 14 $(SOPHYAINCP)machdefs.h \ 15 $(SOPHYAINCP)tarray.h \ 16 $(SOPHYAINCP)basarr.h \ 17 $(SOPHYAINCP)anydataobj.h \ 18 $(SOPHYAINCP)mutyv.h \ 19 $(SOPHYAINCP)dvlist.h \ 20 $(SOPHYAINCP)objfio.h \ 21 $(SOPHYAINCP)ppersist.h \ 22 $(SOPHYAINCP)pexceptions.h \ 23 $(SOPHYAINCP)gnumd5.h \ 24 $(SOPHYAINCP)ppfbinstream.h \ 25 $(SOPHYAINCP)rawstream.h \ 26 $(SOPHYAINCP)ppfnametag.h \ 27 $(SOPHYAINCP)ndatablock.h \ 28 $(SOPHYAINCP)utilarr.h \ 29 $(SOPHYAINCP)tvector.h \ 30 $(SOPHYAINCP)tmatrix.h 31 $(CXXCOMPILE) -o $@ $< 32 -
trunk/SophyaExt/MinuitAdapt/Makefile
r2404 r2743 1 MODULECXXREPNAME := MinuitAdapt 2 MODULEDECCXXFLAGS := -msg_quiet 3 include ../Mgr/Makefile.h 1 include ../BuildMgr/sophyamake.inc 4 2 5 CFLAGS := $(CFLAGS) -Df2cFortran6 3 CPPFLAGS := $(CPPFLAGS) -Df2cFortran 7 4 CXXFLAGS := $(CXXFLAGS) -Df2cFortran 8 5 9 all: $( LIB)libMinuitAdapt.a6 all: $(SOPHYALIBP)libMinuitAdapt.a 10 7 11 clean: cleantest 12 rm -f $(OBJ)minuitadapt.o $(OBJ)minuitadaptF.o 13 rm -f $(LIB)libMinuitAdapt.a 14 15 cleantest: 8 clean: 9 rm -f $(SOPHYAOBJP)minuitadapt.o $(SOPHYAOBJP)minuitadaptF.o 10 rm -f $(SOPHYALIBP)libMinuitAdapt.a 16 11 rm -f testminuit testminuit.o 17 18 # Doit etre fait automatiquement par mkmflien19 install:20 cp localmnpout.h minuitprot.h minuitadapt.h $(INC)/.21 22 #----------------------------------------------------------------------23 $(LIB)libMinuitAdapt.a : $(OBJ)minuitadapt.o $(OBJ)minuitadaptF.o24 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS))25 ifeq ($(CXX),cxx)26 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf27 endif28 29 $(OBJ)minuitadaptF.o: minuitadaptF.f30 $(OBJ)minuitadapt.o: minuitadapt.cc minuitadapt.h minuitprot.h31 32 #----------------------------------------------------------------------33 ifdef NOSHLIB34 LIBS = -L$(LIB) -lFitsIOServer -lSamba -lSkyMap -lSkyT -lNTools -lHiStats -lTArray -lSysTools -lm35 ifeq ($(CXX),cxx)36 LIBS := $(LIBS) -lertcxx37 endif38 else39 LIBS = -L$(SLB) -lsophya -lextsophya -lm40 endif41 LIBMINUIT := -L$(LIB) -lMinuitAdapt -L$(EXTLIBPATH) -lminuit42 LDLIBS := $(LIBS) $(LDLIBS) $(LIBMINUIT) $(LIBFORT)43 12 44 13 test: testminuit 45 14 15 16 $(SOPHYALIBP)libMinuitAdapt.a : $(SOPHYAOBJP)minuitadapt.o $(SOPHYAOBJP)minuitadaptF.o 17 $(AR) $(ARFLAGS) $@ $? 18 19 $(SOPHYAOBJP)minuitadapt.o: minuitadapt.cc minuitadapt.h minuitprot.h 20 $(CXXCOMPILE) -o $@ $< 21 22 $(SOPHYAOBJP)minuitadaptF.o: minuitadaptF.f 23 $(FCCOMPILE) -o $@ $< 24 46 25 testminuit: testminuit.o 47 $( LINK.cc) $^ -o $@ $(LOADLIBES) $(LDLIBS)48 $(OBJ)testminuit.o: testminuit.cc26 $(CXXLINK) $^ -o $@ $(SOPHYAEXTSLBLIST) 27 testminuit.o: testminuit.cc -
trunk/SophyaExt/MinuitAdapt/minuitadapt.cc
r2615 r2743 3 3 #include <stdio.h> 4 4 #include <stdlib.h> 5 #include <iostream .h>5 #include <iostream> 6 6 #include <string.h> 7 7 #include <string> -
trunk/SophyaExt/MinuitAdapt/testminuit.cc
r2615 r2743 5 5 #include <stdlib.h> 6 6 #include <stdio.h> 7 #include <iostream .h>7 #include <iostream> 8 8 #include <math.h> 9 9 #include <string.h> -
trunk/SophyaExt/XAstroPack/Makefile
r2552 r2743 1 include ../Mgr/Makefile.h 1 include ../BuildMgr/sophyamake.inc 2 3 all: $(SOPHYALIBP)libXAstroPack.a 4 5 clean: cleantest 6 rm -f $(SOPHYAOBJP)mollweide.o $(SOPHYAOBJP)tstxastro.o \ 7 $(SOPHYAOBJP)xastropack.o $(SOPHYAOBJP)magfield.o 8 rm -f $(SOPHYALIBP)libXAstroPack.a 9 10 cleantest: 11 rm -f *.o tstxastro tstmollweide mollw.data mollw2.data 12 13 $(SOPHYALIBP)libXAstroPack.a : $(SOPHYAOBJP)magfield.o \ 14 $(SOPHYAOBJP)mollweide.o $(SOPHYAOBJP)xastropack.o 15 $(AR) $(ARFLAGS) $@ $? 2 16 3 all: $(LIB)libXAstroPack.a 4 clean: 5 rm -f $(OBJ)mollweide.o $(OBJ)tstxastro.o $(OBJ)xastropack.o $(OBJ)magfield.o 6 rm -f $(LIB)libXAstroPack.a 7 $(LIB)libXAstroPack.a : $(OBJ)magfield.o $(OBJ)mollweide.o $(OBJ)xastropack.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 12 13 $(OBJ)mollweide.o: mollweide.cc mollweide.h 14 $(OBJ)xastropack.o: xastropack.cc xastropack.h \ 15 $(INC)machdefs.h \ 16 $(EXTINCPATH)XAstro/astro.h 17 $(OBJ)magfield.o: magfield.c magfield.h 17 $(SOPHYAOBJP)mollweide.o: mollweide.cc mollweide.h 18 $(CXXCOMPILE) -o $@ $< 19 20 $(SOPHYAOBJP)xastropack.o: xastropack.cc xastropack.h \ 21 $(SOPHYAINCP)machdefs.h \ 22 $(SOPHYAINCP)XAstro/astro.h 23 $(CXXCOMPILE) -o $@ $< 24 25 $(SOPHYAOBJP)magfield.o: magfield.c magfield.h 26 $(CCOMPILE) -o $@ $< 27 28 #--------------------- 29 tstxastro: tstxastro.o $(SOPHYAOBJP)xastropack.o 30 $(CXXLINK) $^ -o $@ $(SOPEXTLIBP) -lxastro -lc -lm 31 32 tstxastro.o: tstxastro.cc 33 $(CXXCOMPILE) -o $@ $< 34 35 #--------------------- 36 tstmollweide: tstmollweide.o $(SOPHYAOBJP)mollweide.o 37 $(CXXLINK) -o $@ $^ $(SOPEXTLIBP) -lxastro -lc -lm 38 39 tstmollweide.o: tstmollweide.cc 40 $(CXXCOMPILE) -o $@ $< -
trunk/SophyaExt/XephemAstroLib/Makefile
r2551 r2743 1 include $(SOPHYABASEREP)/Include/MakefileUser.h1 include ../BuildMgr/sophyamake.inc 2 2 3 3 all: libxastro.a 4 4 5 5 clean: 6 rm -f libxastro.a 7 rm -f *.o testxephem 8 9 install: 10 if [ ! -d $(EXTINCPATH)/XAstro ] ; then mkdir $(EXTINCPATH)/XAstro ; fi 11 rm -f $(EXTINCPATH)/XAstro/astro.h 12 rm -f $(EXTINCPATH)/XAstro/bdl.h 13 rm -f $(EXTINCPATH)/XAstro/P_.h 14 rm -f $(EXTLIBPATH)/libxastro.a 15 cp *.h $(EXTINCPATH)/XAstro/. 16 cp libxastro.a $(EXTLIBPATH)/. 6 rm -f libxastro.a *.o testxephem 17 7 18 8 OBJASTRO := $(addsuffix .o,$(basename $(wildcard *.c))) 19 9 20 10 libxastro.a : $(OBJASTRO) 21 $(AR) $(ARFLAGS) $@ $ (OBJASTRO)11 $(AR) $(ARFLAGS) $@ $? 22 12 23 13 %.o: %.c 24 $(C OMPILE.c) -o $@ $<14 $(CCOMPILE) -o $@ $< 25 15 26 16 testxephem: testxephem.o 27 $( LINK.c) -o $@ $^ -L$(EXTLIBPATH)-lxastro -lc -lm17 $(CLINK) -o $@ $^ -L./ -lxastro -lc -lm -
trunk/SophyaLib/NTools/Makefile
r2650 r2743 1 include ../Mgr/Makefile.h 2 3 all: $(LIB)libNTools.a 1 include ../BuildMgr/sophyamake.inc 2 3 all: $(SOPHYALIBP)libNTools.a 4 4 5 clean: 5 rm -f $(OBJ)FSAppIrrSmpl.o $(OBJ)cimage.o $(OBJ)cspline.o $(OBJ)datatypes.o $(OBJ)dates.o $(OBJ)difeq.o $(OBJ)dynccd.o $(OBJ)fct1dfit.o $(OBJ)fct2dfit.o $(OBJ)fftmserver.o $(OBJ)fftpserver.o $(OBJ)fftservintf.o $(OBJ)functab.o $(OBJ)generaldata.o $(OBJ)generalfit.o $(OBJ)imageop.o $(OBJ)integ.o $(OBJ)median.o $(OBJ)ntoolsinit.o $(OBJ)objfitter.o $(OBJ)perandom.o $(OBJ)poly.o $(OBJ)rk4cdifeq.o $(OBJ)simplesort.o $(OBJ)simplex.o $(OBJ)tabmath.o $(OBJ)datime.o $(OBJ)fftmayer_r4.o $(OBJ)fftmayer_r8.o $(OBJ)fftpackc.o $(OBJ)matxop.o $(OBJ)nbmath.o $(OBJ)nbtri.o 6 rm -f $(LIB)libNTools.a 7 $(LIB)libNTools.a : $(OBJ)FSAppIrrSmpl.o $(OBJ)cimage.o $(OBJ)cspline.o $(OBJ)datatypes.o $(OBJ)dates.o $(OBJ)datime.o $(OBJ)difeq.o $(OBJ)dynccd.o $(OBJ)fct1dfit.o $(OBJ)fct2dfit.o $(OBJ)fftmayer_r4.o $(OBJ)fftmayer_r8.o $(OBJ)fftmserver.o $(OBJ)fftpackc.o $(OBJ)fftpserver.o $(OBJ)fftservintf.o $(OBJ)functab.o $(OBJ)generaldata.o $(OBJ)generalfit.o $(OBJ)integ.o $(OBJ)matxop.o $(OBJ)median.o $(OBJ)nbmath.o $(OBJ)nbtri.o $(OBJ)ntoolsinit.o $(OBJ)objfitter.o $(OBJ)perandom.o $(OBJ)poly.o $(OBJ)rk4cdifeq.o $(OBJ)simplesort.o $(OBJ)simplex.o $(OBJ)tabmath.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 12 13 $(OBJ)FSAppIrrSmpl.o: FSAppIrrSmpl.cc $(INC)sopnamsp.h \ 14 FSAppIrrSmpl.h $(INC)machdefs.h nbmath.h \ 15 $(INC)smathconst.h \ 16 $(INC)timing.h \ 17 $(INC)array.h \ 18 $(INC)tarray.h \ 19 $(INC)basarr.h \ 20 $(INC)anydataobj.h \ 21 $(INC)mutyv.h \ 22 $(INC)dvlist.h \ 23 $(INC)objfio.h \ 24 $(INC)ppersist.h \ 25 $(INC)pexceptions.h \ 26 $(INC)gnumd5.h \ 27 $(INC)ppfbinstream.h \ 28 $(INC)rawstream.h \ 29 $(INC)ppfnametag.h \ 30 $(INC)ndatablock.h \ 31 $(INC)utilarr.h \ 32 $(INC)tmatrix.h \ 33 $(INC)tvector.h \ 34 $(INC)matharr.h \ 35 $(INC)fioarr.h \ 36 $(INC)sopemtx.h fftservintf.h fftpserver.h \ 37 $(INC)toeplitzMatrix.h \ 38 $(INC)nbmath.h \ 39 $(INC)fftservintf.h \ 40 $(INC)fftpserver.h 41 $(OBJ)cimage.o: cimage.cc $(INC)sopnamsp.h \ 42 $(INC)machdefs.h \ 43 $(INC)pexceptions.h cimage.h \ 44 $(INC)tmatrix.h \ 45 $(INC)tarray.h \ 46 $(INC)basarr.h \ 47 $(INC)anydataobj.h \ 48 $(INC)mutyv.h \ 49 $(INC)dvlist.h \ 50 $(INC)objfio.h \ 51 $(INC)ppersist.h \ 52 $(INC)gnumd5.h \ 53 $(INC)ppfbinstream.h \ 54 $(INC)rawstream.h \ 55 $(INC)ppfnametag.h \ 56 $(INC)ndatablock.h \ 57 $(INC)utilarr.h \ 58 $(INC)fioarr.h \ 59 $(INC)tvector.h \ 60 $(INC)datatype.h 61 $(OBJ)cspline.o: cspline.cc $(INC)sopnamsp.h \ 62 $(INC)machdefs.h nbtri.h cspline.h \ 63 $(INC)pexceptions.h 64 $(OBJ)datatypes.o: datatypes.cc $(INC)sopnamsp.h \ 65 datatypes.h $(INC)machdefs.h 66 $(OBJ)dates.o: dates.cc $(INC)sopnamsp.h \ 67 $(INC)machdefs.h \ 68 $(INC)perrors.h \ 69 $(INC)pexceptions.h dates.h 70 $(OBJ)difeq.o: difeq.cc $(INC)sopnamsp.h difeq.h \ 71 $(INC)machdefs.h \ 72 $(INC)pexceptions.h \ 73 $(INC)tvector.h \ 74 $(INC)tmatrix.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)gnumd5.h \ 83 $(INC)ppfbinstream.h \ 84 $(INC)rawstream.h \ 85 $(INC)ppfnametag.h \ 86 $(INC)ndatablock.h \ 87 $(INC)utilarr.h \ 88 $(INC)ctimer.h 89 $(OBJ)dynccd.o: dynccd.cc $(INC)sopnamsp.h \ 90 $(INC)machdefs.h fmath.h perandom.h \ 91 $(INC)histos.h \ 92 $(INC)objfio.h \ 93 $(INC)anydataobj.h \ 94 $(INC)ppersist.h \ 95 $(INC)pexceptions.h \ 96 $(INC)gnumd5.h \ 97 $(INC)ppfbinstream.h \ 98 $(INC)rawstream.h \ 99 $(INC)ppfnametag.h \ 100 $(INC)peida.h \ 101 $(INC)utils.h \ 102 $(INC)perrors.h \ 103 $(INC)fmath.h \ 104 $(INC)tvector.h \ 105 $(INC)tmatrix.h \ 106 $(INC)tarray.h \ 107 $(INC)basarr.h \ 108 $(INC)mutyv.h \ 109 $(INC)dvlist.h \ 110 $(INC)ndatablock.h \ 111 $(INC)utilarr.h nbrandom.h \ 112 $(INC)srandgen.h cimage.h \ 113 $(INC)fioarr.h dynccd.h 114 $(OBJ)fct1dfit.o: fct1dfit.cc $(INC)sopnamsp.h \ 115 $(INC)machdefs.h fct1dfit.h generalfit.h \ 116 $(INC)pexceptions.h \ 117 $(INC)tvector.h \ 118 $(INC)tmatrix.h \ 119 $(INC)tarray.h \ 120 $(INC)basarr.h \ 121 $(INC)anydataobj.h \ 122 $(INC)mutyv.h \ 123 $(INC)dvlist.h \ 124 $(INC)objfio.h \ 125 $(INC)ppersist.h \ 126 $(INC)gnumd5.h \ 127 $(INC)ppfbinstream.h \ 128 $(INC)rawstream.h \ 129 $(INC)ppfnametag.h \ 130 $(INC)ndatablock.h \ 131 $(INC)utilarr.h generaldata.h \ 132 $(INC)ntupintf.h poly.h peida.h \ 133 $(INC)utils.h \ 134 $(INC)perrors.h fmath.h nbconst.h tabmath.h 135 $(OBJ)fct2dfit.o: fct2dfit.cc $(INC)sopnamsp.h \ 136 $(INC)machdefs.h fct2dfit.h generalfit.h \ 137 $(INC)pexceptions.h \ 138 $(INC)tvector.h \ 139 $(INC)tmatrix.h \ 140 $(INC)tarray.h \ 141 $(INC)basarr.h \ 142 $(INC)anydataobj.h \ 143 $(INC)mutyv.h \ 144 $(INC)dvlist.h \ 145 $(INC)objfio.h \ 146 $(INC)ppersist.h \ 147 $(INC)gnumd5.h \ 148 $(INC)ppfbinstream.h \ 149 $(INC)rawstream.h \ 150 $(INC)ppfnametag.h \ 151 $(INC)ndatablock.h \ 152 $(INC)utilarr.h generaldata.h \ 153 $(INC)ntupintf.h poly.h peida.h \ 154 $(INC)utils.h \ 155 $(INC)perrors.h fmath.h nbconst.h tabmath.h \ 156 simps2d.h 157 $(OBJ)fftmserver.o: fftmserver.cc $(INC)sopnamsp.h \ 158 fftmserver.h fftservintf.h $(INC)machdefs.h \ 159 $(INC)pexceptions.h \ 160 $(INC)tmatrix.h \ 161 $(INC)tarray.h \ 162 $(INC)basarr.h \ 163 $(INC)anydataobj.h \ 164 $(INC)mutyv.h \ 165 $(INC)dvlist.h \ 166 $(INC)objfio.h \ 167 $(INC)ppersist.h \ 168 $(INC)gnumd5.h \ 169 $(INC)ppfbinstream.h \ 170 $(INC)rawstream.h \ 171 $(INC)ppfnametag.h \ 172 $(INC)ndatablock.h \ 173 $(INC)utilarr.h \ 174 $(INC)tvector.h fftmayer.h 175 $(OBJ)fftpserver.o: fftpserver.cc $(INC)sopnamsp.h \ 176 fftpserver.h fftservintf.h $(INC)machdefs.h \ 177 $(INC)pexceptions.h \ 178 $(INC)tmatrix.h \ 179 $(INC)tarray.h \ 180 $(INC)basarr.h \ 181 $(INC)anydataobj.h \ 182 $(INC)mutyv.h \ 183 $(INC)dvlist.h \ 184 $(INC)objfio.h \ 185 $(INC)ppersist.h \ 186 $(INC)gnumd5.h \ 187 $(INC)ppfbinstream.h \ 188 $(INC)rawstream.h \ 189 $(INC)ppfnametag.h \ 190 $(INC)ndatablock.h \ 191 $(INC)utilarr.h \ 192 $(INC)tvector.h fftpackc.h 193 $(OBJ)fftservintf.o: fftservintf.cc $(INC)sopnamsp.h \ 194 fftservintf.h $(INC)machdefs.h \ 195 $(INC)pexceptions.h \ 196 $(INC)tmatrix.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)gnumd5.h \ 205 $(INC)ppfbinstream.h \ 206 $(INC)rawstream.h \ 207 $(INC)ppfnametag.h \ 208 $(INC)ndatablock.h \ 209 $(INC)utilarr.h \ 210 $(INC)tvector.h 211 $(OBJ)functab.o: functab.cc $(INC)sopnamsp.h \ 212 $(INC)machdefs.h \ 213 $(INC)pexceptions.h functab.h \ 214 $(INC)tvector.h \ 215 $(INC)tmatrix.h \ 216 $(INC)tarray.h \ 217 $(INC)basarr.h \ 218 $(INC)anydataobj.h \ 219 $(INC)mutyv.h \ 220 $(INC)dvlist.h \ 221 $(INC)objfio.h \ 222 $(INC)ppersist.h \ 223 $(INC)gnumd5.h \ 224 $(INC)ppfbinstream.h \ 225 $(INC)rawstream.h \ 226 $(INC)ppfnametag.h \ 227 $(INC)ndatablock.h \ 228 $(INC)utilarr.h 229 $(OBJ)generaldata.o: generaldata.cc $(INC)sopnamsp.h \ 230 $(INC)machdefs.h \ 231 $(INC)strutil.h nbtri.h generalfit.h \ 232 $(INC)pexceptions.h \ 233 $(INC)tvector.h \ 234 $(INC)tmatrix.h \ 235 $(INC)tarray.h \ 236 $(INC)basarr.h \ 237 $(INC)anydataobj.h \ 238 $(INC)mutyv.h \ 239 $(INC)dvlist.h \ 240 $(INC)objfio.h \ 241 $(INC)ppersist.h \ 242 $(INC)gnumd5.h \ 243 $(INC)ppfbinstream.h \ 244 $(INC)rawstream.h \ 245 $(INC)ppfnametag.h \ 246 $(INC)ndatablock.h \ 247 $(INC)utilarr.h generaldata.h \ 248 $(INC)ntupintf.h poly.h peida.h \ 249 $(INC)utils.h \ 250 $(INC)perrors.h fmath.h 251 $(OBJ)generalfit.o: generalfit.cc $(INC)sopnamsp.h \ 252 $(INC)machdefs.h \ 253 $(INC)pexceptions.h generalfit.h \ 254 $(INC)tvector.h \ 255 $(INC)tmatrix.h \ 256 $(INC)tarray.h \ 257 $(INC)basarr.h \ 258 $(INC)anydataobj.h \ 259 $(INC)mutyv.h \ 260 $(INC)dvlist.h \ 261 $(INC)objfio.h \ 262 $(INC)ppersist.h \ 263 $(INC)gnumd5.h \ 264 $(INC)ppfbinstream.h \ 265 $(INC)rawstream.h \ 266 $(INC)ppfnametag.h \ 267 $(INC)ndatablock.h \ 268 $(INC)utilarr.h generaldata.h \ 269 $(INC)ntupintf.h poly.h peida.h \ 270 $(INC)utils.h \ 271 $(INC)perrors.h fmath.h \ 272 $(INC)sopemtx.h 273 $(OBJ)integ.o: integ.cc $(INC)sopnamsp.h integ.h \ 274 $(INC)machdefs.h \ 275 $(INC)pexceptions.h classfunc.h generalfit.h \ 276 $(INC)tvector.h \ 277 $(INC)tmatrix.h \ 278 $(INC)tarray.h \ 279 $(INC)basarr.h \ 280 $(INC)anydataobj.h \ 281 $(INC)mutyv.h \ 282 $(INC)dvlist.h \ 283 $(INC)objfio.h \ 284 $(INC)ppersist.h \ 285 $(INC)gnumd5.h \ 286 $(INC)ppfbinstream.h \ 287 $(INC)rawstream.h \ 288 $(INC)ppfnametag.h \ 289 $(INC)ndatablock.h \ 290 $(INC)utilarr.h generaldata.h \ 291 $(INC)ntupintf.h poly.h peida.h \ 292 $(INC)utils.h \ 293 $(INC)perrors.h fmath.h 294 $(OBJ)median.o: median.cc 295 $(OBJ)ntoolsinit.o: ntoolsinit.cc $(INC)sopnamsp.h \ 296 $(INC)machdefs.h ntoolsinit.h \ 297 $(INC)tarrinit.h \ 298 $(INC)sophyainit.h poly.h \ 299 $(INC)objfio.h \ 300 $(INC)anydataobj.h \ 301 $(INC)ppersist.h \ 302 $(INC)pexceptions.h \ 303 $(INC)gnumd5.h \ 304 $(INC)ppfbinstream.h \ 305 $(INC)rawstream.h \ 306 $(INC)ppfnametag.h peida.h \ 307 $(INC)utils.h \ 308 $(INC)perrors.h fmath.h \ 309 $(INC)tvector.h \ 310 $(INC)tmatrix.h \ 311 $(INC)tarray.h \ 312 $(INC)basarr.h \ 313 $(INC)mutyv.h \ 314 $(INC)dvlist.h \ 315 $(INC)ndatablock.h \ 316 $(INC)utilarr.h generaldata.h \ 317 $(INC)ntupintf.h cimage.h \ 318 $(INC)fioarr.h tabmath.h nbconst.h dates.h \ 319 datime.h 320 $(OBJ)objfitter.o: objfitter.cc $(INC)sopnamsp.h \ 321 objfitter.h $(INC)machdefs.h \ 322 $(INC)tmatrix.h \ 323 $(INC)tarray.h \ 324 $(INC)basarr.h \ 325 $(INC)anydataobj.h \ 326 $(INC)mutyv.h \ 327 $(INC)dvlist.h \ 328 $(INC)objfio.h \ 329 $(INC)ppersist.h \ 330 $(INC)pexceptions.h \ 331 $(INC)gnumd5.h \ 332 $(INC)ppfbinstream.h \ 333 $(INC)rawstream.h \ 334 $(INC)ppfnametag.h \ 335 $(INC)ndatablock.h \ 336 $(INC)utilarr.h cimage.h \ 337 $(INC)fioarr.h \ 338 $(INC)tvector.h \ 339 $(INC)histos.h \ 340 $(INC)peida.h \ 341 $(INC)utils.h \ 342 $(INC)perrors.h \ 343 $(INC)fmath.h \ 344 $(INC)histos2.h \ 345 $(INC)hisprof.h generalfit.h generaldata.h \ 346 $(INC)ntupintf.h poly.h peida.h 347 $(OBJ)perandom.o: perandom.cc $(INC)sopnamsp.h \ 348 $(INC)machdefs.h \ 349 $(INC)pexceptions.h perandom.h \ 350 $(INC)histos.h \ 351 $(INC)objfio.h \ 352 $(INC)anydataobj.h \ 353 $(INC)ppersist.h \ 354 $(INC)gnumd5.h \ 355 $(INC)ppfbinstream.h \ 356 $(INC)rawstream.h \ 357 $(INC)ppfnametag.h \ 358 $(INC)peida.h \ 359 $(INC)utils.h \ 360 $(INC)perrors.h \ 361 $(INC)fmath.h \ 362 $(INC)tvector.h \ 363 $(INC)tmatrix.h \ 364 $(INC)tarray.h \ 365 $(INC)basarr.h \ 366 $(INC)mutyv.h \ 367 $(INC)dvlist.h \ 368 $(INC)ndatablock.h \ 369 $(INC)utilarr.h nbrandom.h \ 370 $(INC)srandgen.h pemath.h 371 $(OBJ)poly.o: poly.cc $(INC)sopnamsp.h \ 372 $(INC)machdefs.h poly.h \ 373 $(INC)objfio.h \ 374 $(INC)anydataobj.h \ 375 $(INC)ppersist.h \ 376 $(INC)pexceptions.h \ 377 $(INC)gnumd5.h \ 378 $(INC)ppfbinstream.h \ 379 $(INC)rawstream.h \ 380 $(INC)ppfnametag.h peida.h \ 381 $(INC)utils.h \ 382 $(INC)perrors.h fmath.h \ 383 $(INC)tvector.h \ 384 $(INC)tmatrix.h \ 385 $(INC)tarray.h \ 386 $(INC)basarr.h \ 387 $(INC)mutyv.h \ 388 $(INC)dvlist.h \ 389 $(INC)ndatablock.h \ 390 $(INC)utilarr.h linfit.h \ 391 $(INC)sopemtx.h \ 392 $(INC)fioarr.h 393 $(OBJ)rk4cdifeq.o: rk4cdifeq.cc $(INC)sopnamsp.h \ 394 $(INC)machdefs.h rk4cdifeq.h difeq.h \ 395 $(INC)pexceptions.h \ 396 $(INC)tvector.h \ 397 $(INC)tmatrix.h \ 398 $(INC)tarray.h \ 399 $(INC)basarr.h \ 400 $(INC)anydataobj.h \ 401 $(INC)mutyv.h \ 402 $(INC)dvlist.h \ 403 $(INC)objfio.h \ 404 $(INC)ppersist.h \ 405 $(INC)gnumd5.h \ 406 $(INC)ppfbinstream.h \ 407 $(INC)rawstream.h \ 408 $(INC)ppfnametag.h \ 409 $(INC)ndatablock.h \ 410 $(INC)utilarr.h \ 411 $(INC)ctimer.h 412 $(OBJ)simplesort.o: simplesort.cc $(INC)sopnamsp.h \ 413 $(INC)machdefs.h simplesort.h peida.h \ 414 $(INC)utils.h \ 415 $(INC)perrors.h \ 416 $(INC)pexceptions.h fmath.h 417 $(OBJ)simplex.o: simplex.cc $(INC)sopnamsp.h simplex.h \ 418 $(INC)machdefs.h \ 419 $(INC)tvector.h \ 420 $(INC)tmatrix.h \ 421 $(INC)tarray.h \ 422 $(INC)basarr.h \ 423 $(INC)anydataobj.h \ 424 $(INC)mutyv.h \ 425 $(INC)dvlist.h \ 426 $(INC)objfio.h \ 427 $(INC)ppersist.h \ 428 $(INC)pexceptions.h \ 429 $(INC)gnumd5.h \ 430 $(INC)ppfbinstream.h \ 431 $(INC)rawstream.h \ 432 $(INC)ppfnametag.h \ 433 $(INC)ndatablock.h \ 434 $(INC)utilarr.h generalfit.h generaldata.h \ 435 $(INC)ntupintf.h poly.h peida.h \ 436 $(INC)utils.h \ 437 $(INC)perrors.h fmath.h \ 438 $(INC)ntuple.h \ 439 $(INC)timing.h 440 $(OBJ)tabmath.o: tabmath.cc $(INC)sopnamsp.h \ 441 $(INC)machdefs.h tabmath.h peida.h \ 442 $(INC)utils.h \ 443 $(INC)perrors.h \ 444 $(INC)pexceptions.h fmath.h nbconst.h 445 $(OBJ)datime.o: datime.c $(INC)machdefs.h \ 446 $(INC)strutil.h nbconst.h datime.h 447 $(OBJ)fftmayer_r4.o: fftmayer_r4.c fftmayer.h \ 448 $(INC)machdefs.h trigtbl.h 449 $(OBJ)fftmayer_r8.o: fftmayer_r8.c fftmayer.h \ 450 $(INC)machdefs.h trigtbl.h 451 $(OBJ)fftpackc.o: fftpackc.c fftpackc.h \ 452 $(INC)machdefs.h 453 $(OBJ)matxop.o: matxop.c matxop.h nbmath.h \ 454 $(INC)machdefs.h \ 455 $(INC)smathconst.h 456 $(OBJ)nbmath.o: nbmath.c nbmath.h $(INC)machdefs.h \ 457 $(INC)smathconst.h matxop.h nbinteg.h nbtri.h 458 $(OBJ)nbtri.o: nbtri.c nbtri.h $(INC)machdefs.h 6 rm -f $(SOPHYAOBJP)cimage.o $(SOPHYAOBJP)cspline.o $(SOPHYAOBJP)datatypes.o $(SOPHYAOBJP)dates.o $(SOPHYAOBJP)difeq.o $(SOPHYAOBJP)dynccd.o $(SOPHYAOBJP)fct1dfit.o $(SOPHYAOBJP)fct2dfit.o $(SOPHYAOBJP)fftmserver.o $(SOPHYAOBJP)fftpserver.o $(SOPHYAOBJP)fftservintf.o $(SOPHYAOBJP)FSAppIrrSmpl.o $(SOPHYAOBJP)functab.o $(SOPHYAOBJP)generaldata.o $(SOPHYAOBJP)generalfit.o $(SOPHYAOBJP)imageop.o $(SOPHYAOBJP)integ.o $(SOPHYAOBJP)median.o $(SOPHYAOBJP)ntoolsinit.o $(SOPHYAOBJP)objfitter.o $(SOPHYAOBJP)perandom.o $(SOPHYAOBJP)poly.o $(SOPHYAOBJP)rk4cdifeq.o $(SOPHYAOBJP)simplesort.o $(SOPHYAOBJP)simplex.o $(SOPHYAOBJP)tabmath.o $(SOPHYAOBJP)datime.o $(SOPHYAOBJP)fftmayer_r4.o $(SOPHYAOBJP)fftmayer_r8.o $(SOPHYAOBJP)fftpackc.o $(SOPHYAOBJP)matxop.o $(SOPHYAOBJP)nbmath.o $(SOPHYAOBJP)nbtri.o 7 rm -f $(SOPHYALIBP)libNTools.a 8 9 $(SOPHYALIBP)libNTools.a : $(SOPHYAOBJP)cimage.o $(SOPHYAOBJP)cspline.o $(SOPHYAOBJP)datatypes.o $(SOPHYAOBJP)dates.o $(SOPHYAOBJP)datime.o $(SOPHYAOBJP)difeq.o $(SOPHYAOBJP)dynccd.o $(SOPHYAOBJP)fct1dfit.o $(SOPHYAOBJP)fct2dfit.o $(SOPHYAOBJP)fftmayer_r4.o $(SOPHYAOBJP)fftmayer_r8.o $(SOPHYAOBJP)fftmserver.o $(SOPHYAOBJP)fftpackc.o $(SOPHYAOBJP)fftpserver.o $(SOPHYAOBJP)fftservintf.o $(SOPHYAOBJP)FSAppIrrSmpl.o $(SOPHYAOBJP)functab.o $(SOPHYAOBJP)generaldata.o $(SOPHYAOBJP)generalfit.o $(SOPHYAOBJP)integ.o $(SOPHYAOBJP)matxop.o $(SOPHYAOBJP)median.o $(SOPHYAOBJP)nbmath.o $(SOPHYAOBJP)nbtri.o $(SOPHYAOBJP)ntoolsinit.o $(SOPHYAOBJP)objfitter.o $(SOPHYAOBJP)perandom.o $(SOPHYAOBJP)poly.o $(SOPHYAOBJP)rk4cdifeq.o $(SOPHYAOBJP)simplesort.o $(SOPHYAOBJP)simplex.o $(SOPHYAOBJP)tabmath.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)cimage.o: cimage.cc $(SOPHYAINCP)sopnamsp.h \ 13 $(SOPHYAINCP)machdefs.h \ 14 $(SOPHYAINCP)pexceptions.h cimage.h \ 15 $(SOPHYAINCP)tmatrix.h \ 16 $(SOPHYAINCP)tarray.h \ 17 $(SOPHYAINCP)basarr.h \ 18 $(SOPHYAINCP)anydataobj.h \ 19 $(SOPHYAINCP)mutyv.h \ 20 $(SOPHYAINCP)dvlist.h \ 21 $(SOPHYAINCP)objfio.h \ 22 $(SOPHYAINCP)ppersist.h \ 23 $(SOPHYAINCP)gnumd5.h \ 24 $(SOPHYAINCP)ppfbinstream.h \ 25 $(SOPHYAINCP)rawstream.h \ 26 $(SOPHYAINCP)ppfnametag.h \ 27 $(SOPHYAINCP)ndatablock.h \ 28 $(SOPHYAINCP)utilarr.h \ 29 $(SOPHYAINCP)fioarr.h \ 30 $(SOPHYAINCP)tvector.h \ 31 $(SOPHYAINCP)datatype.h 32 $(CXXCOMPILE) -o $@ $< 33 34 $(SOPHYAOBJP)cspline.o: cspline.cc \ 35 $(SOPHYAINCP)sopnamsp.h \ 36 $(SOPHYAINCP)machdefs.h nbtri.h cspline.h \ 37 $(SOPHYAINCP)pexceptions.h 38 $(CXXCOMPILE) -o $@ $< 39 40 $(SOPHYAOBJP)datatypes.o: datatypes.cc \ 41 $(SOPHYAINCP)sopnamsp.h datatypes.h \ 42 $(SOPHYAINCP)machdefs.h 43 $(CXXCOMPILE) -o $@ $< 44 45 $(SOPHYAOBJP)dates.o: dates.cc $(SOPHYAINCP)sopnamsp.h \ 46 $(SOPHYAINCP)machdefs.h \ 47 $(SOPHYAINCP)perrors.h \ 48 $(SOPHYAINCP)pexceptions.h dates.h 49 $(CXXCOMPILE) -o $@ $< 50 51 $(SOPHYAOBJP)difeq.o: difeq.cc $(SOPHYAINCP)sopnamsp.h \ 52 difeq.h $(SOPHYAINCP)machdefs.h \ 53 $(SOPHYAINCP)pexceptions.h \ 54 $(SOPHYAINCP)tvector.h \ 55 $(SOPHYAINCP)tmatrix.h \ 56 $(SOPHYAINCP)tarray.h \ 57 $(SOPHYAINCP)basarr.h \ 58 $(SOPHYAINCP)anydataobj.h \ 59 $(SOPHYAINCP)mutyv.h \ 60 $(SOPHYAINCP)dvlist.h \ 61 $(SOPHYAINCP)objfio.h \ 62 $(SOPHYAINCP)ppersist.h \ 63 $(SOPHYAINCP)gnumd5.h \ 64 $(SOPHYAINCP)ppfbinstream.h \ 65 $(SOPHYAINCP)rawstream.h \ 66 $(SOPHYAINCP)ppfnametag.h \ 67 $(SOPHYAINCP)ndatablock.h \ 68 $(SOPHYAINCP)utilarr.h \ 69 $(SOPHYAINCP)ctimer.h 70 $(CXXCOMPILE) -o $@ $< 71 72 $(SOPHYAOBJP)dynccd.o: dynccd.cc $(SOPHYAINCP)sopnamsp.h \ 73 $(SOPHYAINCP)machdefs.h fmath.h perandom.h \ 74 $(SOPHYAINCP)histos.h \ 75 $(SOPHYAINCP)objfio.h \ 76 $(SOPHYAINCP)anydataobj.h \ 77 $(SOPHYAINCP)ppersist.h \ 78 $(SOPHYAINCP)pexceptions.h \ 79 $(SOPHYAINCP)gnumd5.h \ 80 $(SOPHYAINCP)ppfbinstream.h \ 81 $(SOPHYAINCP)rawstream.h \ 82 $(SOPHYAINCP)ppfnametag.h \ 83 $(SOPHYAINCP)peida.h \ 84 $(SOPHYAINCP)utils.h \ 85 $(SOPHYAINCP)perrors.h \ 86 $(SOPHYAINCP)fmath.h \ 87 $(SOPHYAINCP)tvector.h \ 88 $(SOPHYAINCP)tmatrix.h \ 89 $(SOPHYAINCP)tarray.h \ 90 $(SOPHYAINCP)basarr.h \ 91 $(SOPHYAINCP)mutyv.h \ 92 $(SOPHYAINCP)dvlist.h \ 93 $(SOPHYAINCP)ndatablock.h \ 94 $(SOPHYAINCP)utilarr.h nbrandom.h \ 95 $(SOPHYAINCP)srandgen.h cimage.h \ 96 $(SOPHYAINCP)fioarr.h dynccd.h 97 $(CXXCOMPILE) -o $@ $< 98 99 $(SOPHYAOBJP)fct1dfit.o: fct1dfit.cc \ 100 $(SOPHYAINCP)sopnamsp.h \ 101 $(SOPHYAINCP)machdefs.h fct1dfit.h \ 102 generalfit.h $(SOPHYAINCP)pexceptions.h \ 103 $(SOPHYAINCP)tvector.h \ 104 $(SOPHYAINCP)tmatrix.h \ 105 $(SOPHYAINCP)tarray.h \ 106 $(SOPHYAINCP)basarr.h \ 107 $(SOPHYAINCP)anydataobj.h \ 108 $(SOPHYAINCP)mutyv.h \ 109 $(SOPHYAINCP)dvlist.h \ 110 $(SOPHYAINCP)objfio.h \ 111 $(SOPHYAINCP)ppersist.h \ 112 $(SOPHYAINCP)gnumd5.h \ 113 $(SOPHYAINCP)ppfbinstream.h \ 114 $(SOPHYAINCP)rawstream.h \ 115 $(SOPHYAINCP)ppfnametag.h \ 116 $(SOPHYAINCP)ndatablock.h \ 117 $(SOPHYAINCP)utilarr.h generaldata.h \ 118 $(SOPHYAINCP)ntupintf.h poly.h peida.h \ 119 $(SOPHYAINCP)utils.h \ 120 $(SOPHYAINCP)perrors.h fmath.h nbconst.h \ 121 tabmath.h 122 $(CXXCOMPILE) -o $@ $< 123 124 $(SOPHYAOBJP)fct2dfit.o: fct2dfit.cc \ 125 $(SOPHYAINCP)sopnamsp.h \ 126 $(SOPHYAINCP)machdefs.h fct2dfit.h \ 127 generalfit.h $(SOPHYAINCP)pexceptions.h \ 128 $(SOPHYAINCP)tvector.h \ 129 $(SOPHYAINCP)tmatrix.h \ 130 $(SOPHYAINCP)tarray.h \ 131 $(SOPHYAINCP)basarr.h \ 132 $(SOPHYAINCP)anydataobj.h \ 133 $(SOPHYAINCP)mutyv.h \ 134 $(SOPHYAINCP)dvlist.h \ 135 $(SOPHYAINCP)objfio.h \ 136 $(SOPHYAINCP)ppersist.h \ 137 $(SOPHYAINCP)gnumd5.h \ 138 $(SOPHYAINCP)ppfbinstream.h \ 139 $(SOPHYAINCP)rawstream.h \ 140 $(SOPHYAINCP)ppfnametag.h \ 141 $(SOPHYAINCP)ndatablock.h \ 142 $(SOPHYAINCP)utilarr.h generaldata.h \ 143 $(SOPHYAINCP)ntupintf.h poly.h peida.h \ 144 $(SOPHYAINCP)utils.h \ 145 $(SOPHYAINCP)perrors.h fmath.h nbconst.h \ 146 tabmath.h simps2d.h 147 $(CXXCOMPILE) -o $@ $< 148 149 $(SOPHYAOBJP)fftmserver.o: fftmserver.cc \ 150 $(SOPHYAINCP)sopnamsp.h fftmserver.h \ 151 fftservintf.h $(SOPHYAINCP)machdefs.h \ 152 $(SOPHYAINCP)pexceptions.h \ 153 $(SOPHYAINCP)tmatrix.h \ 154 $(SOPHYAINCP)tarray.h \ 155 $(SOPHYAINCP)basarr.h \ 156 $(SOPHYAINCP)anydataobj.h \ 157 $(SOPHYAINCP)mutyv.h \ 158 $(SOPHYAINCP)dvlist.h \ 159 $(SOPHYAINCP)objfio.h \ 160 $(SOPHYAINCP)ppersist.h \ 161 $(SOPHYAINCP)gnumd5.h \ 162 $(SOPHYAINCP)ppfbinstream.h \ 163 $(SOPHYAINCP)rawstream.h \ 164 $(SOPHYAINCP)ppfnametag.h \ 165 $(SOPHYAINCP)ndatablock.h \ 166 $(SOPHYAINCP)utilarr.h \ 167 $(SOPHYAINCP)tvector.h fftmayer.h 168 $(CXXCOMPILE) -o $@ $< 169 170 $(SOPHYAOBJP)fftpserver.o: fftpserver.cc \ 171 $(SOPHYAINCP)sopnamsp.h fftpserver.h \ 172 fftservintf.h $(SOPHYAINCP)machdefs.h \ 173 $(SOPHYAINCP)pexceptions.h \ 174 $(SOPHYAINCP)tmatrix.h \ 175 $(SOPHYAINCP)tarray.h \ 176 $(SOPHYAINCP)basarr.h \ 177 $(SOPHYAINCP)anydataobj.h \ 178 $(SOPHYAINCP)mutyv.h \ 179 $(SOPHYAINCP)dvlist.h \ 180 $(SOPHYAINCP)objfio.h \ 181 $(SOPHYAINCP)ppersist.h \ 182 $(SOPHYAINCP)gnumd5.h \ 183 $(SOPHYAINCP)ppfbinstream.h \ 184 $(SOPHYAINCP)rawstream.h \ 185 $(SOPHYAINCP)ppfnametag.h \ 186 $(SOPHYAINCP)ndatablock.h \ 187 $(SOPHYAINCP)utilarr.h \ 188 $(SOPHYAINCP)tvector.h fftpackc.h 189 $(CXXCOMPILE) -o $@ $< 190 191 $(SOPHYAOBJP)fftservintf.o: fftservintf.cc \ 192 $(SOPHYAINCP)sopnamsp.h fftservintf.h \ 193 $(SOPHYAINCP)machdefs.h \ 194 $(SOPHYAINCP)pexceptions.h \ 195 $(SOPHYAINCP)tmatrix.h \ 196 $(SOPHYAINCP)tarray.h \ 197 $(SOPHYAINCP)basarr.h \ 198 $(SOPHYAINCP)anydataobj.h \ 199 $(SOPHYAINCP)mutyv.h \ 200 $(SOPHYAINCP)dvlist.h \ 201 $(SOPHYAINCP)objfio.h \ 202 $(SOPHYAINCP)ppersist.h \ 203 $(SOPHYAINCP)gnumd5.h \ 204 $(SOPHYAINCP)ppfbinstream.h \ 205 $(SOPHYAINCP)rawstream.h \ 206 $(SOPHYAINCP)ppfnametag.h \ 207 $(SOPHYAINCP)ndatablock.h \ 208 $(SOPHYAINCP)utilarr.h \ 209 $(SOPHYAINCP)tvector.h 210 $(CXXCOMPILE) -o $@ $< 211 212 $(SOPHYAOBJP)FSAppIrrSmpl.o: FSAppIrrSmpl.cc \ 213 $(SOPHYAINCP)sopnamsp.h FSAppIrrSmpl.h \ 214 $(SOPHYAINCP)machdefs.h nbmath.h \ 215 $(SOPHYAINCP)smathconst.h \ 216 $(SOPHYAINCP)timing.h \ 217 $(SOPHYAINCP)array.h \ 218 $(SOPHYAINCP)tarray.h \ 219 $(SOPHYAINCP)basarr.h \ 220 $(SOPHYAINCP)anydataobj.h \ 221 $(SOPHYAINCP)mutyv.h \ 222 $(SOPHYAINCP)dvlist.h \ 223 $(SOPHYAINCP)objfio.h \ 224 $(SOPHYAINCP)ppersist.h \ 225 $(SOPHYAINCP)pexceptions.h \ 226 $(SOPHYAINCP)gnumd5.h \ 227 $(SOPHYAINCP)ppfbinstream.h \ 228 $(SOPHYAINCP)rawstream.h \ 229 $(SOPHYAINCP)ppfnametag.h \ 230 $(SOPHYAINCP)ndatablock.h \ 231 $(SOPHYAINCP)utilarr.h \ 232 $(SOPHYAINCP)tmatrix.h \ 233 $(SOPHYAINCP)tvector.h \ 234 $(SOPHYAINCP)matharr.h \ 235 $(SOPHYAINCP)fioarr.h \ 236 $(SOPHYAINCP)sopemtx.h fftservintf.h \ 237 fftpserver.h $(SOPHYAINCP)toeplitzMatrix.h \ 238 $(SOPHYAINCP)nbmath.h \ 239 $(SOPHYAINCP)fftservintf.h \ 240 $(SOPHYAINCP)fftpserver.h 241 $(CXXCOMPILE) -o $@ $< 242 243 $(SOPHYAOBJP)functab.o: functab.cc \ 244 $(SOPHYAINCP)sopnamsp.h \ 245 $(SOPHYAINCP)machdefs.h \ 246 $(SOPHYAINCP)pexceptions.h functab.h \ 247 $(SOPHYAINCP)tvector.h \ 248 $(SOPHYAINCP)tmatrix.h \ 249 $(SOPHYAINCP)tarray.h \ 250 $(SOPHYAINCP)basarr.h \ 251 $(SOPHYAINCP)anydataobj.h \ 252 $(SOPHYAINCP)mutyv.h \ 253 $(SOPHYAINCP)dvlist.h \ 254 $(SOPHYAINCP)objfio.h \ 255 $(SOPHYAINCP)ppersist.h \ 256 $(SOPHYAINCP)gnumd5.h \ 257 $(SOPHYAINCP)ppfbinstream.h \ 258 $(SOPHYAINCP)rawstream.h \ 259 $(SOPHYAINCP)ppfnametag.h \ 260 $(SOPHYAINCP)ndatablock.h \ 261 $(SOPHYAINCP)utilarr.h 262 $(CXXCOMPILE) -o $@ $< 263 264 $(SOPHYAOBJP)generaldata.o: generaldata.cc \ 265 $(SOPHYAINCP)sopnamsp.h \ 266 $(SOPHYAINCP)machdefs.h \ 267 $(SOPHYAINCP)strutil.h nbtri.h \ 268 generalfit.h $(SOPHYAINCP)pexceptions.h \ 269 $(SOPHYAINCP)tvector.h \ 270 $(SOPHYAINCP)tmatrix.h \ 271 $(SOPHYAINCP)tarray.h \ 272 $(SOPHYAINCP)basarr.h \ 273 $(SOPHYAINCP)anydataobj.h \ 274 $(SOPHYAINCP)mutyv.h \ 275 $(SOPHYAINCP)dvlist.h \ 276 $(SOPHYAINCP)objfio.h \ 277 $(SOPHYAINCP)ppersist.h \ 278 $(SOPHYAINCP)gnumd5.h \ 279 $(SOPHYAINCP)ppfbinstream.h \ 280 $(SOPHYAINCP)rawstream.h \ 281 $(SOPHYAINCP)ppfnametag.h \ 282 $(SOPHYAINCP)ndatablock.h \ 283 $(SOPHYAINCP)utilarr.h generaldata.h \ 284 $(SOPHYAINCP)ntupintf.h poly.h peida.h \ 285 $(SOPHYAINCP)utils.h \ 286 $(SOPHYAINCP)perrors.h fmath.h 287 $(CXXCOMPILE) -o $@ $< 288 289 $(SOPHYAOBJP)generalfit.o: generalfit.cc \ 290 $(SOPHYAINCP)sopnamsp.h \ 291 $(SOPHYAINCP)machdefs.h \ 292 $(SOPHYAINCP)pexceptions.h generalfit.h \ 293 $(SOPHYAINCP)tvector.h \ 294 $(SOPHYAINCP)tmatrix.h \ 295 $(SOPHYAINCP)tarray.h \ 296 $(SOPHYAINCP)basarr.h \ 297 $(SOPHYAINCP)anydataobj.h \ 298 $(SOPHYAINCP)mutyv.h \ 299 $(SOPHYAINCP)dvlist.h \ 300 $(SOPHYAINCP)objfio.h \ 301 $(SOPHYAINCP)ppersist.h \ 302 $(SOPHYAINCP)gnumd5.h \ 303 $(SOPHYAINCP)ppfbinstream.h \ 304 $(SOPHYAINCP)rawstream.h \ 305 $(SOPHYAINCP)ppfnametag.h \ 306 $(SOPHYAINCP)ndatablock.h \ 307 $(SOPHYAINCP)utilarr.h generaldata.h \ 308 $(SOPHYAINCP)ntupintf.h poly.h peida.h \ 309 $(SOPHYAINCP)utils.h \ 310 $(SOPHYAINCP)perrors.h fmath.h \ 311 $(SOPHYAINCP)sopemtx.h 312 $(CXXCOMPILE) -o $@ $< 313 314 $(SOPHYAOBJP)integ.o: integ.cc $(SOPHYAINCP)sopnamsp.h \ 315 integ.h $(SOPHYAINCP)machdefs.h \ 316 $(SOPHYAINCP)pexceptions.h classfunc.h \ 317 generalfit.h $(SOPHYAINCP)tvector.h \ 318 $(SOPHYAINCP)tmatrix.h \ 319 $(SOPHYAINCP)tarray.h \ 320 $(SOPHYAINCP)basarr.h \ 321 $(SOPHYAINCP)anydataobj.h \ 322 $(SOPHYAINCP)mutyv.h \ 323 $(SOPHYAINCP)dvlist.h \ 324 $(SOPHYAINCP)objfio.h \ 325 $(SOPHYAINCP)ppersist.h \ 326 $(SOPHYAINCP)gnumd5.h \ 327 $(SOPHYAINCP)ppfbinstream.h \ 328 $(SOPHYAINCP)rawstream.h \ 329 $(SOPHYAINCP)ppfnametag.h \ 330 $(SOPHYAINCP)ndatablock.h \ 331 $(SOPHYAINCP)utilarr.h generaldata.h \ 332 $(SOPHYAINCP)ntupintf.h poly.h peida.h \ 333 $(SOPHYAINCP)utils.h \ 334 $(SOPHYAINCP)perrors.h fmath.h 335 $(CXXCOMPILE) -o $@ $< 336 337 $(SOPHYAOBJP)median.o: median.cc 338 $(CXXCOMPILE) -o $@ $< 339 340 $(SOPHYAOBJP)ntoolsinit.o: ntoolsinit.cc \ 341 $(SOPHYAINCP)sopnamsp.h \ 342 $(SOPHYAINCP)machdefs.h ntoolsinit.h \ 343 $(SOPHYAINCP)tarrinit.h \ 344 $(SOPHYAINCP)sophyainit.h poly.h \ 345 $(SOPHYAINCP)objfio.h \ 346 $(SOPHYAINCP)anydataobj.h \ 347 $(SOPHYAINCP)ppersist.h \ 348 $(SOPHYAINCP)pexceptions.h \ 349 $(SOPHYAINCP)gnumd5.h \ 350 $(SOPHYAINCP)ppfbinstream.h \ 351 $(SOPHYAINCP)rawstream.h \ 352 $(SOPHYAINCP)ppfnametag.h peida.h \ 353 $(SOPHYAINCP)utils.h \ 354 $(SOPHYAINCP)perrors.h fmath.h \ 355 $(SOPHYAINCP)tvector.h \ 356 $(SOPHYAINCP)tmatrix.h \ 357 $(SOPHYAINCP)tarray.h \ 358 $(SOPHYAINCP)basarr.h \ 359 $(SOPHYAINCP)mutyv.h \ 360 $(SOPHYAINCP)dvlist.h \ 361 $(SOPHYAINCP)ndatablock.h \ 362 $(SOPHYAINCP)utilarr.h generaldata.h \ 363 $(SOPHYAINCP)ntupintf.h cimage.h \ 364 $(SOPHYAINCP)fioarr.h tabmath.h nbconst.h \ 365 dates.h datime.h 366 $(CXXCOMPILE) -o $@ $< 367 368 $(SOPHYAOBJP)objfitter.o: objfitter.cc \ 369 $(SOPHYAINCP)sopnamsp.h objfitter.h \ 370 $(SOPHYAINCP)machdefs.h \ 371 $(SOPHYAINCP)tmatrix.h \ 372 $(SOPHYAINCP)tarray.h \ 373 $(SOPHYAINCP)basarr.h \ 374 $(SOPHYAINCP)anydataobj.h \ 375 $(SOPHYAINCP)mutyv.h \ 376 $(SOPHYAINCP)dvlist.h \ 377 $(SOPHYAINCP)objfio.h \ 378 $(SOPHYAINCP)ppersist.h \ 379 $(SOPHYAINCP)pexceptions.h \ 380 $(SOPHYAINCP)gnumd5.h \ 381 $(SOPHYAINCP)ppfbinstream.h \ 382 $(SOPHYAINCP)rawstream.h \ 383 $(SOPHYAINCP)ppfnametag.h \ 384 $(SOPHYAINCP)ndatablock.h \ 385 $(SOPHYAINCP)utilarr.h cimage.h \ 386 $(SOPHYAINCP)fioarr.h \ 387 $(SOPHYAINCP)tvector.h \ 388 $(SOPHYAINCP)histos.h \ 389 $(SOPHYAINCP)peida.h \ 390 $(SOPHYAINCP)utils.h \ 391 $(SOPHYAINCP)perrors.h \ 392 $(SOPHYAINCP)fmath.h \ 393 $(SOPHYAINCP)histos2.h \ 394 $(SOPHYAINCP)hisprof.h generalfit.h \ 395 generaldata.h $(SOPHYAINCP)ntupintf.h \ 396 poly.h peida.h 397 $(CXXCOMPILE) -o $@ $< 398 399 $(SOPHYAOBJP)perandom.o: perandom.cc \ 400 $(SOPHYAINCP)sopnamsp.h \ 401 $(SOPHYAINCP)machdefs.h \ 402 $(SOPHYAINCP)pexceptions.h perandom.h \ 403 $(SOPHYAINCP)histos.h \ 404 $(SOPHYAINCP)objfio.h \ 405 $(SOPHYAINCP)anydataobj.h \ 406 $(SOPHYAINCP)ppersist.h \ 407 $(SOPHYAINCP)gnumd5.h \ 408 $(SOPHYAINCP)ppfbinstream.h \ 409 $(SOPHYAINCP)rawstream.h \ 410 $(SOPHYAINCP)ppfnametag.h \ 411 $(SOPHYAINCP)peida.h \ 412 $(SOPHYAINCP)utils.h \ 413 $(SOPHYAINCP)perrors.h \ 414 $(SOPHYAINCP)fmath.h \ 415 $(SOPHYAINCP)tvector.h \ 416 $(SOPHYAINCP)tmatrix.h \ 417 $(SOPHYAINCP)tarray.h \ 418 $(SOPHYAINCP)basarr.h \ 419 $(SOPHYAINCP)mutyv.h \ 420 $(SOPHYAINCP)dvlist.h \ 421 $(SOPHYAINCP)ndatablock.h \ 422 $(SOPHYAINCP)utilarr.h nbrandom.h \ 423 $(SOPHYAINCP)srandgen.h pemath.h 424 $(CXXCOMPILE) -o $@ $< 425 426 $(SOPHYAOBJP)poly.o: poly.cc $(SOPHYAINCP)sopnamsp.h \ 427 $(SOPHYAINCP)machdefs.h poly.h \ 428 $(SOPHYAINCP)objfio.h \ 429 $(SOPHYAINCP)anydataobj.h \ 430 $(SOPHYAINCP)ppersist.h \ 431 $(SOPHYAINCP)pexceptions.h \ 432 $(SOPHYAINCP)gnumd5.h \ 433 $(SOPHYAINCP)ppfbinstream.h \ 434 $(SOPHYAINCP)rawstream.h \ 435 $(SOPHYAINCP)ppfnametag.h peida.h \ 436 $(SOPHYAINCP)utils.h \ 437 $(SOPHYAINCP)perrors.h fmath.h \ 438 $(SOPHYAINCP)tvector.h \ 439 $(SOPHYAINCP)tmatrix.h \ 440 $(SOPHYAINCP)tarray.h \ 441 $(SOPHYAINCP)basarr.h \ 442 $(SOPHYAINCP)mutyv.h \ 443 $(SOPHYAINCP)dvlist.h \ 444 $(SOPHYAINCP)ndatablock.h \ 445 $(SOPHYAINCP)utilarr.h linfit.h \ 446 $(SOPHYAINCP)sopemtx.h \ 447 $(SOPHYAINCP)fioarr.h 448 $(CXXCOMPILE) -o $@ $< 449 450 $(SOPHYAOBJP)rk4cdifeq.o: rk4cdifeq.cc \ 451 $(SOPHYAINCP)sopnamsp.h \ 452 $(SOPHYAINCP)machdefs.h rk4cdifeq.h \ 453 difeq.h $(SOPHYAINCP)pexceptions.h \ 454 $(SOPHYAINCP)tvector.h \ 455 $(SOPHYAINCP)tmatrix.h \ 456 $(SOPHYAINCP)tarray.h \ 457 $(SOPHYAINCP)basarr.h \ 458 $(SOPHYAINCP)anydataobj.h \ 459 $(SOPHYAINCP)mutyv.h \ 460 $(SOPHYAINCP)dvlist.h \ 461 $(SOPHYAINCP)objfio.h \ 462 $(SOPHYAINCP)ppersist.h \ 463 $(SOPHYAINCP)gnumd5.h \ 464 $(SOPHYAINCP)ppfbinstream.h \ 465 $(SOPHYAINCP)rawstream.h \ 466 $(SOPHYAINCP)ppfnametag.h \ 467 $(SOPHYAINCP)ndatablock.h \ 468 $(SOPHYAINCP)utilarr.h \ 469 $(SOPHYAINCP)ctimer.h 470 $(CXXCOMPILE) -o $@ $< 471 472 $(SOPHYAOBJP)simplesort.o: simplesort.cc \ 473 $(SOPHYAINCP)sopnamsp.h \ 474 $(SOPHYAINCP)machdefs.h simplesort.h \ 475 peida.h $(SOPHYAINCP)utils.h \ 476 $(SOPHYAINCP)perrors.h \ 477 $(SOPHYAINCP)pexceptions.h fmath.h 478 $(CXXCOMPILE) -o $@ $< 479 480 $(SOPHYAOBJP)simplex.o: simplex.cc \ 481 $(SOPHYAINCP)sopnamsp.h simplex.h \ 482 $(SOPHYAINCP)machdefs.h \ 483 $(SOPHYAINCP)tvector.h \ 484 $(SOPHYAINCP)tmatrix.h \ 485 $(SOPHYAINCP)tarray.h \ 486 $(SOPHYAINCP)basarr.h \ 487 $(SOPHYAINCP)anydataobj.h \ 488 $(SOPHYAINCP)mutyv.h \ 489 $(SOPHYAINCP)dvlist.h \ 490 $(SOPHYAINCP)objfio.h \ 491 $(SOPHYAINCP)ppersist.h \ 492 $(SOPHYAINCP)pexceptions.h \ 493 $(SOPHYAINCP)gnumd5.h \ 494 $(SOPHYAINCP)ppfbinstream.h \ 495 $(SOPHYAINCP)rawstream.h \ 496 $(SOPHYAINCP)ppfnametag.h \ 497 $(SOPHYAINCP)ndatablock.h \ 498 $(SOPHYAINCP)utilarr.h generalfit.h \ 499 generaldata.h $(SOPHYAINCP)ntupintf.h \ 500 poly.h peida.h $(SOPHYAINCP)utils.h \ 501 $(SOPHYAINCP)perrors.h fmath.h \ 502 $(SOPHYAINCP)ntuple.h \ 503 $(SOPHYAINCP)timing.h 504 $(CXXCOMPILE) -o $@ $< 505 506 $(SOPHYAOBJP)tabmath.o: tabmath.cc \ 507 $(SOPHYAINCP)sopnamsp.h \ 508 $(SOPHYAINCP)machdefs.h tabmath.h peida.h \ 509 $(SOPHYAINCP)utils.h \ 510 $(SOPHYAINCP)perrors.h \ 511 $(SOPHYAINCP)pexceptions.h fmath.h \ 512 nbconst.h 513 $(CXXCOMPILE) -o $@ $< 514 515 $(SOPHYAOBJP)datime.o: datime.c $(SOPHYAINCP)machdefs.h \ 516 $(SOPHYAINCP)strutil.h nbconst.h datime.h 517 $(CCOMPILE) -o $@ $< 518 519 $(SOPHYAOBJP)fftmayer_r4.o: fftmayer_r4.c fftmayer.h \ 520 $(SOPHYAINCP)machdefs.h trigtbl.h 521 $(CCOMPILE) -o $@ $< 522 523 $(SOPHYAOBJP)fftmayer_r8.o: fftmayer_r8.c fftmayer.h \ 524 $(SOPHYAINCP)machdefs.h trigtbl.h 525 $(CCOMPILE) -o $@ $< 526 527 $(SOPHYAOBJP)fftpackc.o: fftpackc.c fftpackc.h \ 528 $(SOPHYAINCP)machdefs.h 529 $(CCOMPILE) -o $@ $< 530 531 $(SOPHYAOBJP)matxop.o: matxop.c matxop.h nbmath.h \ 532 $(SOPHYAINCP)machdefs.h \ 533 $(SOPHYAINCP)smathconst.h 534 $(CCOMPILE) -o $@ $< 535 536 $(SOPHYAOBJP)nbmath.o: nbmath.c nbmath.h \ 537 $(SOPHYAINCP)machdefs.h \ 538 $(SOPHYAINCP)smathconst.h matxop.h \ 539 nbinteg.h nbtri.h 540 $(CCOMPILE) -o $@ $< 541 542 $(SOPHYAOBJP)nbtri.o: nbtri.c nbtri.h \ 543 $(SOPHYAINCP)machdefs.h 544 $(CCOMPILE) -o $@ $< 545 -
trunk/SophyaLib/NTools/objlist.list
r2650 r2743 1 FSAppIrrSmpl.o2 1 cimage.o 3 2 cspline.o … … 15 14 fftpserver.o 16 15 fftservintf.o 16 FSAppIrrSmpl.o 17 17 functab.o 18 18 generaldata.o -
trunk/SophyaLib/SUtils/Makefile
r1837 r2743 1 include ../ Mgr/Makefile.h1 include ../BuildMgr/sophyamake.inc 2 2 3 all: $(LIB)libSUtils.a 3 all: $(SOPHYALIBP)libSUtils.a 4 4 5 clean: 5 rm -f $(OBJ)datacards.o $(OBJ)strutilxx.o $(OBJ)utils.o $(OBJ)strutil.o 6 rm -f $(LIB)libSUtils.a 7 $(LIB)libSUtils.a : $(OBJ)datacards.o $(OBJ)strutil.o $(OBJ)strutilxx.o $(OBJ)utils.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 6 rm -f $(SOPHYAOBJP)datacards.o $(SOPHYAOBJP)strutilxx.o $(SOPHYAOBJP)utils.o $(SOPHYAOBJP)strutil.o 7 rm -f $(SOPHYALIBP)libSUtils.a 12 8 13 $(OBJ)datacards.o: datacards.cc $(INC)machdefs.h \ 14 datacards.h $(INC)pexceptions.h 15 $(OBJ)strutilxx.o: strutilxx.cc $(INC)machdefs.h \ 16 strutilxx.h 17 $(OBJ)utils.o: utils.cc $(INC)machdefs.h utils.h \ 18 $(INC)pexceptions.h 19 $(OBJ)strutil.o: strutil.c strutil.h 9 $(SOPHYALIBP)libSUtils.a : $(SOPHYAOBJP)datacards.o $(SOPHYAOBJP)strutil.o $(SOPHYAOBJP)strutilxx.o $(SOPHYAOBJP)utils.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)datacards.o: datacards.cc \ 13 $(SOPHYAINCP)sopnamsp.h \ 14 $(SOPHYAINCP)machdefs.h datacards.h \ 15 $(SOPHYAINCP)pexceptions.h 16 $(CXXCOMPILE) -o $@ $< 17 18 $(SOPHYAOBJP)strutilxx.o: strutilxx.cc \ 19 $(SOPHYAINCP)sopnamsp.h \ 20 $(SOPHYAINCP)machdefs.h strutilxx.h 21 $(CXXCOMPILE) -o $@ $< 22 23 $(SOPHYAOBJP)utils.o: utils.cc $(SOPHYAINCP)sopnamsp.h \ 24 $(SOPHYAINCP)machdefs.h utils.h \ 25 $(SOPHYAINCP)pexceptions.h 26 $(CXXCOMPILE) -o $@ $< 27 28 $(SOPHYAOBJP)strutil.o: strutil.c strutil.h 29 $(CCOMPILE) -o $@ $< 30 -
trunk/SophyaLib/Samba/Makefile
r2644 r2743 1 include ../ Mgr/Makefile.h1 include ../BuildMgr/sophyamake.inc 2 2 3 all: $(LIB)libSamba.a 3 all: $(SOPHYALIBP)libSamba.a 4 4 5 clean: 5 rm -f $(OBJ)alm.o $(OBJ)bruit.o $(OBJ)circle.o $(OBJ)datacirclefake.o $(OBJ)harmspher.o $(OBJ)lambdaBuilder.o $(OBJ)mlobe.o $(OBJ)sambainit.o $(OBJ)scan.o $(OBJ)sphericaltransformserver.o 6 rm -f $(LIB)libSamba.a 7 $(LIB)libSamba.a : $(OBJ)alm.o $(OBJ)bruit.o $(OBJ)circle.o $(OBJ)datacirclefake.o $(OBJ)harmspher.o $(OBJ)lambdaBuilder.o $(OBJ)mlobe.o $(OBJ)sambainit.o $(OBJ)scan.o $(OBJ)sphericaltransformserver.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 6 rm -f $(SOPHYAOBJP)alm.o $(SOPHYAOBJP)bruit.o $(SOPHYAOBJP)circle.o $(SOPHYAOBJP)datacirclefake.o $(SOPHYAOBJP)harmspher.o $(SOPHYAOBJP)lambdaBuilder.o $(SOPHYAOBJP)mlobe.o $(SOPHYAOBJP)sambainit.o $(SOPHYAOBJP)scan.o $(SOPHYAOBJP)sphericaltransformserver.o 7 rm -f $(SOPHYALIBP)libSamba.a 12 8 13 $(OBJ)alm.o: alm.cc $(INC)sopnamsp.h \ 14 alm.h $(INC)nbrandom.h \ 15 $(INC)srandgen.h \ 16 $(INC)machdefs.h \ 17 $(INC)nbmath.h \ 18 $(INC)smathconst.h \ 19 $(INC)triangmtx.h \ 20 $(INC)ndatablock.h \ 21 $(INC)anydataobj.h \ 22 $(INC)pexceptions.h \ 23 $(INC)tvector.h \ 24 $(INC)tmatrix.h \ 25 $(INC)tarray.h \ 26 $(INC)basarr.h \ 27 $(INC)mutyv.h \ 28 $(INC)dvlist.h \ 29 $(INC)objfio.h \ 30 $(INC)ppersist.h \ 31 $(INC)gnumd5.h \ 32 $(INC)ppfbinstream.h \ 33 $(INC)rawstream.h \ 34 $(INC)ppfnametag.h \ 35 $(INC)utilarr.h 36 $(OBJ)bruit.o: bruit.cc \ 37 $(INC)sopnamsp.h \ 38 $(INC)fmath.h bruit.h \ 39 $(INC)nbrandom.h \ 40 $(INC)srandgen.h \ 41 $(INC)machdefs.h 42 $(OBJ)circle.o: circle.cc \ 43 $(INC)sopnamsp.h circle.h \ 44 $(INC)vector3d.h \ 45 $(INC)longlat.h \ 46 $(INC)machdefs.h \ 47 $(INC)utilgeom.h \ 48 $(INC)unitvector.h geometry.h 49 $(OBJ)datacirclefake.o: datacirclefake.cc \ 50 $(INC)sopnamsp.h \ 51 datacirclefake.h datacirclebase.h circle.h \ 52 $(INC)vector3d.h \ 53 $(INC)longlat.h \ 54 $(INC)machdefs.h \ 55 $(INC)utilgeom.h \ 56 $(INC)unitvector.h geometry.h 57 $(OBJ)harmspher.o: harmspher.cc \ 58 $(INC)machdefs.h harmspher.h 59 $(OBJ)lambdaBuilder.o: lambdaBuilder.cc \ 60 $(INC)sopnamsp.h lambdaBuilder.h \ 61 $(INC)ndatablock.h \ 62 $(INC)machdefs.h \ 63 $(INC)anydataobj.h \ 64 $(INC)tvector.h \ 65 $(INC)tmatrix.h \ 66 $(INC)tarray.h \ 67 $(INC)basarr.h \ 68 $(INC)mutyv.h \ 69 $(INC)dvlist.h \ 70 $(INC)objfio.h \ 71 $(INC)ppersist.h \ 72 $(INC)pexceptions.h \ 73 $(INC)gnumd5.h \ 74 $(INC)ppfbinstream.h \ 75 $(INC)rawstream.h \ 76 $(INC)ppfnametag.h \ 77 $(INC)utilarr.h alm.h \ 78 $(INC)nbrandom.h \ 79 $(INC)srandgen.h \ 80 $(INC)nbmath.h \ 81 $(INC)smathconst.h \ 82 $(INC)triangmtx.h \ 83 $(INC)nbconst.h 84 $(OBJ)mlobe.o: mlobe.cc \ 85 $(INC)sopnamsp.h mlobe.h \ 86 $(INC)sphericalmap.h \ 87 $(INC)smathconst.h \ 88 $(INC)machdefs.h \ 89 $(INC)pixelmap.h \ 90 $(INC)ppersist.h \ 91 $(INC)pexceptions.h \ 92 $(INC)gnumd5.h \ 93 $(INC)ppfbinstream.h \ 94 $(INC)rawstream.h \ 95 $(INC)ppfnametag.h \ 96 $(INC)dvlist.h \ 97 $(INC)objfio.h \ 98 $(INC)anydataobj.h \ 99 $(INC)mutyv.h \ 100 $(INC)spherepos.h \ 101 $(INC)unitvector.h \ 102 $(INC)vector3d.h \ 103 $(INC)longlat.h \ 104 $(INC)utilgeom.h \ 105 $(INC)tvector.h \ 106 $(INC)tmatrix.h \ 107 $(INC)tarray.h \ 108 $(INC)basarr.h \ 109 $(INC)ndatablock.h \ 110 $(INC)utilarr.h \ 111 $(INC)timing.h 112 $(OBJ)sambainit.o: sambainit.cc \ 113 $(INC)sopnamsp.h sambainit.h \ 114 $(INC)skymapinit.h \ 115 $(INC)sophyainit.h \ 116 $(INC)machdefs.h \ 117 $(INC)ntoolsinit.h \ 118 $(INC)tarrinit.h 119 $(OBJ)scan.o: scan.cc $(INC)sopnamsp.h \ 120 $(INC)machdefs.h scan.h \ 121 $(INC)ppersist.h \ 122 $(INC)pexceptions.h \ 123 $(INC)gnumd5.h \ 124 $(INC)ppfbinstream.h \ 125 $(INC)rawstream.h \ 126 $(INC)ppfnametag.h \ 127 $(INC)dvlist.h \ 128 $(INC)objfio.h \ 129 $(INC)anydataobj.h \ 130 $(INC)mutyv.h \ 131 $(INC)ndatablock.h \ 132 $(INC)fiondblock.h \ 133 $(INC)smathconst.h 134 $(OBJ)sphericaltransformserver.o: sphericaltransformserver.cc \ 135 $(INC)sopnamsp.h \ 136 $(INC)machdefs.h \ 137 sphericaltransformserver.h \ 138 $(INC)sphericalmap.h \ 139 $(INC)smathconst.h \ 140 $(INC)pixelmap.h \ 141 $(INC)ppersist.h \ 142 $(INC)pexceptions.h \ 143 $(INC)gnumd5.h \ 144 $(INC)ppfbinstream.h \ 145 $(INC)rawstream.h \ 146 $(INC)ppfnametag.h \ 147 $(INC)dvlist.h \ 148 $(INC)objfio.h \ 149 $(INC)anydataobj.h \ 150 $(INC)mutyv.h \ 151 $(INC)spherepos.h \ 152 $(INC)unitvector.h \ 153 $(INC)vector3d.h \ 154 $(INC)longlat.h \ 155 $(INC)utilgeom.h \ 156 $(INC)tvector.h \ 157 $(INC)tmatrix.h \ 158 $(INC)tarray.h \ 159 $(INC)basarr.h \ 160 $(INC)ndatablock.h \ 161 $(INC)utilarr.h \ 162 $(INC)fftservintf.h \ 163 $(INC)fftpserver.h alm.h \ 164 $(INC)nbrandom.h \ 165 $(INC)srandgen.h \ 166 $(INC)nbmath.h \ 167 $(INC)triangmtx.h \ 168 lambdaBuilder.h $(INC)timing.h 9 $(SOPHYALIBP)libSamba.a : $(SOPHYAOBJP)alm.o $(SOPHYAOBJP)bruit.o $(SOPHYAOBJP)circle.o $(SOPHYAOBJP)datacirclefake.o $(SOPHYAOBJP)harmspher.o $(SOPHYAOBJP)lambdaBuilder.o $(SOPHYAOBJP)mlobe.o $(SOPHYAOBJP)sambainit.o $(SOPHYAOBJP)scan.o $(SOPHYAOBJP)sphericaltransformserver.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)alm.o: alm.cc $(SOPHYAINCP)sopnamsp.h alm.h \ 13 $(SOPHYAINCP)nbrandom.h \ 14 $(SOPHYAINCP)srandgen.h \ 15 $(SOPHYAINCP)machdefs.h \ 16 $(SOPHYAINCP)nbmath.h \ 17 $(SOPHYAINCP)smathconst.h \ 18 $(SOPHYAINCP)triangmtx.h \ 19 $(SOPHYAINCP)ndatablock.h \ 20 $(SOPHYAINCP)anydataobj.h \ 21 $(SOPHYAINCP)pexceptions.h \ 22 $(SOPHYAINCP)tvector.h \ 23 $(SOPHYAINCP)tmatrix.h \ 24 $(SOPHYAINCP)tarray.h \ 25 $(SOPHYAINCP)basarr.h \ 26 $(SOPHYAINCP)mutyv.h \ 27 $(SOPHYAINCP)dvlist.h \ 28 $(SOPHYAINCP)objfio.h \ 29 $(SOPHYAINCP)ppersist.h \ 30 $(SOPHYAINCP)gnumd5.h \ 31 $(SOPHYAINCP)ppfbinstream.h \ 32 $(SOPHYAINCP)rawstream.h \ 33 $(SOPHYAINCP)ppfnametag.h \ 34 $(SOPHYAINCP)utilarr.h 35 $(CXXCOMPILE) -o $@ $< 36 37 $(SOPHYAOBJP)bruit.o: bruit.cc $(SOPHYAINCP)sopnamsp.h \ 38 $(SOPHYAINCP)fmath.h bruit.h \ 39 $(SOPHYAINCP)nbrandom.h \ 40 $(SOPHYAINCP)srandgen.h \ 41 $(SOPHYAINCP)machdefs.h 42 $(CXXCOMPILE) -o $@ $< 43 44 $(SOPHYAOBJP)circle.o: circle.cc $(SOPHYAINCP)sopnamsp.h \ 45 circle.h $(SOPHYAINCP)vector3d.h \ 46 $(SOPHYAINCP)longlat.h \ 47 $(SOPHYAINCP)machdefs.h \ 48 $(SOPHYAINCP)utilgeom.h \ 49 $(SOPHYAINCP)unitvector.h geometry.h 50 $(CXXCOMPILE) -o $@ $< 51 52 $(SOPHYAOBJP)datacirclefake.o: datacirclefake.cc \ 53 $(SOPHYAINCP)sopnamsp.h datacirclefake.h \ 54 datacirclebase.h circle.h \ 55 $(SOPHYAINCP)vector3d.h \ 56 $(SOPHYAINCP)longlat.h \ 57 $(SOPHYAINCP)machdefs.h \ 58 $(SOPHYAINCP)utilgeom.h \ 59 $(SOPHYAINCP)unitvector.h geometry.h 60 $(CXXCOMPILE) -o $@ $< 61 62 $(SOPHYAOBJP)harmspher.o: harmspher.cc \ 63 $(SOPHYAINCP)machdefs.h harmspher.h 64 $(CXXCOMPILE) -o $@ $< 65 66 $(SOPHYAOBJP)lambdaBuilder.o: lambdaBuilder.cc \ 67 $(SOPHYAINCP)sopnamsp.h lambdaBuilder.h \ 68 $(SOPHYAINCP)ndatablock.h \ 69 $(SOPHYAINCP)machdefs.h \ 70 $(SOPHYAINCP)anydataobj.h \ 71 $(SOPHYAINCP)tvector.h \ 72 $(SOPHYAINCP)tmatrix.h \ 73 $(SOPHYAINCP)tarray.h \ 74 $(SOPHYAINCP)basarr.h \ 75 $(SOPHYAINCP)mutyv.h \ 76 $(SOPHYAINCP)dvlist.h \ 77 $(SOPHYAINCP)objfio.h \ 78 $(SOPHYAINCP)ppersist.h \ 79 $(SOPHYAINCP)pexceptions.h \ 80 $(SOPHYAINCP)gnumd5.h \ 81 $(SOPHYAINCP)ppfbinstream.h \ 82 $(SOPHYAINCP)rawstream.h \ 83 $(SOPHYAINCP)ppfnametag.h \ 84 $(SOPHYAINCP)utilarr.h alm.h \ 85 $(SOPHYAINCP)nbrandom.h \ 86 $(SOPHYAINCP)srandgen.h \ 87 $(SOPHYAINCP)nbmath.h \ 88 $(SOPHYAINCP)smathconst.h \ 89 $(SOPHYAINCP)triangmtx.h \ 90 $(SOPHYAINCP)nbconst.h 91 $(CXXCOMPILE) -o $@ $< 92 93 $(SOPHYAOBJP)mlobe.o: mlobe.cc $(SOPHYAINCP)sopnamsp.h \ 94 mlobe.h $(SOPHYAINCP)sphericalmap.h \ 95 $(SOPHYAINCP)smathconst.h \ 96 $(SOPHYAINCP)machdefs.h \ 97 $(SOPHYAINCP)pixelmap.h \ 98 $(SOPHYAINCP)ppersist.h \ 99 $(SOPHYAINCP)pexceptions.h \ 100 $(SOPHYAINCP)gnumd5.h \ 101 $(SOPHYAINCP)ppfbinstream.h \ 102 $(SOPHYAINCP)rawstream.h \ 103 $(SOPHYAINCP)ppfnametag.h \ 104 $(SOPHYAINCP)dvlist.h \ 105 $(SOPHYAINCP)objfio.h \ 106 $(SOPHYAINCP)anydataobj.h \ 107 $(SOPHYAINCP)mutyv.h \ 108 $(SOPHYAINCP)spherepos.h \ 109 $(SOPHYAINCP)unitvector.h \ 110 $(SOPHYAINCP)vector3d.h \ 111 $(SOPHYAINCP)longlat.h \ 112 $(SOPHYAINCP)utilgeom.h \ 113 $(SOPHYAINCP)tvector.h \ 114 $(SOPHYAINCP)tmatrix.h \ 115 $(SOPHYAINCP)tarray.h \ 116 $(SOPHYAINCP)basarr.h \ 117 $(SOPHYAINCP)ndatablock.h \ 118 $(SOPHYAINCP)utilarr.h \ 119 $(SOPHYAINCP)timing.h 120 $(CXXCOMPILE) -o $@ $< 121 122 $(SOPHYAOBJP)sambainit.o: sambainit.cc \ 123 $(SOPHYAINCP)sopnamsp.h sambainit.h \ 124 $(SOPHYAINCP)skymapinit.h \ 125 $(SOPHYAINCP)sophyainit.h \ 126 $(SOPHYAINCP)machdefs.h \ 127 $(SOPHYAINCP)ntoolsinit.h \ 128 $(SOPHYAINCP)tarrinit.h 129 $(CXXCOMPILE) -o $@ $< 130 131 $(SOPHYAOBJP)scan.o: scan.cc $(SOPHYAINCP)sopnamsp.h \ 132 $(SOPHYAINCP)machdefs.h scan.h \ 133 $(SOPHYAINCP)ppersist.h \ 134 $(SOPHYAINCP)pexceptions.h \ 135 $(SOPHYAINCP)gnumd5.h \ 136 $(SOPHYAINCP)ppfbinstream.h \ 137 $(SOPHYAINCP)rawstream.h \ 138 $(SOPHYAINCP)ppfnametag.h \ 139 $(SOPHYAINCP)dvlist.h \ 140 $(SOPHYAINCP)objfio.h \ 141 $(SOPHYAINCP)anydataobj.h \ 142 $(SOPHYAINCP)mutyv.h \ 143 $(SOPHYAINCP)ndatablock.h \ 144 $(SOPHYAINCP)fiondblock.h \ 145 $(SOPHYAINCP)smathconst.h 146 $(CXXCOMPILE) -o $@ $< 147 148 $(SOPHYAOBJP)sphericaltransformserver.o: sphericaltransformserver.cc \ 149 $(SOPHYAINCP)sopnamsp.h \ 150 $(SOPHYAINCP)machdefs.h \ 151 sphericaltransformserver.h \ 152 $(SOPHYAINCP)sphericalmap.h \ 153 $(SOPHYAINCP)smathconst.h \ 154 $(SOPHYAINCP)pixelmap.h \ 155 $(SOPHYAINCP)ppersist.h \ 156 $(SOPHYAINCP)pexceptions.h \ 157 $(SOPHYAINCP)gnumd5.h \ 158 $(SOPHYAINCP)ppfbinstream.h \ 159 $(SOPHYAINCP)rawstream.h \ 160 $(SOPHYAINCP)ppfnametag.h \ 161 $(SOPHYAINCP)dvlist.h \ 162 $(SOPHYAINCP)objfio.h \ 163 $(SOPHYAINCP)anydataobj.h \ 164 $(SOPHYAINCP)mutyv.h \ 165 $(SOPHYAINCP)spherepos.h \ 166 $(SOPHYAINCP)unitvector.h \ 167 $(SOPHYAINCP)vector3d.h \ 168 $(SOPHYAINCP)longlat.h \ 169 $(SOPHYAINCP)utilgeom.h \ 170 $(SOPHYAINCP)tvector.h \ 171 $(SOPHYAINCP)tmatrix.h \ 172 $(SOPHYAINCP)tarray.h \ 173 $(SOPHYAINCP)basarr.h \ 174 $(SOPHYAINCP)ndatablock.h \ 175 $(SOPHYAINCP)utilarr.h \ 176 $(SOPHYAINCP)fftservintf.h \ 177 $(SOPHYAINCP)fftpserver.h alm.h \ 178 $(SOPHYAINCP)nbrandom.h \ 179 $(SOPHYAINCP)srandgen.h \ 180 $(SOPHYAINCP)nbmath.h \ 181 $(SOPHYAINCP)triangmtx.h lambdaBuilder.h \ 182 $(SOPHYAINCP)timing.h 183 $(CXXCOMPILE) -o $@ $< 184 -
trunk/SophyaLib/SkyMap/Makefile
r2610 r2743 1 include ../Mgr/Makefile.h 2 3 all: $(LIB)libSkyMap.a 1 include ../BuildMgr/sophyamake.inc 2 3 all: $(SOPHYALIBP)libSkyMap.a 4 4 5 clean: 5 rm -f $(OBJ)HEALPixUtils.o $(OBJ)fiolocalmap.o $(OBJ)fiosphereecp.o $(OBJ)fiospherehealpix.o $(OBJ)fiospherethetaphi.o $(OBJ)localmap.o $(OBJ)longlat.o $(OBJ)mapoperation.o $(OBJ)skymapinit.o $(OBJ)sphereecp.o $(OBJ)spherehealpix.o $(OBJ)spherepos.o $(OBJ)spherethetaphi.o $(OBJ)unitvector.o $(OBJ)utilgeom.o $(OBJ)vector3d.o 6 rm -f $(LIB)libSkyMap.a 7 $(LIB)libSkyMap.a : $(OBJ)HEALPixUtils.o $(OBJ)fiolocalmap.o $(OBJ)fiosphereecp.o $(OBJ)fiospherehealpix.o $(OBJ)fiospherethetaphi.o $(OBJ)localmap.o $(OBJ)longlat.o $(OBJ)mapoperation.o $(OBJ)skymapinit.o $(OBJ)sphereecp.o $(OBJ)spherehealpix.o $(OBJ)spherepos.o $(OBJ)spherethetaphi.o $(OBJ)unitvector.o $(OBJ)utilgeom.o $(OBJ)vector3d.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 12 13 $(OBJ)HEALPixUtils.o: HEALPixUtils.cc HEALPixUtils.h \ 14 $(INC)machdefs.h \ 15 $(INC)ndatablock.h \ 16 $(INC)anydataobj.h \ 17 $(INC)tvector.h \ 18 $(INC)tmatrix.h \ 19 $(INC)tarray.h \ 20 $(INC)basarr.h \ 21 $(INC)mutyv.h \ 22 $(INC)dvlist.h \ 23 $(INC)objfio.h \ 24 $(INC)ppersist.h \ 25 $(INC)pexceptions.h \ 26 $(INC)gnumd5.h \ 27 $(INC)ppfbinstream.h \ 28 $(INC)rawstream.h \ 29 $(INC)ppfnametag.h \ 30 $(INC)utilarr.h \ 31 $(INC)smathconst.h 32 $(OBJ)fiolocalmap.o: fiolocalmap.cc fiolocalmap.h sphericalmap.h \ 33 $(INC)smathconst.h \ 34 $(INC)machdefs.h pixelmap.h \ 35 $(INC)ppersist.h \ 36 $(INC)pexceptions.h \ 37 $(INC)gnumd5.h \ 38 $(INC)ppfbinstream.h \ 39 $(INC)rawstream.h \ 40 $(INC)ppfnametag.h \ 41 $(INC)dvlist.h \ 42 $(INC)objfio.h \ 43 $(INC)anydataobj.h \ 44 $(INC)mutyv.h spherepos.h unitvector.h \ 45 vector3d.h longlat.h utilgeom.h \ 46 $(INC)tvector.h \ 47 $(INC)tmatrix.h \ 48 $(INC)tarray.h \ 49 $(INC)basarr.h \ 50 $(INC)ndatablock.h \ 51 $(INC)utilarr.h localmap.h \ 52 $(INC)fioarr.h \ 53 $(INC)fiondblock.h \ 54 $(INC)datatype.h 55 $(OBJ)fiosphereecp.o: fiosphereecp.cc fiosphereecp.h sphereecp.h \ 56 sphericalmap.h $(INC)smathconst.h \ 57 $(INC)machdefs.h pixelmap.h \ 58 $(INC)ppersist.h \ 59 $(INC)pexceptions.h \ 60 $(INC)gnumd5.h \ 61 $(INC)ppfbinstream.h \ 62 $(INC)rawstream.h \ 63 $(INC)ppfnametag.h \ 64 $(INC)dvlist.h \ 65 $(INC)objfio.h \ 66 $(INC)anydataobj.h \ 67 $(INC)mutyv.h spherepos.h unitvector.h \ 68 vector3d.h longlat.h utilgeom.h \ 69 $(INC)tvector.h \ 70 $(INC)tmatrix.h \ 71 $(INC)tarray.h \ 72 $(INC)basarr.h \ 73 $(INC)ndatablock.h \ 74 $(INC)utilarr.h \ 75 $(INC)fioarr.h \ 76 $(INC)datatype.h 77 $(OBJ)fiospherehealpix.o: fiospherehealpix.cc fiospherehealpix.h \ 78 sphericalmap.h $(INC)smathconst.h \ 79 $(INC)machdefs.h pixelmap.h \ 80 $(INC)ppersist.h \ 81 $(INC)pexceptions.h \ 82 $(INC)gnumd5.h \ 83 $(INC)ppfbinstream.h \ 84 $(INC)rawstream.h \ 85 $(INC)ppfnametag.h \ 86 $(INC)dvlist.h \ 87 $(INC)objfio.h \ 88 $(INC)anydataobj.h \ 89 $(INC)mutyv.h spherepos.h unitvector.h \ 90 vector3d.h longlat.h utilgeom.h \ 91 $(INC)tvector.h \ 92 $(INC)tmatrix.h \ 93 $(INC)tarray.h \ 94 $(INC)basarr.h \ 95 $(INC)ndatablock.h \ 96 $(INC)utilarr.h spherehealpix.h \ 97 HEALPixUtils.h $(INC)fiondblock.h \ 98 $(INC)datatype.h 99 $(OBJ)fiospherethetaphi.o: fiospherethetaphi.cc fiospherethetaphi.h \ 100 sphericalmap.h $(INC)smathconst.h \ 101 $(INC)machdefs.h pixelmap.h \ 102 $(INC)ppersist.h \ 103 $(INC)pexceptions.h \ 104 $(INC)gnumd5.h \ 105 $(INC)ppfbinstream.h \ 106 $(INC)rawstream.h \ 107 $(INC)ppfnametag.h \ 108 $(INC)dvlist.h \ 109 $(INC)objfio.h \ 110 $(INC)anydataobj.h \ 111 $(INC)mutyv.h spherepos.h unitvector.h \ 112 vector3d.h longlat.h utilgeom.h \ 113 $(INC)tvector.h \ 114 $(INC)tmatrix.h \ 115 $(INC)tarray.h \ 116 $(INC)basarr.h \ 117 $(INC)ndatablock.h \ 118 $(INC)utilarr.h spherethetaphi.h \ 119 $(INC)fiondblock.h \ 120 $(INC)datatype.h 121 $(OBJ)localmap.o: localmap.cc localmap.h pixelmap.h \ 122 $(INC)ppersist.h \ 123 $(INC)machdefs.h \ 124 $(INC)pexceptions.h \ 125 $(INC)gnumd5.h \ 126 $(INC)ppfbinstream.h \ 127 $(INC)rawstream.h \ 128 $(INC)ppfnametag.h \ 129 $(INC)dvlist.h \ 130 $(INC)objfio.h \ 131 $(INC)anydataobj.h \ 132 $(INC)mutyv.h spherepos.h unitvector.h \ 133 vector3d.h longlat.h utilgeom.h sphericalmap.h \ 134 $(INC)smathconst.h \ 135 $(INC)tvector.h \ 136 $(INC)tmatrix.h \ 137 $(INC)tarray.h \ 138 $(INC)basarr.h \ 139 $(INC)ndatablock.h \ 140 $(INC)utilarr.h \ 141 $(INC)fiondblock.h \ 142 $(INC)timing.h 143 $(OBJ)longlat.o: longlat.cc longlat.h \ 144 $(INC)machdefs.h utilgeom.h 145 $(OBJ)mapoperation.o: mapoperation.cc \ 146 $(INC)machdefs.h mapoperation.h \ 147 $(INC)ndatablock.h \ 148 $(INC)anydataobj.h pixelmap.h \ 149 $(INC)ppersist.h \ 150 $(INC)pexceptions.h \ 151 $(INC)gnumd5.h \ 152 $(INC)ppfbinstream.h \ 153 $(INC)rawstream.h \ 154 $(INC)ppfnametag.h \ 155 $(INC)dvlist.h \ 156 $(INC)objfio.h \ 157 $(INC)mutyv.h spherepos.h unitvector.h \ 158 vector3d.h longlat.h utilgeom.h 159 $(OBJ)skymapinit.o: skymapinit.cc $(INC)machdefs.h \ 160 skymapinit.h $(INC)sophyainit.h \ 161 spherethetaphi.h sphericalmap.h \ 162 $(INC)smathconst.h pixelmap.h \ 163 $(INC)ppersist.h \ 164 $(INC)pexceptions.h \ 165 $(INC)gnumd5.h \ 166 $(INC)ppfbinstream.h \ 167 $(INC)rawstream.h \ 168 $(INC)ppfnametag.h \ 169 $(INC)dvlist.h \ 170 $(INC)objfio.h \ 171 $(INC)anydataobj.h \ 172 $(INC)mutyv.h spherepos.h unitvector.h \ 173 vector3d.h longlat.h utilgeom.h \ 174 $(INC)tvector.h \ 175 $(INC)tmatrix.h \ 176 $(INC)tarray.h \ 177 $(INC)basarr.h \ 178 $(INC)ndatablock.h \ 179 $(INC)utilarr.h fiospherehealpix.h \ 180 spherehealpix.h HEALPixUtils.h fiospherethetaphi.h fiolocalmap.h \ 181 localmap.h fiosphereecp.h sphereecp.h 182 $(OBJ)sphereecp.o: sphereecp.cc sphereecp.h sphericalmap.h \ 183 $(INC)smathconst.h \ 184 $(INC)machdefs.h pixelmap.h \ 185 $(INC)ppersist.h \ 186 $(INC)pexceptions.h \ 187 $(INC)gnumd5.h \ 188 $(INC)ppfbinstream.h \ 189 $(INC)rawstream.h \ 190 $(INC)ppfnametag.h \ 191 $(INC)dvlist.h \ 192 $(INC)objfio.h \ 193 $(INC)anydataobj.h \ 194 $(INC)mutyv.h spherepos.h unitvector.h \ 195 vector3d.h longlat.h utilgeom.h \ 196 $(INC)tvector.h \ 197 $(INC)tmatrix.h \ 198 $(INC)tarray.h \ 199 $(INC)basarr.h \ 200 $(INC)ndatablock.h \ 201 $(INC)utilarr.h 202 $(OBJ)spherehealpix.o: spherehealpix.cc \ 203 $(INC)machdefs.h \ 204 $(INC)pexceptions.h \ 205 $(INC)fiondblock.h \ 206 $(INC)ppersist.h \ 207 $(INC)gnumd5.h \ 208 $(INC)ppfbinstream.h \ 209 $(INC)rawstream.h \ 210 $(INC)ppfnametag.h \ 211 $(INC)ndatablock.h \ 212 $(INC)anydataobj.h spherehealpix.h \ 213 sphericalmap.h $(INC)smathconst.h pixelmap.h \ 214 $(INC)dvlist.h \ 215 $(INC)objfio.h \ 216 $(INC)mutyv.h spherepos.h unitvector.h \ 217 vector3d.h longlat.h utilgeom.h \ 218 $(INC)tvector.h \ 219 $(INC)tmatrix.h \ 220 $(INC)tarray.h \ 221 $(INC)basarr.h \ 222 $(INC)utilarr.h HEALPixUtils.h \ 223 $(INC)strutil.h 224 $(OBJ)spherepos.o: spherepos.cc spherepos.h \ 225 $(INC)machdefs.h \ 226 $(INC)ppersist.h \ 227 $(INC)pexceptions.h \ 228 $(INC)gnumd5.h \ 229 $(INC)ppfbinstream.h \ 230 $(INC)rawstream.h \ 231 $(INC)ppfnametag.h unitvector.h vector3d.h \ 232 longlat.h utilgeom.h $(INC)anydataobj.h \ 233 $(INC)datatype.h 234 $(OBJ)spherethetaphi.o: spherethetaphi.cc spherethetaphi.h sphericalmap.h \ 235 $(INC)smathconst.h \ 236 $(INC)machdefs.h pixelmap.h \ 237 $(INC)ppersist.h \ 238 $(INC)pexceptions.h \ 239 $(INC)gnumd5.h \ 240 $(INC)ppfbinstream.h \ 241 $(INC)rawstream.h \ 242 $(INC)ppfnametag.h \ 243 $(INC)dvlist.h \ 244 $(INC)objfio.h \ 245 $(INC)anydataobj.h \ 246 $(INC)mutyv.h spherepos.h unitvector.h \ 247 vector3d.h longlat.h utilgeom.h \ 248 $(INC)tvector.h \ 249 $(INC)tmatrix.h \ 250 $(INC)tarray.h \ 251 $(INC)basarr.h \ 252 $(INC)ndatablock.h \ 253 $(INC)utilarr.h \ 254 $(INC)fiondblock.h 255 $(OBJ)unitvector.o: unitvector.cc unitvector.h vector3d.h longlat.h \ 256 $(INC)machdefs.h utilgeom.h 257 $(OBJ)utilgeom.o: utilgeom.cc $(INC)machdefs.h \ 258 utilgeom.h 259 $(OBJ)vector3d.o: vector3d.cc $(INC)machdefs.h \ 260 $(INC)pexceptions.h vector3d.h longlat.h \ 261 utilgeom.h 6 rm -f $(SOPHYAOBJP)fiolocalmap.o $(SOPHYAOBJP)fiosphereecp.o $(SOPHYAOBJP)fiospherehealpix.o $(SOPHYAOBJP)fiospherethetaphi.o $(SOPHYAOBJP)HEALPixUtils.o $(SOPHYAOBJP)localmap.o $(SOPHYAOBJP)longlat.o $(SOPHYAOBJP)mapoperation.o $(SOPHYAOBJP)skymapinit.o $(SOPHYAOBJP)sphereecp.o $(SOPHYAOBJP)spherehealpix.o $(SOPHYAOBJP)spherepos.o $(SOPHYAOBJP)spherethetaphi.o $(SOPHYAOBJP)unitvector.o $(SOPHYAOBJP)utilgeom.o $(SOPHYAOBJP)vector3d.o 7 rm -f $(SOPHYALIBP)libSkyMap.a 8 9 $(SOPHYALIBP)libSkyMap.a : $(SOPHYAOBJP)fiolocalmap.o $(SOPHYAOBJP)fiosphereecp.o $(SOPHYAOBJP)fiospherehealpix.o $(SOPHYAOBJP)fiospherethetaphi.o $(SOPHYAOBJP)HEALPixUtils.o $(SOPHYAOBJP)localmap.o $(SOPHYAOBJP)longlat.o $(SOPHYAOBJP)mapoperation.o $(SOPHYAOBJP)skymapinit.o $(SOPHYAOBJP)sphereecp.o $(SOPHYAOBJP)spherehealpix.o $(SOPHYAOBJP)spherepos.o $(SOPHYAOBJP)spherethetaphi.o $(SOPHYAOBJP)unitvector.o $(SOPHYAOBJP)utilgeom.o $(SOPHYAOBJP)vector3d.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)fiolocalmap.o: fiolocalmap.cc \ 13 $(SOPHYAINCP)sopnamsp.h fiolocalmap.h \ 14 sphericalmap.h $(SOPHYAINCP)smathconst.h \ 15 $(SOPHYAINCP)machdefs.h pixelmap.h \ 16 $(SOPHYAINCP)ppersist.h \ 17 $(SOPHYAINCP)pexceptions.h \ 18 $(SOPHYAINCP)gnumd5.h \ 19 $(SOPHYAINCP)ppfbinstream.h \ 20 $(SOPHYAINCP)rawstream.h \ 21 $(SOPHYAINCP)ppfnametag.h \ 22 $(SOPHYAINCP)dvlist.h \ 23 $(SOPHYAINCP)objfio.h \ 24 $(SOPHYAINCP)anydataobj.h \ 25 $(SOPHYAINCP)mutyv.h spherepos.h \ 26 unitvector.h vector3d.h longlat.h utilgeom.h \ 27 $(SOPHYAINCP)tvector.h \ 28 $(SOPHYAINCP)tmatrix.h \ 29 $(SOPHYAINCP)tarray.h \ 30 $(SOPHYAINCP)basarr.h \ 31 $(SOPHYAINCP)ndatablock.h \ 32 $(SOPHYAINCP)utilarr.h localmap.h \ 33 $(SOPHYAINCP)fioarr.h \ 34 $(SOPHYAINCP)fiondblock.h \ 35 $(SOPHYAINCP)datatype.h 36 $(CXXCOMPILE) -o $@ $< 37 38 $(SOPHYAOBJP)fiosphereecp.o: fiosphereecp.cc \ 39 $(SOPHYAINCP)sopnamsp.h fiosphereecp.h \ 40 sphereecp.h sphericalmap.h \ 41 $(SOPHYAINCP)smathconst.h \ 42 $(SOPHYAINCP)machdefs.h pixelmap.h \ 43 $(SOPHYAINCP)ppersist.h \ 44 $(SOPHYAINCP)pexceptions.h \ 45 $(SOPHYAINCP)gnumd5.h \ 46 $(SOPHYAINCP)ppfbinstream.h \ 47 $(SOPHYAINCP)rawstream.h \ 48 $(SOPHYAINCP)ppfnametag.h \ 49 $(SOPHYAINCP)dvlist.h \ 50 $(SOPHYAINCP)objfio.h \ 51 $(SOPHYAINCP)anydataobj.h \ 52 $(SOPHYAINCP)mutyv.h spherepos.h \ 53 unitvector.h vector3d.h longlat.h utilgeom.h \ 54 $(SOPHYAINCP)tvector.h \ 55 $(SOPHYAINCP)tmatrix.h \ 56 $(SOPHYAINCP)tarray.h \ 57 $(SOPHYAINCP)basarr.h \ 58 $(SOPHYAINCP)ndatablock.h \ 59 $(SOPHYAINCP)utilarr.h \ 60 $(SOPHYAINCP)fioarr.h \ 61 $(SOPHYAINCP)datatype.h 62 $(CXXCOMPILE) -o $@ $< 63 64 $(SOPHYAOBJP)fiospherehealpix.o: fiospherehealpix.cc \ 65 $(SOPHYAINCP)sopnamsp.h fiospherehealpix.h \ 66 sphericalmap.h $(SOPHYAINCP)smathconst.h \ 67 $(SOPHYAINCP)machdefs.h pixelmap.h \ 68 $(SOPHYAINCP)ppersist.h \ 69 $(SOPHYAINCP)pexceptions.h \ 70 $(SOPHYAINCP)gnumd5.h \ 71 $(SOPHYAINCP)ppfbinstream.h \ 72 $(SOPHYAINCP)rawstream.h \ 73 $(SOPHYAINCP)ppfnametag.h \ 74 $(SOPHYAINCP)dvlist.h \ 75 $(SOPHYAINCP)objfio.h \ 76 $(SOPHYAINCP)anydataobj.h \ 77 $(SOPHYAINCP)mutyv.h spherepos.h \ 78 unitvector.h vector3d.h longlat.h utilgeom.h \ 79 $(SOPHYAINCP)tvector.h \ 80 $(SOPHYAINCP)tmatrix.h \ 81 $(SOPHYAINCP)tarray.h \ 82 $(SOPHYAINCP)basarr.h \ 83 $(SOPHYAINCP)ndatablock.h \ 84 $(SOPHYAINCP)utilarr.h spherehealpix.h \ 85 HEALPixUtils.h $(SOPHYAINCP)fiondblock.h \ 86 $(SOPHYAINCP)datatype.h 87 $(CXXCOMPILE) -o $@ $< 88 89 $(SOPHYAOBJP)fiospherethetaphi.o: fiospherethetaphi.cc \ 90 $(SOPHYAINCP)sopnamsp.h \ 91 fiospherethetaphi.h sphericalmap.h \ 92 $(SOPHYAINCP)smathconst.h \ 93 $(SOPHYAINCP)machdefs.h pixelmap.h \ 94 $(SOPHYAINCP)ppersist.h \ 95 $(SOPHYAINCP)pexceptions.h \ 96 $(SOPHYAINCP)gnumd5.h \ 97 $(SOPHYAINCP)ppfbinstream.h \ 98 $(SOPHYAINCP)rawstream.h \ 99 $(SOPHYAINCP)ppfnametag.h \ 100 $(SOPHYAINCP)dvlist.h \ 101 $(SOPHYAINCP)objfio.h \ 102 $(SOPHYAINCP)anydataobj.h \ 103 $(SOPHYAINCP)mutyv.h spherepos.h \ 104 unitvector.h vector3d.h longlat.h utilgeom.h \ 105 $(SOPHYAINCP)tvector.h \ 106 $(SOPHYAINCP)tmatrix.h \ 107 $(SOPHYAINCP)tarray.h \ 108 $(SOPHYAINCP)basarr.h \ 109 $(SOPHYAINCP)ndatablock.h \ 110 $(SOPHYAINCP)utilarr.h spherethetaphi.h \ 111 $(SOPHYAINCP)fiondblock.h \ 112 $(SOPHYAINCP)datatype.h 113 $(CXXCOMPILE) -o $@ $< 114 115 $(SOPHYAOBJP)HEALPixUtils.o: HEALPixUtils.cc \ 116 $(SOPHYAINCP)sopnamsp.h HEALPixUtils.h \ 117 $(SOPHYAINCP)machdefs.h \ 118 $(SOPHYAINCP)ndatablock.h \ 119 $(SOPHYAINCP)anydataobj.h \ 120 $(SOPHYAINCP)tvector.h \ 121 $(SOPHYAINCP)tmatrix.h \ 122 $(SOPHYAINCP)tarray.h \ 123 $(SOPHYAINCP)basarr.h \ 124 $(SOPHYAINCP)mutyv.h \ 125 $(SOPHYAINCP)dvlist.h \ 126 $(SOPHYAINCP)objfio.h \ 127 $(SOPHYAINCP)ppersist.h \ 128 $(SOPHYAINCP)pexceptions.h \ 129 $(SOPHYAINCP)gnumd5.h \ 130 $(SOPHYAINCP)ppfbinstream.h \ 131 $(SOPHYAINCP)rawstream.h \ 132 $(SOPHYAINCP)ppfnametag.h \ 133 $(SOPHYAINCP)utilarr.h \ 134 $(SOPHYAINCP)smathconst.h 135 $(CXXCOMPILE) -o $@ $< 136 137 $(SOPHYAOBJP)localmap.o: localmap.cc \ 138 $(SOPHYAINCP)sopnamsp.h localmap.h \ 139 pixelmap.h $(SOPHYAINCP)ppersist.h \ 140 $(SOPHYAINCP)machdefs.h \ 141 $(SOPHYAINCP)pexceptions.h \ 142 $(SOPHYAINCP)gnumd5.h \ 143 $(SOPHYAINCP)ppfbinstream.h \ 144 $(SOPHYAINCP)rawstream.h \ 145 $(SOPHYAINCP)ppfnametag.h \ 146 $(SOPHYAINCP)dvlist.h \ 147 $(SOPHYAINCP)objfio.h \ 148 $(SOPHYAINCP)anydataobj.h \ 149 $(SOPHYAINCP)mutyv.h spherepos.h \ 150 unitvector.h vector3d.h longlat.h utilgeom.h sphericalmap.h \ 151 $(SOPHYAINCP)smathconst.h \ 152 $(SOPHYAINCP)tvector.h \ 153 $(SOPHYAINCP)tmatrix.h \ 154 $(SOPHYAINCP)tarray.h \ 155 $(SOPHYAINCP)basarr.h \ 156 $(SOPHYAINCP)ndatablock.h \ 157 $(SOPHYAINCP)utilarr.h \ 158 $(SOPHYAINCP)fiondblock.h \ 159 $(SOPHYAINCP)timing.h 160 $(CXXCOMPILE) -o $@ $< 161 162 $(SOPHYAOBJP)longlat.o: longlat.cc \ 163 $(SOPHYAINCP)sopnamsp.h longlat.h \ 164 $(SOPHYAINCP)machdefs.h utilgeom.h 165 $(CXXCOMPILE) -o $@ $< 166 167 $(SOPHYAOBJP)mapoperation.o: mapoperation.cc \ 168 $(SOPHYAINCP)sopnamsp.h \ 169 $(SOPHYAINCP)machdefs.h mapoperation.h \ 170 $(SOPHYAINCP)ndatablock.h \ 171 $(SOPHYAINCP)anydataobj.h pixelmap.h \ 172 $(SOPHYAINCP)ppersist.h \ 173 $(SOPHYAINCP)pexceptions.h \ 174 $(SOPHYAINCP)gnumd5.h \ 175 $(SOPHYAINCP)ppfbinstream.h \ 176 $(SOPHYAINCP)rawstream.h \ 177 $(SOPHYAINCP)ppfnametag.h \ 178 $(SOPHYAINCP)dvlist.h \ 179 $(SOPHYAINCP)objfio.h \ 180 $(SOPHYAINCP)mutyv.h spherepos.h \ 181 unitvector.h vector3d.h longlat.h utilgeom.h 182 $(CXXCOMPILE) -o $@ $< 183 184 $(SOPHYAOBJP)skymapinit.o: skymapinit.cc \ 185 $(SOPHYAINCP)sopnamsp.h \ 186 $(SOPHYAINCP)machdefs.h skymapinit.h \ 187 $(SOPHYAINCP)sophyainit.h spherethetaphi.h \ 188 sphericalmap.h $(SOPHYAINCP)smathconst.h \ 189 pixelmap.h $(SOPHYAINCP)ppersist.h \ 190 $(SOPHYAINCP)pexceptions.h \ 191 $(SOPHYAINCP)gnumd5.h \ 192 $(SOPHYAINCP)ppfbinstream.h \ 193 $(SOPHYAINCP)rawstream.h \ 194 $(SOPHYAINCP)ppfnametag.h \ 195 $(SOPHYAINCP)dvlist.h \ 196 $(SOPHYAINCP)objfio.h \ 197 $(SOPHYAINCP)anydataobj.h \ 198 $(SOPHYAINCP)mutyv.h spherepos.h \ 199 unitvector.h vector3d.h longlat.h utilgeom.h \ 200 $(SOPHYAINCP)tvector.h \ 201 $(SOPHYAINCP)tmatrix.h \ 202 $(SOPHYAINCP)tarray.h \ 203 $(SOPHYAINCP)basarr.h \ 204 $(SOPHYAINCP)ndatablock.h \ 205 $(SOPHYAINCP)utilarr.h fiospherehealpix.h \ 206 spherehealpix.h HEALPixUtils.h fiospherethetaphi.h fiolocalmap.h \ 207 localmap.h fiosphereecp.h sphereecp.h 208 $(CXXCOMPILE) -o $@ $< 209 210 $(SOPHYAOBJP)sphereecp.o: sphereecp.cc \ 211 $(SOPHYAINCP)sopnamsp.h sphereecp.h \ 212 sphericalmap.h $(SOPHYAINCP)smathconst.h \ 213 $(SOPHYAINCP)machdefs.h pixelmap.h \ 214 $(SOPHYAINCP)ppersist.h \ 215 $(SOPHYAINCP)pexceptions.h \ 216 $(SOPHYAINCP)gnumd5.h \ 217 $(SOPHYAINCP)ppfbinstream.h \ 218 $(SOPHYAINCP)rawstream.h \ 219 $(SOPHYAINCP)ppfnametag.h \ 220 $(SOPHYAINCP)dvlist.h \ 221 $(SOPHYAINCP)objfio.h \ 222 $(SOPHYAINCP)anydataobj.h \ 223 $(SOPHYAINCP)mutyv.h spherepos.h \ 224 unitvector.h vector3d.h longlat.h utilgeom.h \ 225 $(SOPHYAINCP)tvector.h \ 226 $(SOPHYAINCP)tmatrix.h \ 227 $(SOPHYAINCP)tarray.h \ 228 $(SOPHYAINCP)basarr.h \ 229 $(SOPHYAINCP)ndatablock.h \ 230 $(SOPHYAINCP)utilarr.h 231 $(CXXCOMPILE) -o $@ $< 232 233 $(SOPHYAOBJP)spherehealpix.o: spherehealpix.cc \ 234 $(SOPHYAINCP)sopnamsp.h \ 235 $(SOPHYAINCP)machdefs.h \ 236 $(SOPHYAINCP)pexceptions.h \ 237 $(SOPHYAINCP)fiondblock.h \ 238 $(SOPHYAINCP)ppersist.h \ 239 $(SOPHYAINCP)gnumd5.h \ 240 $(SOPHYAINCP)ppfbinstream.h \ 241 $(SOPHYAINCP)rawstream.h \ 242 $(SOPHYAINCP)ppfnametag.h \ 243 $(SOPHYAINCP)ndatablock.h \ 244 $(SOPHYAINCP)anydataobj.h spherehealpix.h \ 245 sphericalmap.h $(SOPHYAINCP)smathconst.h \ 246 pixelmap.h $(SOPHYAINCP)dvlist.h \ 247 $(SOPHYAINCP)objfio.h \ 248 $(SOPHYAINCP)mutyv.h spherepos.h \ 249 unitvector.h vector3d.h longlat.h utilgeom.h \ 250 $(SOPHYAINCP)tvector.h \ 251 $(SOPHYAINCP)tmatrix.h \ 252 $(SOPHYAINCP)tarray.h \ 253 $(SOPHYAINCP)basarr.h \ 254 $(SOPHYAINCP)utilarr.h HEALPixUtils.h \ 255 $(SOPHYAINCP)strutil.h 256 $(CXXCOMPILE) -o $@ $< 257 258 $(SOPHYAOBJP)spherepos.o: spherepos.cc \ 259 $(SOPHYAINCP)sopnamsp.h spherepos.h \ 260 $(SOPHYAINCP)machdefs.h \ 261 $(SOPHYAINCP)ppersist.h \ 262 $(SOPHYAINCP)pexceptions.h \ 263 $(SOPHYAINCP)gnumd5.h \ 264 $(SOPHYAINCP)ppfbinstream.h \ 265 $(SOPHYAINCP)rawstream.h \ 266 $(SOPHYAINCP)ppfnametag.h unitvector.h \ 267 vector3d.h longlat.h utilgeom.h \ 268 $(SOPHYAINCP)anydataobj.h \ 269 $(SOPHYAINCP)datatype.h 270 $(CXXCOMPILE) -o $@ $< 271 272 $(SOPHYAOBJP)spherethetaphi.o: spherethetaphi.cc \ 273 $(SOPHYAINCP)sopnamsp.h spherethetaphi.h \ 274 sphericalmap.h $(SOPHYAINCP)smathconst.h \ 275 $(SOPHYAINCP)machdefs.h pixelmap.h \ 276 $(SOPHYAINCP)ppersist.h \ 277 $(SOPHYAINCP)pexceptions.h \ 278 $(SOPHYAINCP)gnumd5.h \ 279 $(SOPHYAINCP)ppfbinstream.h \ 280 $(SOPHYAINCP)rawstream.h \ 281 $(SOPHYAINCP)ppfnametag.h \ 282 $(SOPHYAINCP)dvlist.h \ 283 $(SOPHYAINCP)objfio.h \ 284 $(SOPHYAINCP)anydataobj.h \ 285 $(SOPHYAINCP)mutyv.h spherepos.h \ 286 unitvector.h vector3d.h longlat.h utilgeom.h \ 287 $(SOPHYAINCP)tvector.h \ 288 $(SOPHYAINCP)tmatrix.h \ 289 $(SOPHYAINCP)tarray.h \ 290 $(SOPHYAINCP)basarr.h \ 291 $(SOPHYAINCP)ndatablock.h \ 292 $(SOPHYAINCP)utilarr.h \ 293 $(SOPHYAINCP)fiondblock.h 294 $(CXXCOMPILE) -o $@ $< 295 296 $(SOPHYAOBJP)unitvector.o: unitvector.cc \ 297 $(SOPHYAINCP)sopnamsp.h unitvector.h \ 298 vector3d.h longlat.h \ 299 $(SOPHYAINCP)machdefs.h utilgeom.h 300 $(CXXCOMPILE) -o $@ $< 301 302 $(SOPHYAOBJP)utilgeom.o: utilgeom.cc \ 303 $(SOPHYAINCP)sopnamsp.h \ 304 $(SOPHYAINCP)machdefs.h utilgeom.h 305 $(CXXCOMPILE) -o $@ $< 306 307 $(SOPHYAOBJP)vector3d.o: vector3d.cc \ 308 $(SOPHYAINCP)sopnamsp.h \ 309 $(SOPHYAINCP)machdefs.h \ 310 $(SOPHYAINCP)pexceptions.h vector3d.h \ 311 longlat.h utilgeom.h 312 $(CXXCOMPILE) -o $@ $< 313 -
trunk/SophyaLib/SkyMap/objlist.list
r2610 r2743 1 HEALPixUtils.o2 1 fiolocalmap.o 3 2 fiosphereecp.o 4 3 fiospherehealpix.o 5 4 fiospherethetaphi.o 5 HEALPixUtils.o 6 6 localmap.o 7 7 longlat.o -
trunk/SophyaLib/SkyT/Makefile
r2444 r2743 1 include ../ Mgr/Makefile.h1 include ../BuildMgr/sophyamake.inc 2 2 3 all: $(LIB)libSkyT.a 3 all: $(SOPHYALIBP)libSkyT.a 4 4 5 clean: 5 rm -f $(OBJ)blackbody.o $(OBJ)convtools.o $(OBJ)derivblackbody.o $(OBJ)gaussfilt.o $(OBJ)nupower.o $(OBJ)radspec.o $(OBJ)radspecvector.o $(OBJ)skyinit.o $(OBJ)specresp.o $(OBJ)specrespvector.o $(OBJ)squarefilt.o $(OBJ)trianglefilt.o 6 rm -f $(LIB)libSkyT.a 7 $(LIB)libSkyT.a : $(OBJ)blackbody.o $(OBJ)convtools.o $(OBJ)derivblackbody.o $(OBJ)gaussfilt.o $(OBJ)nupower.o $(OBJ)radspec.o $(OBJ)radspecvector.o $(OBJ)skyinit.o $(OBJ)specresp.o $(OBJ)specrespvector.o $(OBJ)squarefilt.o $(OBJ)trianglefilt.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 6 rm -f $(SOPHYAOBJP)blackbody.o $(SOPHYAOBJP)convtools.o $(SOPHYAOBJP)derivblackbody.o $(SOPHYAOBJP)gaussfilt.o $(SOPHYAOBJP)nupower.o $(SOPHYAOBJP)radspec.o $(SOPHYAOBJP)radspecvector.o $(SOPHYAOBJP)skyinit.o $(SOPHYAOBJP)specresp.o $(SOPHYAOBJP)specrespvector.o $(SOPHYAOBJP)squarefilt.o $(SOPHYAOBJP)trianglefilt.o 7 rm -f $(SOPHYALIBP)libSkyT.a 12 8 13 $(OBJ)blackbody.o: blackbody.cc $(INC)machdefs.h \ 14 blackbody.h radspec.h specresp.h \ 15 $(INC)anydataobj.h \ 16 $(INC)objfio.h \ 17 $(INC)ppersist.h \ 18 $(INC)pexceptions.h \ 19 $(INC)gnumd5.h convtools.h 20 $(OBJ)convtools.o: convtools.cc convtools.h \ 21 $(INC)machdefs.h 22 $(OBJ)derivblackbody.o: derivblackbody.cc \ 23 $(INC)machdefs.h derivblackbody.h radspec.h \ 24 specresp.h $(INC)anydataobj.h \ 25 $(INC)objfio.h \ 26 $(INC)ppersist.h \ 27 $(INC)pexceptions.h \ 28 $(INC)gnumd5.h convtools.h 29 $(OBJ)gaussfilt.o: gaussfilt.cc $(INC)machdefs.h \ 30 gaussfilt.h specresp.h $(INC)anydataobj.h \ 31 $(INC)objfio.h \ 32 $(INC)ppersist.h \ 33 $(INC)pexceptions.h \ 34 $(INC)gnumd5.h 35 $(OBJ)nupower.o: nupower.cc $(INC)machdefs.h \ 36 nupower.h radspec.h specresp.h \ 37 $(INC)anydataobj.h \ 38 $(INC)objfio.h \ 39 $(INC)ppersist.h \ 40 $(INC)pexceptions.h \ 41 $(INC)gnumd5.h convtools.h 42 $(OBJ)radspec.o: radspec.cc $(INC)machdefs.h \ 43 radspec.h specresp.h $(INC)anydataobj.h \ 44 $(INC)objfio.h \ 45 $(INC)ppersist.h \ 46 $(INC)pexceptions.h \ 47 $(INC)gnumd5.h \ 48 $(INC)integ.h \ 49 $(INC)classfunc.h 50 $(OBJ)radspecvector.o: radspecvector.cc \ 51 $(INC)machdefs.h radspecvector.h radspec.h \ 52 specresp.h $(INC)anydataobj.h \ 53 $(INC)objfio.h \ 54 $(INC)ppersist.h \ 55 $(INC)pexceptions.h \ 56 $(INC)gnumd5.h \ 57 $(INC)tvector.h \ 58 $(INC)tmatrix.h \ 59 $(INC)tarray.h \ 60 $(INC)basarr.h \ 61 $(INC)mutyv.h \ 62 $(INC)dvlist.h \ 63 $(INC)ndatablock.h \ 64 $(INC)utilarr.h 65 $(OBJ)skyinit.o: skyinit.cc skyinit.h \ 66 $(INC)ntoolsinit.h \ 67 $(INC)tarrinit.h \ 68 $(INC)sophyainit.h \ 69 $(INC)machdefs.h \ 70 $(INC)ppersist.h \ 71 $(INC)pexceptions.h \ 72 $(INC)gnumd5.h \ 73 $(INC)objfio.h \ 74 $(INC)anydataobj.h specrespvector.h \ 75 specresp.h $(INC)tvector.h \ 76 $(INC)tmatrix.h \ 77 $(INC)tarray.h \ 78 $(INC)basarr.h \ 79 $(INC)mutyv.h \ 80 $(INC)dvlist.h \ 81 $(INC)ndatablock.h \ 82 $(INC)utilarr.h gaussfilt.h 83 $(OBJ)specresp.o: specresp.cc specresp.h \ 84 $(INC)machdefs.h \ 85 $(INC)anydataobj.h \ 86 $(INC)integ.h \ 87 $(INC)pexceptions.h \ 88 $(INC)classfunc.h \ 89 $(INC)tvector.h \ 90 $(INC)tmatrix.h \ 91 $(INC)tarray.h \ 92 $(INC)basarr.h \ 93 $(INC)mutyv.h \ 94 $(INC)dvlist.h \ 95 $(INC)objfio.h \ 96 $(INC)ppersist.h \ 97 $(INC)gnumd5.h \ 98 $(INC)ndatablock.h \ 99 $(INC)utilarr.h 100 $(OBJ)specrespvector.o: specrespvector.cc \ 101 $(INC)machdefs.h specrespvector.h specresp.h \ 102 $(INC)anydataobj.h \ 103 $(INC)tvector.h \ 104 $(INC)tmatrix.h \ 105 $(INC)tarray.h \ 106 $(INC)basarr.h \ 107 $(INC)mutyv.h \ 108 $(INC)dvlist.h \ 109 $(INC)objfio.h \ 110 $(INC)ppersist.h \ 111 $(INC)pexceptions.h \ 112 $(INC)gnumd5.h \ 113 $(INC)ndatablock.h \ 114 $(INC)utilarr.h \ 115 $(INC)fioarr.h 116 $(OBJ)squarefilt.o: squarefilt.cc $(INC)machdefs.h \ 117 squarefilt.h specresp.h $(INC)anydataobj.h 118 $(OBJ)trianglefilt.o: trianglefilt.cc \ 119 $(INC)machdefs.h trianglefilt.h specresp.h \ 120 $(INC)anydataobj.h 9 $(SOPHYALIBP)libSkyT.a : $(SOPHYAOBJP)blackbody.o $(SOPHYAOBJP)convtools.o $(SOPHYAOBJP)derivblackbody.o $(SOPHYAOBJP)gaussfilt.o $(SOPHYAOBJP)nupower.o $(SOPHYAOBJP)radspec.o $(SOPHYAOBJP)radspecvector.o $(SOPHYAOBJP)skyinit.o $(SOPHYAOBJP)specresp.o $(SOPHYAOBJP)specrespvector.o $(SOPHYAOBJP)squarefilt.o $(SOPHYAOBJP)trianglefilt.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)blackbody.o: blackbody.cc \ 13 $(SOPHYAINCP)sopnamsp.h \ 14 $(SOPHYAINCP)machdefs.h blackbody.h \ 15 radspec.h specresp.h \ 16 $(SOPHYAINCP)anydataobj.h \ 17 $(SOPHYAINCP)objfio.h \ 18 $(SOPHYAINCP)ppersist.h \ 19 $(SOPHYAINCP)pexceptions.h \ 20 $(SOPHYAINCP)gnumd5.h \ 21 $(SOPHYAINCP)ppfbinstream.h \ 22 $(SOPHYAINCP)rawstream.h \ 23 $(SOPHYAINCP)ppfnametag.h convtools.h 24 $(CXXCOMPILE) -o $@ $< 25 26 $(SOPHYAOBJP)convtools.o: convtools.cc \ 27 $(SOPHYAINCP)sopnamsp.h convtools.h \ 28 $(SOPHYAINCP)machdefs.h 29 $(CXXCOMPILE) -o $@ $< 30 31 $(SOPHYAOBJP)derivblackbody.o: derivblackbody.cc \ 32 $(SOPHYAINCP)sopnamsp.h \ 33 $(SOPHYAINCP)machdefs.h derivblackbody.h \ 34 radspec.h specresp.h \ 35 $(SOPHYAINCP)anydataobj.h \ 36 $(SOPHYAINCP)objfio.h \ 37 $(SOPHYAINCP)ppersist.h \ 38 $(SOPHYAINCP)pexceptions.h \ 39 $(SOPHYAINCP)gnumd5.h \ 40 $(SOPHYAINCP)ppfbinstream.h \ 41 $(SOPHYAINCP)rawstream.h \ 42 $(SOPHYAINCP)ppfnametag.h convtools.h 43 $(CXXCOMPILE) -o $@ $< 44 45 $(SOPHYAOBJP)gaussfilt.o: gaussfilt.cc \ 46 $(SOPHYAINCP)sopnamsp.h \ 47 $(SOPHYAINCP)machdefs.h gaussfilt.h \ 48 specresp.h $(SOPHYAINCP)anydataobj.h \ 49 $(SOPHYAINCP)objfio.h \ 50 $(SOPHYAINCP)ppersist.h \ 51 $(SOPHYAINCP)pexceptions.h \ 52 $(SOPHYAINCP)gnumd5.h \ 53 $(SOPHYAINCP)ppfbinstream.h \ 54 $(SOPHYAINCP)rawstream.h \ 55 $(SOPHYAINCP)ppfnametag.h 56 $(CXXCOMPILE) -o $@ $< 57 58 $(SOPHYAOBJP)nupower.o: nupower.cc \ 59 $(SOPHYAINCP)sopnamsp.h \ 60 $(SOPHYAINCP)machdefs.h nupower.h \ 61 radspec.h specresp.h \ 62 $(SOPHYAINCP)anydataobj.h \ 63 $(SOPHYAINCP)objfio.h \ 64 $(SOPHYAINCP)ppersist.h \ 65 $(SOPHYAINCP)pexceptions.h \ 66 $(SOPHYAINCP)gnumd5.h \ 67 $(SOPHYAINCP)ppfbinstream.h \ 68 $(SOPHYAINCP)rawstream.h \ 69 $(SOPHYAINCP)ppfnametag.h convtools.h 70 $(CXXCOMPILE) -o $@ $< 71 72 $(SOPHYAOBJP)radspec.o: radspec.cc \ 73 $(SOPHYAINCP)sopnamsp.h \ 74 $(SOPHYAINCP)machdefs.h radspec.h \ 75 specresp.h $(SOPHYAINCP)anydataobj.h \ 76 $(SOPHYAINCP)objfio.h \ 77 $(SOPHYAINCP)ppersist.h \ 78 $(SOPHYAINCP)pexceptions.h \ 79 $(SOPHYAINCP)gnumd5.h \ 80 $(SOPHYAINCP)ppfbinstream.h \ 81 $(SOPHYAINCP)rawstream.h \ 82 $(SOPHYAINCP)ppfnametag.h \ 83 $(SOPHYAINCP)integ.h \ 84 $(SOPHYAINCP)classfunc.h 85 $(CXXCOMPILE) -o $@ $< 86 87 $(SOPHYAOBJP)radspecvector.o: radspecvector.cc \ 88 $(SOPHYAINCP)sopnamsp.h \ 89 $(SOPHYAINCP)machdefs.h radspecvector.h \ 90 radspec.h specresp.h \ 91 $(SOPHYAINCP)anydataobj.h \ 92 $(SOPHYAINCP)objfio.h \ 93 $(SOPHYAINCP)ppersist.h \ 94 $(SOPHYAINCP)pexceptions.h \ 95 $(SOPHYAINCP)gnumd5.h \ 96 $(SOPHYAINCP)ppfbinstream.h \ 97 $(SOPHYAINCP)rawstream.h \ 98 $(SOPHYAINCP)ppfnametag.h \ 99 $(SOPHYAINCP)tvector.h \ 100 $(SOPHYAINCP)tmatrix.h \ 101 $(SOPHYAINCP)tarray.h \ 102 $(SOPHYAINCP)basarr.h \ 103 $(SOPHYAINCP)mutyv.h \ 104 $(SOPHYAINCP)dvlist.h \ 105 $(SOPHYAINCP)ndatablock.h \ 106 $(SOPHYAINCP)utilarr.h 107 $(CXXCOMPILE) -o $@ $< 108 109 $(SOPHYAOBJP)skyinit.o: skyinit.cc \ 110 $(SOPHYAINCP)sopnamsp.h skyinit.h \ 111 $(SOPHYAINCP)ntoolsinit.h \ 112 $(SOPHYAINCP)tarrinit.h \ 113 $(SOPHYAINCP)sophyainit.h \ 114 $(SOPHYAINCP)machdefs.h \ 115 $(SOPHYAINCP)ppersist.h \ 116 $(SOPHYAINCP)pexceptions.h \ 117 $(SOPHYAINCP)gnumd5.h \ 118 $(SOPHYAINCP)ppfbinstream.h \ 119 $(SOPHYAINCP)rawstream.h \ 120 $(SOPHYAINCP)ppfnametag.h \ 121 $(SOPHYAINCP)objfio.h \ 122 $(SOPHYAINCP)anydataobj.h specrespvector.h \ 123 specresp.h $(SOPHYAINCP)tvector.h \ 124 $(SOPHYAINCP)tmatrix.h \ 125 $(SOPHYAINCP)tarray.h \ 126 $(SOPHYAINCP)basarr.h \ 127 $(SOPHYAINCP)mutyv.h \ 128 $(SOPHYAINCP)dvlist.h \ 129 $(SOPHYAINCP)ndatablock.h \ 130 $(SOPHYAINCP)utilarr.h gaussfilt.h 131 $(CXXCOMPILE) -o $@ $< 132 133 $(SOPHYAOBJP)specresp.o: specresp.cc \ 134 $(SOPHYAINCP)sopnamsp.h specresp.h \ 135 $(SOPHYAINCP)machdefs.h \ 136 $(SOPHYAINCP)anydataobj.h \ 137 $(SOPHYAINCP)integ.h \ 138 $(SOPHYAINCP)pexceptions.h \ 139 $(SOPHYAINCP)classfunc.h \ 140 $(SOPHYAINCP)tvector.h \ 141 $(SOPHYAINCP)tmatrix.h \ 142 $(SOPHYAINCP)tarray.h \ 143 $(SOPHYAINCP)basarr.h \ 144 $(SOPHYAINCP)mutyv.h \ 145 $(SOPHYAINCP)dvlist.h \ 146 $(SOPHYAINCP)objfio.h \ 147 $(SOPHYAINCP)ppersist.h \ 148 $(SOPHYAINCP)gnumd5.h \ 149 $(SOPHYAINCP)ppfbinstream.h \ 150 $(SOPHYAINCP)rawstream.h \ 151 $(SOPHYAINCP)ppfnametag.h \ 152 $(SOPHYAINCP)ndatablock.h \ 153 $(SOPHYAINCP)utilarr.h 154 $(CXXCOMPILE) -o $@ $< 155 156 $(SOPHYAOBJP)specrespvector.o: specrespvector.cc \ 157 $(SOPHYAINCP)sopnamsp.h \ 158 $(SOPHYAINCP)machdefs.h specrespvector.h \ 159 specresp.h $(SOPHYAINCP)anydataobj.h \ 160 $(SOPHYAINCP)tvector.h \ 161 $(SOPHYAINCP)tmatrix.h \ 162 $(SOPHYAINCP)tarray.h \ 163 $(SOPHYAINCP)basarr.h \ 164 $(SOPHYAINCP)mutyv.h \ 165 $(SOPHYAINCP)dvlist.h \ 166 $(SOPHYAINCP)objfio.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)ndatablock.h \ 174 $(SOPHYAINCP)utilarr.h \ 175 $(SOPHYAINCP)fioarr.h 176 $(CXXCOMPILE) -o $@ $< 177 178 $(SOPHYAOBJP)squarefilt.o: squarefilt.cc \ 179 $(SOPHYAINCP)sopnamsp.h \ 180 $(SOPHYAINCP)machdefs.h squarefilt.h \ 181 specresp.h $(SOPHYAINCP)anydataobj.h 182 $(CXXCOMPILE) -o $@ $< 183 184 $(SOPHYAOBJP)trianglefilt.o: trianglefilt.cc \ 185 $(SOPHYAINCP)sopnamsp.h \ 186 $(SOPHYAINCP)machdefs.h trianglefilt.h \ 187 specresp.h $(SOPHYAINCP)anydataobj.h 188 $(CXXCOMPILE) -o $@ $< 189 -
trunk/SophyaLib/SysTools/Makefile
r2510 r2743 1 include ../ Mgr/Makefile.h1 include ../BuildMgr/sophyamake.inc 2 2 3 all: $(LIB)libSysTools.a 3 all: $(SOPHYALIBP)libSysTools.a 4 4 5 clean: 5 rm -f $(OBJ)cexpre.o $(OBJ)commander.o $(OBJ)ctimer.o $(OBJ)cxxcmplnk.o $(OBJ)pdlmgr.o $(OBJ)periodic.o $(OBJ)psighand.o $(OBJ)resusage.o $(OBJ)rpneval.o $(OBJ)zthread.o $(OBJ)timing.o 6 rm -f $(LIB)libSysTools.a 7 $(LIB)libSysTools.a : $(OBJ)cexpre.o $(OBJ)commander.o $(OBJ)ctimer.o $(OBJ)cxxcmplnk.o $(OBJ)pdlmgr.o $(OBJ)periodic.o $(OBJ)psighand.o $(OBJ)resusage.o $(OBJ)rpneval.o $(OBJ)timing.o $(OBJ)zthread.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 6 rm -f $(SOPHYAOBJP)cexpre.o $(SOPHYAOBJP)commander.o $(SOPHYAOBJP)ctimer.o $(SOPHYAOBJP)cxxcmplnk.o $(SOPHYAOBJP)pdlmgr.o $(SOPHYAOBJP)periodic.o $(SOPHYAOBJP)psighand.o $(SOPHYAOBJP)resusage.o $(SOPHYAOBJP)rpneval.o $(SOPHYAOBJP)zthread.o $(SOPHYAOBJP)timing.o 7 rm -f $(SOPHYALIBP)libSysTools.a 12 8 13 $(OBJ)cexpre.o: cexpre.cc cexpre.h $(INC)machdefs.h \ 14 $(INC)osx_values.h \ 15 $(INC)pexceptions.h 16 $(OBJ)commander.o: commander.cc commander.h \ 17 $(INC)machdefs.h \ 18 $(INC)osx_values.h pdlmgr.h \ 19 $(INC)dvlist.h \ 20 $(INC)objfio.h \ 21 $(INC)anydataobj.h \ 22 $(INC)ppersist.h \ 23 $(INC)pexceptions.h \ 24 $(INC)gnumd5.h \ 25 $(INC)ppfbinstream.h \ 26 $(INC)rawstream.h \ 27 $(INC)ppfnametag.h \ 28 $(INC)mutyv.h ctimer.h \ 29 $(INC)strutil.h \ 30 $(INC)strutilxx.h \ 31 $(INC)srandgen.h 32 $(OBJ)ctimer.o: ctimer.cc $(INC)machdefs.h \ 33 $(INC)osx_values.h ctimer.h 34 $(OBJ)cxxcmplnk.o: cxxcmplnk.cc cxxcmplnk.h \ 35 $(INC)machdefs.h \ 36 $(INC)osx_values.h 37 $(OBJ)pdlmgr.o: pdlmgr.cc $(INC)machdefs.h \ 38 $(INC)osx_values.h pdlmgr.h 39 $(OBJ)periodic.o: periodic.cc $(INC)machdefs.h \ 40 $(INC)osx_values.h periodic.h 41 $(OBJ)psighand.o: psighand.cc psighand.h \ 42 $(INC)machdefs.h \ 43 $(INC)osx_values.h \ 44 $(INC)pexceptions.h 45 $(OBJ)resusage.o: resusage.cc resusage.h \ 46 $(INC)machdefs.h \ 47 $(INC)osx_values.h 48 $(OBJ)rpneval.o: rpneval.cc rpneval.h \ 49 $(INC)machdefs.h \ 50 $(INC)osx_values.h \ 51 $(INC)pexceptions.h \ 52 $(INC)strutilxx.h \ 53 $(INC)srandgen.h 54 $(OBJ)zthread.o: zthread.cc zthread.h \ 55 $(INC)machdefs.h \ 56 $(INC)osx_values.h \ 57 $(INC)pexceptions.h 58 $(OBJ)timing.o: timing.c timing.h 9 $(SOPHYALIBP)libSysTools.a : $(SOPHYAOBJP)cexpre.o $(SOPHYAOBJP)commander.o $(SOPHYAOBJP)ctimer.o $(SOPHYAOBJP)cxxcmplnk.o $(SOPHYAOBJP)pdlmgr.o $(SOPHYAOBJP)periodic.o $(SOPHYAOBJP)psighand.o $(SOPHYAOBJP)resusage.o $(SOPHYAOBJP)rpneval.o $(SOPHYAOBJP)timing.o $(SOPHYAOBJP)zthread.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)cexpre.o: cexpre.cc $(SOPHYAINCP)sopnamsp.h \ 13 cexpre.h $(SOPHYAINCP)machdefs.h \ 14 $(SOPHYAINCP)pexceptions.h \ 15 $(SOPHYAINCP)srandgen.h 16 $(CXXCOMPILE) -o $@ $< 17 18 $(SOPHYAOBJP)commander.o: commander.cc \ 19 $(SOPHYAINCP)sopnamsp.h commander.h \ 20 $(SOPHYAINCP)machdefs.h pdlmgr.h \ 21 $(SOPHYAINCP)dvlist.h \ 22 $(SOPHYAINCP)objfio.h \ 23 $(SOPHYAINCP)anydataobj.h \ 24 $(SOPHYAINCP)ppersist.h \ 25 $(SOPHYAINCP)pexceptions.h \ 26 $(SOPHYAINCP)gnumd5.h \ 27 $(SOPHYAINCP)ppfbinstream.h \ 28 $(SOPHYAINCP)rawstream.h \ 29 $(SOPHYAINCP)ppfnametag.h \ 30 $(SOPHYAINCP)mutyv.h ctimer.h \ 31 $(SOPHYAINCP)strutil.h \ 32 $(SOPHYAINCP)strutilxx.h cexpre.h \ 33 rpneval.h $(SOPHYAINCP)srandgen.h \ 34 zthread.h 35 $(CXXCOMPILE) -o $@ $< 36 37 $(SOPHYAOBJP)ctimer.o: ctimer.cc $(SOPHYAINCP)sopnamsp.h \ 38 $(SOPHYAINCP)machdefs.h ctimer.h 39 $(CXXCOMPILE) -o $@ $< 40 41 $(SOPHYAOBJP)cxxcmplnk.o: cxxcmplnk.cc \ 42 $(SOPHYAINCP)sopnamsp.h cxxcmplnk.h \ 43 $(SOPHYAINCP)machdefs.h 44 $(CXXCOMPILE) -o $@ $< 45 46 $(SOPHYAOBJP)pdlmgr.o: pdlmgr.cc $(SOPHYAINCP)machdefs.h \ 47 $(SOPHYAINCP)sopnamsp.h pdlmgr.h 48 $(CXXCOMPILE) -o $@ $< 49 50 $(SOPHYAOBJP)periodic.o: periodic.cc \ 51 $(SOPHYAINCP)sopnamsp.h \ 52 $(SOPHYAINCP)machdefs.h periodic.h 53 $(CXXCOMPILE) -o $@ $< 54 55 $(SOPHYAOBJP)psighand.o: psighand.cc \ 56 $(SOPHYAINCP)sopnamsp.h psighand.h \ 57 $(SOPHYAINCP)machdefs.h \ 58 $(SOPHYAINCP)pexceptions.h 59 $(CXXCOMPILE) -o $@ $< 60 61 $(SOPHYAOBJP)resusage.o: resusage.cc \ 62 $(SOPHYAINCP)sopnamsp.h resusage.h \ 63 $(SOPHYAINCP)machdefs.h 64 $(CXXCOMPILE) -o $@ $< 65 66 $(SOPHYAOBJP)rpneval.o: rpneval.cc \ 67 $(SOPHYAINCP)sopnamsp.h rpneval.h \ 68 $(SOPHYAINCP)machdefs.h \ 69 $(SOPHYAINCP)pexceptions.h \ 70 $(SOPHYAINCP)strutilxx.h \ 71 $(SOPHYAINCP)srandgen.h 72 $(CXXCOMPILE) -o $@ $< 73 74 $(SOPHYAOBJP)zthread.o: zthread.cc \ 75 $(SOPHYAINCP)sopnamsp.h zthread.h \ 76 $(SOPHYAINCP)machdefs.h \ 77 $(SOPHYAINCP)pexceptions.h 78 $(CXXCOMPILE) -o $@ $< 79 80 $(SOPHYAOBJP)timing.o: timing.c timing.h 81 $(CCOMPILE) -o $@ $< 82 -
trunk/SophyaLib/TArray/Makefile
r2444 r2743 1 include ../ Mgr/Makefile.h1 include ../BuildMgr/sophyamake.inc 2 2 3 all: $(LIB)libTArray.a 3 all: $(SOPHYALIBP)libTArray.a 4 4 5 clean: 5 rm -f $(OBJ)basarr.o $(OBJ)fioarr.o $(OBJ)matharr.o $(OBJ)sopemtx.o $(OBJ)tarray.o $(OBJ)tarrinit.o $(OBJ)tmatrix.o $(OBJ)toeplitzMatrix.o $(OBJ)tvector.o $(OBJ)utilarr.o 6 rm -f $(LIB)libTArray.a 7 $(LIB)libTArray.a : $(OBJ)basarr.o $(OBJ)fioarr.o $(OBJ)matharr.o $(OBJ)sopemtx.o $(OBJ)tarray.o $(OBJ)tarrinit.o $(OBJ)tmatrix.o $(OBJ)toeplitzMatrix.o $(OBJ)tvector.o $(OBJ)utilarr.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 6 rm -f $(SOPHYAOBJP)basarr.o $(SOPHYAOBJP)fioarr.o $(SOPHYAOBJP)matharr.o $(SOPHYAOBJP)sopemtx.o $(SOPHYAOBJP)tarray.o $(SOPHYAOBJP)tarrinit.o $(SOPHYAOBJP)tmatrix.o $(SOPHYAOBJP)toeplitzMatrix.o $(SOPHYAOBJP)tvector.o $(SOPHYAOBJP)utilarr.o 7 rm -f $(SOPHYALIBP)libTArray.a 12 8 13 $(OBJ)basarr.o: basarr.cc $(INC)machdefs.h \ 14 $(INC)pexceptions.h basarr.h \ 15 $(INC)anydataobj.h \ 16 $(INC)mutyv.h \ 17 $(INC)dvlist.h \ 18 $(INC)objfio.h \ 19 $(INC)ppersist.h \ 20 $(INC)gnumd5.h 21 $(OBJ)fioarr.o: fioarr.cc $(INC)pexceptions.h \ 22 $(INC)machdefs.h \ 23 $(INC)fiondblock.h \ 24 $(INC)ppersist.h \ 25 $(INC)gnumd5.h \ 26 $(INC)ndatablock.h \ 27 $(INC)anydataobj.h fioarr.h tarray.h \ 28 basarr.h $(INC)mutyv.h \ 29 $(INC)dvlist.h \ 30 $(INC)objfio.h utilarr.h tmatrix.h tvector.h \ 31 $(INC)datatype.h 32 $(OBJ)matharr.o: matharr.cc $(INC)machdefs.h \ 33 matharr.h tarray.h basarr.h \ 34 $(INC)anydataobj.h \ 35 $(INC)mutyv.h \ 36 $(INC)dvlist.h \ 37 $(INC)objfio.h \ 38 $(INC)ppersist.h \ 39 $(INC)pexceptions.h \ 40 $(INC)gnumd5.h \ 41 $(INC)ndatablock.h utilarr.h 42 $(OBJ)sopemtx.o: sopemtx.cc $(INC)machdefs.h \ 43 sopemtx.h tmatrix.h tarray.h basarr.h \ 44 $(INC)anydataobj.h \ 45 $(INC)mutyv.h \ 46 $(INC)dvlist.h \ 47 $(INC)objfio.h \ 48 $(INC)ppersist.h \ 49 $(INC)pexceptions.h \ 50 $(INC)gnumd5.h \ 51 $(INC)ndatablock.h utilarr.h tvector.h \ 52 $(INC)smathconst.h 53 $(OBJ)tarray.o: tarray.cc $(INC)machdefs.h \ 54 $(INC)pexceptions.h tarray.h basarr.h \ 55 $(INC)anydataobj.h \ 56 $(INC)mutyv.h \ 57 $(INC)dvlist.h \ 58 $(INC)objfio.h \ 59 $(INC)ppersist.h \ 60 $(INC)gnumd5.h \ 61 $(INC)ndatablock.h utilarr.h 62 $(OBJ)tarrinit.o: tarrinit.cc $(INC)machdefs.h \ 63 tarrinit.h $(INC)sophyainit.h fioarr.h \ 64 tarray.h basarr.h $(INC)anydataobj.h \ 65 $(INC)mutyv.h \ 66 $(INC)dvlist.h \ 67 $(INC)objfio.h \ 68 $(INC)ppersist.h \ 69 $(INC)pexceptions.h \ 70 $(INC)gnumd5.h \ 71 $(INC)ndatablock.h utilarr.h tmatrix.h \ 72 tvector.h 73 $(OBJ)tmatrix.o: tmatrix.cc $(INC)machdefs.h \ 74 $(INC)pexceptions.h tmatrix.h tarray.h \ 75 basarr.h $(INC)anydataobj.h \ 76 $(INC)mutyv.h \ 77 $(INC)dvlist.h \ 78 $(INC)objfio.h \ 79 $(INC)ppersist.h \ 80 $(INC)gnumd5.h \ 81 $(INC)ndatablock.h utilarr.h 82 $(OBJ)toeplitzMatrix.o: toeplitzMatrix.cc toeplitzMatrix.h \ 83 $(INC)machdefs.h \ 84 $(INC)nbmath.h \ 85 $(INC)smathconst.h \ 86 $(INC)timing.h array.h tarray.h basarr.h \ 87 $(INC)anydataobj.h \ 88 $(INC)mutyv.h \ 89 $(INC)dvlist.h \ 90 $(INC)objfio.h \ 91 $(INC)ppersist.h \ 92 $(INC)pexceptions.h \ 93 $(INC)gnumd5.h \ 94 $(INC)ndatablock.h utilarr.h tmatrix.h \ 95 tvector.h matharr.h fioarr.h sopemtx.h \ 96 $(INC)fftservintf.h \ 97 $(INC)tmatrix.h \ 98 $(INC)tvector.h \ 99 $(INC)fftpserver.h 100 $(OBJ)tvector.o: tvector.cc $(INC)machdefs.h \ 101 $(INC)pexceptions.h tvector.h tmatrix.h \ 102 tarray.h basarr.h $(INC)anydataobj.h \ 103 $(INC)mutyv.h \ 104 $(INC)dvlist.h \ 105 $(INC)objfio.h \ 106 $(INC)ppersist.h \ 107 $(INC)gnumd5.h \ 108 $(INC)ndatablock.h utilarr.h 109 $(OBJ)utilarr.o: utilarr.cc $(INC)machdefs.h \ 110 utilarr.h $(INC)mutyv.h \ 111 $(INC)srandgen.h 9 $(SOPHYALIBP)libTArray.a : $(SOPHYAOBJP)basarr.o $(SOPHYAOBJP)fioarr.o $(SOPHYAOBJP)matharr.o $(SOPHYAOBJP)sopemtx.o $(SOPHYAOBJP)tarray.o $(SOPHYAOBJP)tarrinit.o $(SOPHYAOBJP)tmatrix.o $(SOPHYAOBJP)toeplitzMatrix.o $(SOPHYAOBJP)tvector.o $(SOPHYAOBJP)utilarr.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)basarr.o: basarr.cc $(SOPHYAINCP)sopnamsp.h \ 13 $(SOPHYAINCP)machdefs.h \ 14 $(SOPHYAINCP)pexceptions.h basarr.h \ 15 $(SOPHYAINCP)anydataobj.h \ 16 $(SOPHYAINCP)mutyv.h \ 17 $(SOPHYAINCP)dvlist.h \ 18 $(SOPHYAINCP)objfio.h \ 19 $(SOPHYAINCP)ppersist.h \ 20 $(SOPHYAINCP)gnumd5.h \ 21 $(SOPHYAINCP)ppfbinstream.h \ 22 $(SOPHYAINCP)rawstream.h \ 23 $(SOPHYAINCP)ppfnametag.h 24 $(CXXCOMPILE) -o $@ $< 25 26 $(SOPHYAOBJP)fioarr.o: fioarr.cc $(SOPHYAINCP)sopnamsp.h \ 27 $(SOPHYAINCP)pexceptions.h \ 28 $(SOPHYAINCP)machdefs.h \ 29 $(SOPHYAINCP)fiondblock.h \ 30 $(SOPHYAINCP)ppersist.h \ 31 $(SOPHYAINCP)gnumd5.h \ 32 $(SOPHYAINCP)ppfbinstream.h \ 33 $(SOPHYAINCP)rawstream.h \ 34 $(SOPHYAINCP)ppfnametag.h \ 35 $(SOPHYAINCP)ndatablock.h \ 36 $(SOPHYAINCP)anydataobj.h fioarr.h \ 37 tarray.h basarr.h $(SOPHYAINCP)mutyv.h \ 38 $(SOPHYAINCP)dvlist.h \ 39 $(SOPHYAINCP)objfio.h utilarr.h tmatrix.h \ 40 tvector.h $(SOPHYAINCP)datatype.h 41 $(CXXCOMPILE) -o $@ $< 42 43 $(SOPHYAOBJP)matharr.o: matharr.cc \ 44 $(SOPHYAINCP)sopnamsp.h \ 45 $(SOPHYAINCP)machdefs.h matharr.h tarray.h \ 46 basarr.h $(SOPHYAINCP)anydataobj.h \ 47 $(SOPHYAINCP)mutyv.h \ 48 $(SOPHYAINCP)dvlist.h \ 49 $(SOPHYAINCP)objfio.h \ 50 $(SOPHYAINCP)ppersist.h \ 51 $(SOPHYAINCP)pexceptions.h \ 52 $(SOPHYAINCP)gnumd5.h \ 53 $(SOPHYAINCP)ppfbinstream.h \ 54 $(SOPHYAINCP)rawstream.h \ 55 $(SOPHYAINCP)ppfnametag.h \ 56 $(SOPHYAINCP)ndatablock.h utilarr.h 57 $(CXXCOMPILE) -o $@ $< 58 59 $(SOPHYAOBJP)sopemtx.o: sopemtx.cc \ 60 $(SOPHYAINCP)sopnamsp.h \ 61 $(SOPHYAINCP)machdefs.h sopemtx.h \ 62 tmatrix.h tarray.h basarr.h \ 63 $(SOPHYAINCP)anydataobj.h \ 64 $(SOPHYAINCP)mutyv.h \ 65 $(SOPHYAINCP)dvlist.h \ 66 $(SOPHYAINCP)objfio.h \ 67 $(SOPHYAINCP)ppersist.h \ 68 $(SOPHYAINCP)pexceptions.h \ 69 $(SOPHYAINCP)gnumd5.h \ 70 $(SOPHYAINCP)ppfbinstream.h \ 71 $(SOPHYAINCP)rawstream.h \ 72 $(SOPHYAINCP)ppfnametag.h \ 73 $(SOPHYAINCP)ndatablock.h utilarr.h \ 74 tvector.h $(SOPHYAINCP)smathconst.h 75 $(CXXCOMPILE) -o $@ $< 76 77 $(SOPHYAOBJP)tarray.o: tarray.cc $(SOPHYAINCP)sopnamsp.h \ 78 $(SOPHYAINCP)machdefs.h \ 79 $(SOPHYAINCP)pexceptions.h tarray.h \ 80 basarr.h $(SOPHYAINCP)anydataobj.h \ 81 $(SOPHYAINCP)mutyv.h \ 82 $(SOPHYAINCP)dvlist.h \ 83 $(SOPHYAINCP)objfio.h \ 84 $(SOPHYAINCP)ppersist.h \ 85 $(SOPHYAINCP)gnumd5.h \ 86 $(SOPHYAINCP)ppfbinstream.h \ 87 $(SOPHYAINCP)rawstream.h \ 88 $(SOPHYAINCP)ppfnametag.h \ 89 $(SOPHYAINCP)ndatablock.h utilarr.h 90 $(CXXCOMPILE) -o $@ $< 91 92 $(SOPHYAOBJP)tarrinit.o: tarrinit.cc \ 93 $(SOPHYAINCP)sopnamsp.h \ 94 $(SOPHYAINCP)machdefs.h tarrinit.h \ 95 $(SOPHYAINCP)sophyainit.h fioarr.h \ 96 tarray.h basarr.h \ 97 $(SOPHYAINCP)anydataobj.h \ 98 $(SOPHYAINCP)mutyv.h \ 99 $(SOPHYAINCP)dvlist.h \ 100 $(SOPHYAINCP)objfio.h \ 101 $(SOPHYAINCP)ppersist.h \ 102 $(SOPHYAINCP)pexceptions.h \ 103 $(SOPHYAINCP)gnumd5.h \ 104 $(SOPHYAINCP)ppfbinstream.h \ 105 $(SOPHYAINCP)rawstream.h \ 106 $(SOPHYAINCP)ppfnametag.h \ 107 $(SOPHYAINCP)ndatablock.h utilarr.h \ 108 tmatrix.h tvector.h 109 $(CXXCOMPILE) -o $@ $< 110 111 $(SOPHYAOBJP)tmatrix.o: tmatrix.cc \ 112 $(SOPHYAINCP)sopnamsp.h \ 113 $(SOPHYAINCP)machdefs.h \ 114 $(SOPHYAINCP)pexceptions.h tmatrix.h \ 115 tarray.h basarr.h \ 116 $(SOPHYAINCP)anydataobj.h \ 117 $(SOPHYAINCP)mutyv.h \ 118 $(SOPHYAINCP)dvlist.h \ 119 $(SOPHYAINCP)objfio.h \ 120 $(SOPHYAINCP)ppersist.h \ 121 $(SOPHYAINCP)gnumd5.h \ 122 $(SOPHYAINCP)ppfbinstream.h \ 123 $(SOPHYAINCP)rawstream.h \ 124 $(SOPHYAINCP)ppfnametag.h \ 125 $(SOPHYAINCP)ndatablock.h utilarr.h 126 $(CXXCOMPILE) -o $@ $< 127 128 $(SOPHYAOBJP)toeplitzMatrix.o: toeplitzMatrix.cc \ 129 $(SOPHYAINCP)sopnamsp.h toeplitzMatrix.h \ 130 $(SOPHYAINCP)machdefs.h \ 131 $(SOPHYAINCP)nbmath.h \ 132 $(SOPHYAINCP)smathconst.h \ 133 $(SOPHYAINCP)timing.h array.h tarray.h \ 134 basarr.h $(SOPHYAINCP)anydataobj.h \ 135 $(SOPHYAINCP)mutyv.h \ 136 $(SOPHYAINCP)dvlist.h \ 137 $(SOPHYAINCP)objfio.h \ 138 $(SOPHYAINCP)ppersist.h \ 139 $(SOPHYAINCP)pexceptions.h \ 140 $(SOPHYAINCP)gnumd5.h \ 141 $(SOPHYAINCP)ppfbinstream.h \ 142 $(SOPHYAINCP)rawstream.h \ 143 $(SOPHYAINCP)ppfnametag.h \ 144 $(SOPHYAINCP)ndatablock.h utilarr.h \ 145 tmatrix.h tvector.h matharr.h fioarr.h sopemtx.h \ 146 $(SOPHYAINCP)fftservintf.h \ 147 $(SOPHYAINCP)tmatrix.h \ 148 $(SOPHYAINCP)tvector.h \ 149 $(SOPHYAINCP)fftpserver.h 150 $(CXXCOMPILE) -o $@ $< 151 152 $(SOPHYAOBJP)tvector.o: tvector.cc \ 153 $(SOPHYAINCP)sopnamsp.h \ 154 $(SOPHYAINCP)machdefs.h \ 155 $(SOPHYAINCP)pexceptions.h tvector.h \ 156 tmatrix.h tarray.h basarr.h \ 157 $(SOPHYAINCP)anydataobj.h \ 158 $(SOPHYAINCP)mutyv.h \ 159 $(SOPHYAINCP)dvlist.h \ 160 $(SOPHYAINCP)objfio.h \ 161 $(SOPHYAINCP)ppersist.h \ 162 $(SOPHYAINCP)gnumd5.h \ 163 $(SOPHYAINCP)ppfbinstream.h \ 164 $(SOPHYAINCP)rawstream.h \ 165 $(SOPHYAINCP)ppfnametag.h \ 166 $(SOPHYAINCP)ndatablock.h utilarr.h 167 $(CXXCOMPILE) -o $@ $< 168 169 $(SOPHYAOBJP)utilarr.o: utilarr.cc \ 170 $(SOPHYAINCP)sopnamsp.h \ 171 $(SOPHYAINCP)machdefs.h utilarr.h \ 172 $(SOPHYAINCP)mutyv.h \ 173 $(SOPHYAINCP)srandgen.h 174 $(CXXCOMPILE) -o $@ $< 175 -
trunk/SophyaPI/PI/Makefile
r2544 r2743 1 MODULECXXREPNAME := PI 2 MODULEDECCXXFLAGS := -msg_quiet 3 include ../Mgr/Makefile.h 4 5 all: $(LIB)libPI.a 6 $(LIB)libPI.a : $(OBJ)lut.o $(OBJ)parradapter.o $(OBJ)pi3ddrw.o $(OBJ)pi3dwdg.o $(OBJ)piapplgen.o $(OBJ)piapplx.o $(OBJ)piaxes.o $(OBJ)piaxestools.o $(OBJ)pibargraph.o $(OBJ)pibwdggen.o $(OBJ)pibwdgx.o $(OBJ)picmap.o $(OBJ)picmapgen.o $(OBJ)picmapview.o $(OBJ)picmapx.o $(OBJ)picons.o $(OBJ)picontainergen.o $(OBJ)picontainerx.o $(OBJ)pidrawer.o $(OBJ)pidrawwin.o $(OBJ)pidrwtools.o $(OBJ)pieldrw.o $(OBJ)pievthandler.o $(OBJ)pifilechogen.o $(OBJ)pifilechox.o $(OBJ)pifontgen.o $(OBJ)pifontx.o $(OBJ)pigraph3d.o $(OBJ)pigraphgen.o $(OBJ)pigraphps.o $(OBJ)pigraphuc.o $(OBJ)pigraphx.o $(OBJ)pigratt.o $(OBJ)pigrcoord.o $(OBJ)piimage.o $(OBJ)piimgtools.o $(OBJ)pilineatt.o $(OBJ)pilistgen.o $(OBJ)pilistx.o $(OBJ)pimenubargen.o $(OBJ)pimenubarx.o $(OBJ)pimenugen.o $(OBJ)pimenux.o $(OBJ)pimsghandler.o $(OBJ)pioptmenugen.o $(OBJ)pioptmenux.o $(OBJ)piperiodx.o $(OBJ)pipixmapgen.o $(OBJ)pipixmapx.o $(OBJ)piscdrawwdg.o $(OBJ)pistdwdggen.o $(OBJ)pistdwdgx.o $(OBJ)pistzwin.o $(OBJ)pisurfdr.o $(OBJ)pitherm.o $(OBJ)pitxtdrw.o $(OBJ)piwdggen.o $(OBJ)piwdgx.o $(OBJ)piwindowgen.o $(OBJ)piwindowx.o $(OBJ)pixtbase.o $(OBJ)piyfxdrw.o $(OBJ)psfile.o 7 $(AR) $(ARFLAGS) $@ $($(ARARGS)) 8 ifeq ($(CXX),cxx) 9 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 10 endif 1 include ../BuildMgr/sophyamake.inc 2 3 all: $(SOPHYALIBP)libPI.a 11 4 12 5 clean: 13 rm -f $(OBJ)lut.o $(OBJ)parradapter.o $(OBJ)pi3ddrw.o $(OBJ)pi3dwdg.o $(OBJ)piapplgen.o $(OBJ)piapplx.o $(OBJ)piaxes.o $(OBJ)piaxestools.o $(OBJ)pibargraph.o $(OBJ)pibwdggen.o $(OBJ)pibwdgx.o $(OBJ)picmap.o $(OBJ)picmapgen.o $(OBJ)picmapview.o $(OBJ)picmapx.o $(OBJ)picons.o $(OBJ)picontainergen.o $(OBJ)picontainerx.o $(OBJ)pidrawer.o $(OBJ)pidrawwin.o $(OBJ)pidrwtools.o $(OBJ)pieldrw.o $(OBJ)pievthandler.o $(OBJ)pifilechogen.o $(OBJ)pifilechox.o $(OBJ)pifontgen.o $(OBJ)pifontx.o $(OBJ)pigraph3d.o $(OBJ)pigraphgen.o $(OBJ)pigraphps.o $(OBJ)pigraphuc.o $(OBJ)pigraphx.o $(OBJ)pigratt.o $(OBJ)pigrcoord.o $(OBJ)piimage.o $(OBJ)piimgtools.o $(OBJ)pilineatt.o $(OBJ)pilistgen.o $(OBJ)pilistx.o $(OBJ)pimenubargen.o $(OBJ)pimenubarx.o $(OBJ)pimenugen.o $(OBJ)pimenux.o $(OBJ)pimsghandler.o $(OBJ)pioptmenugen.o $(OBJ)pioptmenux.o $(OBJ)piperiodx.o $(OBJ)pipixmapgen.o $(OBJ)pipixmapx.o $(OBJ)piscdrawwdg.o $(OBJ)pistdwdggen.o $(OBJ)pistdwdgx.o $(OBJ)pistzwin.o $(OBJ)pisurfdr.o $(OBJ)pitherm.o $(OBJ)pitxtdrw.o $(OBJ)piwdggen.o $(OBJ)piwdgx.o $(OBJ)piwindowgen.o $(OBJ)piwindowx.o $(OBJ)pixtbase.o $(OBJ)piyfxdrw.o $(OBJ)psfile.o 14 ifeq ($(CXX),cxx) 15 cd $(REPM); rm -f *.o 16 endif 17 18 $(OBJ)lut.o: lut.cc $(INC)machdefs.h lut.h 19 $(OBJ)parradapter.o: parradapter.cc parradapter.h \ 20 $(INC)machdefs.h lut.h 21 $(OBJ)pi3ddrw.o: pi3ddrw.cc pi3ddrw.h pisysdep.h \ 22 $(INC)machdefs.h pidrawer.h pibwdggen.h \ 23 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 24 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 25 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigratt.h piaxes.h \ 26 pieldrw.h pigraph3d.h 27 $(OBJ)pi3dwdg.o: pi3dwdg.cc pi3dwdg.h pisysdep.h \ 28 $(INC)machdefs.h pi3ddrw.h pidrawer.h \ 29 pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h \ 30 picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h \ 31 pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h pigratt.h \ 32 piaxes.h pieldrw.h pigraph3d.h pibwdgx.h pigraphps.h pidrwtools.h \ 33 pistdwdgx.h pistdwdggen.h pimenux.h pimenugen.h pioptmenux.h \ 34 pioptmenugen.h piwindowx.h piwindowgen.h picontainerx.h \ 35 picontainergen.h piapplx.h piapplgen.h pimenubarx.h pimenubargen.h \ 36 picons.h 37 $(OBJ)piapplgen.o: piapplgen.cc piapplgen.h pimsghandler.h \ 38 $(INC)machdefs.h pisysdep.h picontainerx.h \ 39 picontainergen.h piwdgx.h piwdggen.h picolist.h pimenubarx.h \ 40 pimenubargen.h pimenux.h pimenugen.h picons.h pistdwdgx.h \ 41 pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h \ 42 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 43 pigraphuc.h pievthandler.h psfile.h pigraphps.h 44 $(OBJ)piapplx.o: piapplx.cc piapplx.h piapplgen.h pimsghandler.h \ 45 $(INC)machdefs.h pisysdep.h picontainerx.h \ 46 picontainergen.h piwdgx.h piwdggen.h picolist.h pimenubarx.h \ 47 pimenubargen.h pimenux.h pimenugen.h picons.h pistdwdgx.h \ 48 pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h \ 49 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 50 pigraphuc.h pievthandler.h psfile.h pigraphps.h 51 $(OBJ)piaxes.o: piaxes.cc $(INC)machdefs.h piaxes.h \ 52 pigraphuc.h pisysdep.h pigraphgen.h piwdgx.h piwdggen.h \ 53 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pifontx.h \ 54 pifontgen.h pigrcoord.h pilineatt.h pigratt.h 55 $(OBJ)piaxestools.o: piaxestools.cc piaxes.h pigraphuc.h pisysdep.h \ 56 $(INC)machdefs.h pigraphgen.h piwdgx.h \ 57 piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h \ 58 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigratt.h piaxestools.h \ 59 pistdwdgx.h pistdwdggen.h pioptmenux.h pioptmenugen.h pimenux.h \ 60 pimenugen.h piwindowx.h piwindowgen.h picontainerx.h picontainergen.h \ 61 piapplx.h piapplgen.h pimenubarx.h pimenubargen.h picons.h pibwdgx.h \ 62 pibwdggen.h pigraphx.h pievthandler.h psfile.h pigraphps.h \ 63 piscdrawwdg.h pidrawer.h pieldrw.h 64 $(OBJ)pibargraph.o: pibargraph.cc $(INC)machdefs.h \ 65 pibargraph.h pisysdep.h pidrawer.h pibwdggen.h piwdgx.h piwdggen.h \ 66 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 67 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 68 pigraphuc.h pievthandler.h psfile.h pigratt.h piaxes.h 69 $(OBJ)pibwdggen.o: pibwdggen.cc pibwdggen.h pisysdep.h \ 70 $(INC)machdefs.h piwdgx.h piwdggen.h \ 71 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 72 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 73 pigraphuc.h pievthandler.h psfile.h pidrawer.h pigratt.h piaxes.h \ 74 pigraphps.h pidrwtools.h pistdwdgx.h pistdwdggen.h pimenux.h \ 75 pimenugen.h pioptmenux.h pioptmenugen.h piwindowx.h piwindowgen.h \ 76 picontainerx.h picontainergen.h piapplx.h piapplgen.h pimenubarx.h \ 77 pimenubargen.h picons.h pibwdgx.h 78 $(OBJ)pibwdgx.o: pibwdgx.cc pixtbaseP.h pibwdgx.h pisysdep.h \ 79 $(INC)machdefs.h pibwdggen.h piwdgx.h \ 80 piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h \ 81 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 82 pigraphuc.h pievthandler.h psfile.h pigraphps.h pixtbase.h 83 $(OBJ)picmap.o: picmap.cc picmap.h pisysdep.h \ 84 $(INC)machdefs.h picmapx.h picmapgen.h 85 $(OBJ)picmapgen.o: picmapgen.cc picmapgen.h pisysdep.h \ 86 $(INC)machdefs.h picmapx.h picmap.h 87 $(OBJ)picmapview.o: picmapview.cc picmapview.h pisysdep.h \ 88 $(INC)machdefs.h pibwdgx.h pibwdggen.h \ 89 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 90 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 91 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h 92 $(OBJ)picmapx.o: picmapx.cc piwdgx.h piwdggen.h \ 93 $(INC)machdefs.h pimsghandler.h picolist.h \ 94 picmapx.h picmapgen.h pisysdep.h 95 $(OBJ)picons.o: picons.cc pisysdep.h \ 96 $(INC)machdefs.h pimenux.h pimenugen.h \ 97 piwdgx.h piwdggen.h pimsghandler.h picolist.h picons.h pistdwdgx.h \ 98 pistdwdggen.h picontainerx.h picontainergen.h pibwdgx.h pibwdggen.h \ 99 picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h \ 100 pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h \ 101 psfile.h pigraphps.h 102 $(OBJ)picontainergen.o: picontainergen.cc picontainergen.h pisysdep.h \ 103 $(INC)machdefs.h piwdgx.h piwdggen.h \ 104 pimsghandler.h picolist.h 105 $(OBJ)picontainerx.o: picontainerx.cc picontainerx.h pisysdep.h \ 106 $(INC)machdefs.h picontainergen.h piwdgx.h \ 107 piwdggen.h pimsghandler.h picolist.h 108 $(OBJ)pidrawer.o: pidrawer.cc $(INC)machdefs.h \ 109 pidrawer.h pibwdggen.h pisysdep.h piwdgx.h piwdggen.h pimsghandler.h \ 110 picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 111 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 112 pievthandler.h psfile.h pigratt.h piaxes.h pidrwtools.h pistdwdgx.h \ 113 pistdwdggen.h pimenux.h pimenugen.h pioptmenux.h pioptmenugen.h \ 114 piwindowx.h piwindowgen.h picontainerx.h picontainergen.h piapplx.h \ 115 piapplgen.h pimenubarx.h pimenubargen.h picons.h pibwdgx.h \ 116 pigraphps.h ucckprot.h 117 $(OBJ)pidrawwin.o: pidrawwin.cc pidrawwin.h pisysdep.h \ 118 $(INC)machdefs.h piwindowx.h piwindowgen.h \ 119 picontainerx.h picontainergen.h piwdgx.h piwdggen.h pimsghandler.h \ 120 picolist.h piscdrawwdg.h pibwdgx.h pibwdggen.h picmap.h picmapx.h \ 121 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 122 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h \ 123 pistdwdgx.h pistdwdggen.h pidrawer.h pigratt.h piaxes.h pieldrw.h 124 $(OBJ)pidrwtools.o: pidrwtools.cc pidrwtools.h pisysdep.h \ 125 $(INC)machdefs.h pistdwdgx.h pistdwdggen.h \ 126 piwdgx.h piwdggen.h pimsghandler.h picolist.h pimenux.h pimenugen.h \ 127 pioptmenux.h pioptmenugen.h piwindowx.h piwindowgen.h picontainerx.h \ 128 picontainergen.h piapplx.h piapplgen.h pimenubarx.h pimenubargen.h \ 129 picons.h pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h \ 130 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 131 pigraphuc.h pievthandler.h psfile.h pigraphps.h piscdrawwdg.h \ 132 pidrawer.h pigratt.h piaxes.h pieldrw.h pi3dwdg.h pi3ddrw.h \ 133 pigraph3d.h 134 $(OBJ)pieldrw.o: pieldrw.cc $(INC)machdefs.h \ 135 pieldrw.h pidrawer.h pibwdggen.h pisysdep.h piwdgx.h piwdggen.h \ 136 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 137 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 138 pigraphuc.h pievthandler.h psfile.h pigratt.h piaxes.h 139 $(OBJ)pievthandler.o: pievthandler.cc pievthandler.h pisysdep.h \ 140 $(INC)machdefs.h pimsghandler.h piwdgx.h \ 141 piwdggen.h picolist.h pigraphx.h pigraphgen.h picmap.h picmapx.h \ 142 picmapgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h 143 $(OBJ)pifilechogen.o: pifilechogen.cc pifilechogen.h pisysdep.h \ 144 $(INC)machdefs.h piwdgx.h piwdggen.h \ 145 pimsghandler.h picolist.h 146 $(OBJ)pifilechox.o: pifilechox.cc pisysdep.h \ 147 $(INC)machdefs.h piapplx.h piapplgen.h \ 148 pimsghandler.h picontainerx.h picontainergen.h piwdgx.h piwdggen.h \ 149 picolist.h pimenubarx.h pimenubargen.h pimenux.h pimenugen.h picons.h \ 150 pistdwdgx.h pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h picmapx.h \ 151 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 152 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h \ 153 pifilechox.h pifilechogen.h piwindowx.h piwindowgen.h 154 $(OBJ)pifontgen.o: pifontgen.cc pigraphgen.h pisysdep.h \ 155 $(INC)machdefs.h piwdgx.h piwdggen.h \ 156 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pifontx.h \ 157 pifontgen.h pigrcoord.h pilineatt.h 158 $(OBJ)pifontx.o: pifontx.cc pisysdep.h \ 159 $(INC)machdefs.h pifontx.h pifontgen.h \ 160 piwdgx.h piwdggen.h pimsghandler.h picolist.h 161 $(OBJ)pigraph3d.o: pigraph3d.cc pigraph3d.h pisysdep.h \ 162 $(INC)machdefs.h pigraphuc.h pigraphgen.h \ 163 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 164 picmapgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h 165 $(OBJ)pigraphgen.o: pigraphgen.cc pigraphgen.h pisysdep.h \ 166 $(INC)machdefs.h piwdgx.h piwdggen.h \ 167 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pifontx.h \ 168 pifontgen.h pigrcoord.h pilineatt.h ucckprot.h 169 $(OBJ)pigraphps.o: pigraphps.cc pigraphps.h pisysdep.h \ 170 $(INC)machdefs.h pigraphgen.h piwdgx.h \ 171 piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h \ 172 pifontx.h pifontgen.h pigrcoord.h pilineatt.h psfile.h 173 $(OBJ)pigraphuc.o: pigraphuc.cc $(INC)machdefs.h \ 174 pigraphuc.h pisysdep.h pigraphgen.h piwdgx.h piwdggen.h \ 175 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pifontx.h \ 176 pifontgen.h pigrcoord.h pilineatt.h ucckprot.h 177 $(OBJ)pigraphx.o: pigraphx.cc pigraphx.h pisysdep.h \ 178 $(INC)machdefs.h pigraphgen.h piwdgx.h \ 179 piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h \ 180 pifontx.h pifontgen.h pigrcoord.h pilineatt.h 181 $(OBJ)pigratt.o: pigratt.cc pigratt.h pisysdep.h \ 182 $(INC)machdefs.h pigraphgen.h piwdgx.h \ 183 piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h \ 184 pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 185 $(INC)strutilxx.h 186 $(OBJ)pigrcoord.o: pigrcoord.cc pigrcoord.h pisysdep.h \ 187 $(INC)machdefs.h 188 $(OBJ)piimage.o: piimage.cc pisysdep.h \ 189 $(INC)machdefs.h piimage.h parradapter.h \ 190 lut.h pieldrw.h pidrawer.h pibwdggen.h piwdgx.h piwdggen.h \ 191 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 192 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 193 pigraphuc.h pievthandler.h psfile.h pigratt.h piaxes.h pipixmapx.h \ 194 pipixmapgen.h pibwdgx.h pigraphps.h pistdwdgx.h pistdwdggen.h \ 195 piwindowx.h piwindowgen.h picontainerx.h picontainergen.h \ 196 picmapview.h piimgtools.h pioptmenux.h pioptmenugen.h pimenux.h \ 197 pimenugen.h piapplx.h piapplgen.h pimenubarx.h pimenubargen.h \ 198 picons.h pidrwtools.h piscdrawwdg.h piyfxdrw.h 199 $(OBJ)piimgtools.o: piimgtools.cc piimgtools.h pisysdep.h \ 200 $(INC)machdefs.h pistdwdgx.h pistdwdggen.h \ 201 piwdgx.h piwdggen.h pimsghandler.h picolist.h pioptmenux.h \ 202 pioptmenugen.h pimenux.h pimenugen.h piwindowx.h piwindowgen.h \ 203 picontainerx.h picontainergen.h piapplx.h piapplgen.h pimenubarx.h \ 204 pimenubargen.h picons.h pibwdgx.h pibwdggen.h picmap.h picmapx.h \ 205 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 206 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h piimage.h \ 207 parradapter.h lut.h pieldrw.h pidrawer.h pigratt.h piaxes.h \ 208 pipixmapx.h pipixmapgen.h picmapview.h 209 $(OBJ)pilineatt.o: pilineatt.cc pilineatt.h pisysdep.h \ 210 $(INC)machdefs.h 211 $(OBJ)pilistgen.o: pilistgen.cc pilistgen.h pisysdep.h \ 212 $(INC)machdefs.h piwdgx.h piwdggen.h \ 213 pimsghandler.h picolist.h 214 $(OBJ)pilistx.o: pilistx.cc pilistx.h pilistgen.h pisysdep.h \ 215 $(INC)machdefs.h piwdgx.h piwdggen.h \ 216 pimsghandler.h picolist.h picontainerx.h picontainergen.h 217 $(OBJ)pimenubargen.o: pimenubargen.cc pimenubargen.h pisysdep.h \ 218 $(INC)machdefs.h pimenux.h pimenugen.h \ 219 piwdgx.h piwdggen.h pimsghandler.h picolist.h piapplx.h piapplgen.h \ 220 picontainerx.h picontainergen.h pimenubarx.h picons.h pistdwdgx.h \ 221 pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h \ 222 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 223 pigraphuc.h pievthandler.h psfile.h pigraphps.h 224 $(OBJ)pimenubarx.o: pimenubarx.cc pimenubarx.h pimenubargen.h pisysdep.h \ 225 $(INC)machdefs.h pimenux.h pimenugen.h \ 226 piwdgx.h piwdggen.h pimsghandler.h picolist.h piapplx.h piapplgen.h \ 227 picontainerx.h picontainergen.h picons.h pistdwdgx.h pistdwdggen.h \ 228 pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 229 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 230 pigraphuc.h pievthandler.h psfile.h pigraphps.h 231 $(OBJ)pimenugen.o: pimenugen.cc pimenugen.h pisysdep.h \ 232 $(INC)machdefs.h piwdgx.h piwdggen.h \ 233 pimsghandler.h picolist.h 234 $(OBJ)pimenux.o: pimenux.cc pisysdep.h \ 235 $(INC)machdefs.h pimenubarx.h pimenubargen.h \ 236 pimenux.h pimenugen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h 237 $(OBJ)pimsghandler.o: pimsghandler.cc pimsghandler.h \ 238 $(INC)machdefs.h 239 $(OBJ)pioptmenugen.o: pioptmenugen.cc pioptmenugen.h pisysdep.h \ 240 $(INC)machdefs.h pimenux.h pimenugen.h \ 241 piwdgx.h piwdggen.h pimsghandler.h picolist.h 242 $(OBJ)pioptmenux.o: pioptmenux.cc pisysdep.h \ 243 $(INC)machdefs.h pioptmenux.h pioptmenugen.h \ 244 pimenux.h pimenugen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 245 pistdwdgx.h pistdwdggen.h piapplx.h piapplgen.h picontainerx.h \ 246 picontainergen.h pimenubarx.h pimenubargen.h picons.h pibwdgx.h \ 247 pibwdggen.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 248 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 249 pievthandler.h psfile.h pigraphps.h 250 $(OBJ)piperiodx.o: piperiodx.cc piwdgx.h piwdggen.h \ 251 $(INC)machdefs.h pimsghandler.h picolist.h \ 252 piperiodx.h $(INC)periodic.h 253 $(OBJ)pipixmapgen.o: pipixmapgen.cc pipixmapgen.h pisysdep.h \ 254 $(INC)machdefs.h pibwdgx.h pibwdggen.h \ 255 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 256 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 257 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h 258 $(OBJ)pipixmapx.o: pipixmapx.cc pipixmapx.h pipixmapgen.h pisysdep.h \ 259 $(INC)machdefs.h pibwdgx.h pibwdggen.h \ 260 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 261 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 262 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h 263 $(OBJ)piscdrawwdg.o: piscdrawwdg.cc \ 264 $(INC)machdefs.h piscdrawwdg.h pisysdep.h \ 265 pibwdgx.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 266 picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h \ 267 pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h \ 268 psfile.h pigraphps.h pistdwdgx.h pistdwdggen.h piwindowx.h \ 269 piwindowgen.h picontainerx.h picontainergen.h pidrawer.h pigratt.h \ 270 piaxes.h pieldrw.h pidrwtools.h pimenux.h pimenugen.h pioptmenux.h \ 271 pioptmenugen.h piapplx.h piapplgen.h pimenubarx.h pimenubargen.h \ 272 picons.h piaxestools.h 273 $(OBJ)pistdwdggen.o: pistdwdggen.cc pistdwdggen.h pisysdep.h \ 274 $(INC)machdefs.h piwdgx.h piwdggen.h \ 275 pimsghandler.h picolist.h 276 $(OBJ)pistdwdgx.o: pistdwdgx.cc pisysdep.h \ 277 $(INC)machdefs.h pistdwdgx.h pistdwdggen.h \ 278 piwdgx.h piwdggen.h pimsghandler.h picolist.h picontainerx.h \ 279 picontainergen.h 280 $(OBJ)pistzwin.o: pistzwin.cc pistzwin.h pisysdep.h \ 281 $(INC)machdefs.h piwindowx.h piwindowgen.h \ 282 picontainerx.h picontainergen.h piwdgx.h piwdggen.h pimsghandler.h \ 283 picolist.h piperiodx.h $(INC)periodic.h \ 284 psfile.h pifontgen.h pigraphgen.h picmap.h picmapx.h picmapgen.h \ 285 pifontx.h pigrcoord.h pilineatt.h 286 $(OBJ)pisurfdr.o: pisurfdr.cc pisurfdr.h parradapter.h \ 287 $(INC)machdefs.h lut.h pi3ddrw.h pisysdep.h \ 288 pidrawer.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 289 picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h \ 290 pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h \ 291 psfile.h pigratt.h piaxes.h pieldrw.h pigraph3d.h 292 $(OBJ)pitherm.o: pitherm.cc pitherm.h pisysdep.h \ 293 $(INC)machdefs.h pibwdgx.h pibwdggen.h \ 294 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 295 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 296 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h 297 $(OBJ)pitxtdrw.o: pitxtdrw.cc $(INC)machdefs.h \ 298 pitxtdrw.h pisysdep.h pidrawer.h pibwdggen.h piwdgx.h piwdggen.h \ 299 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 300 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 301 pigraphuc.h pievthandler.h psfile.h pigratt.h piaxes.h 302 $(OBJ)piwdggen.o: piwdggen.cc piwdggen.h \ 303 $(INC)machdefs.h pimsghandler.h picolist.h \ 304 picontainergen.h pisysdep.h piwdgx.h pievthandler.h pigraphx.h \ 305 pigraphgen.h picmap.h picmapx.h picmapgen.h pifontx.h pifontgen.h \ 306 pigrcoord.h pilineatt.h psfile.h 307 $(OBJ)piwdgx.o: piwdgx.cc piwdgx.h piwdggen.h \ 308 $(INC)machdefs.h pimsghandler.h picolist.h \ 309 picontainerx.h pisysdep.h picontainergen.h pievthandler.h pigraphx.h \ 310 pigraphgen.h picmap.h picmapx.h picmapgen.h pifontx.h pifontgen.h \ 311 pigrcoord.h pilineatt.h $(INC)pexceptions.h 312 $(OBJ)piwindowgen.o: piwindowgen.cc piwindowgen.h pisysdep.h \ 313 $(INC)machdefs.h picontainerx.h \ 314 picontainergen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 315 psfile.h pifontgen.h pigraphgen.h picmap.h picmapx.h picmapgen.h \ 316 pifontx.h pigrcoord.h pilineatt.h 317 $(OBJ)piwindowx.o: piwindowx.cc piwindowx.h piwindowgen.h pisysdep.h \ 318 $(INC)machdefs.h picontainerx.h \ 319 picontainergen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h 320 $(OBJ)pixtbase.o: pixtbase.cc $(INC)machdefs.h \ 321 pixtbaseP.h pibwdgx.h pisysdep.h pibwdggen.h piwdgx.h piwdggen.h \ 322 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 323 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 324 pigraphuc.h pievthandler.h psfile.h pigraphps.h pixtbase.h 325 $(OBJ)piyfxdrw.o: piyfxdrw.cc $(INC)machdefs.h \ 326 piyfxdrw.h pisysdep.h parradapter.h lut.h pidrawer.h pibwdggen.h \ 327 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 328 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 329 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigratt.h piaxes.h 330 $(OBJ)psfile.o: psfile.cc psfile.h $(INC)machdefs.h \ 331 pisysdep.h pifontgen.h pigraphgen.h piwdgx.h piwdggen.h \ 332 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pifontx.h \ 333 pigrcoord.h pilineatt.h 6 rm -f $(SOPHYAOBJP)lut.o $(SOPHYAOBJP)parradapter.o $(SOPHYAOBJP)pi3ddrw.o $(SOPHYAOBJP)pi3dwdg.o $(SOPHYAOBJP)piapplgen.o $(SOPHYAOBJP)piapplmac.o $(SOPHYAOBJP)piapplx.o $(SOPHYAOBJP)piaxes.o $(SOPHYAOBJP)piaxestools.o $(SOPHYAOBJP)pibargraph.o $(SOPHYAOBJP)pibwdggen.o $(SOPHYAOBJP)pibwdgmac.o $(SOPHYAOBJP)pibwdgx.o $(SOPHYAOBJP)picmap.o $(SOPHYAOBJP)picmapgen.o $(SOPHYAOBJP)picmapmac.o $(SOPHYAOBJP)picmapview.o $(SOPHYAOBJP)picmapx.o $(SOPHYAOBJP)picons.o $(SOPHYAOBJP)picontainergen.o $(SOPHYAOBJP)picontainermac.o $(SOPHYAOBJP)picontainerx.o $(SOPHYAOBJP)pidrawer.o $(SOPHYAOBJP)pidrawwin.o $(SOPHYAOBJP)pidrwtools.o $(SOPHYAOBJP)pieldrw.o $(SOPHYAOBJP)pierrdisp.o $(SOPHYAOBJP)pievthandler.o $(SOPHYAOBJP)pifilechogen.o $(SOPHYAOBJP)pifilechomac.o $(SOPHYAOBJP)pifilechox.o $(SOPHYAOBJP)pifontgen.o $(SOPHYAOBJP)pifontmac.o $(SOPHYAOBJP)pifontx.o $(SOPHYAOBJP)pigraph3d.o $(SOPHYAOBJP)pigraphgen.o $(SOPHYAOBJP)pigraphmac.o $(SOPHYAOBJP)pigraphps.o $(SOPHYAOBJP)pigraphuc.o $(SOPHYAOBJP)pigraphx.o $(SOPHYAOBJP)pigratt.o $(SOPHYAOBJP)pigrcoord.o $(SOPHYAOBJP)piimage.o $(SOPHYAOBJP)piimgtools.o $(SOPHYAOBJP)pilineatt.o $(SOPHYAOBJP)pilistgen.o $(SOPHYAOBJP)pilistmac.o $(SOPHYAOBJP)pilistx.o $(SOPHYAOBJP)pimenubargen.o $(SOPHYAOBJP)pimenubarmac.o $(SOPHYAOBJP)pimenubarx.o $(SOPHYAOBJP)pimenugen.o $(SOPHYAOBJP)pimenumac.o $(SOPHYAOBJP)pimenux.o $(SOPHYAOBJP)pimsghandler.o $(SOPHYAOBJP)pioptmenugen.o $(SOPHYAOBJP)pioptmenumac.o $(SOPHYAOBJP)pioptmenux.o $(SOPHYAOBJP)piperiodmac.o $(SOPHYAOBJP)piperiodx.o $(SOPHYAOBJP)pipixmapgen.o $(SOPHYAOBJP)pipixmapmac.o $(SOPHYAOBJP)pipixmapx.o $(SOPHYAOBJP)pippapplmac.o $(SOPHYAOBJP)pipplist.o $(SOPHYAOBJP)pippmenubar.o $(SOPHYAOBJP)pippoptmenu.o $(SOPHYAOBJP)pippviewadapter.o $(SOPHYAOBJP)pippwindowmac.o $(SOPHYAOBJP)piscdrawwdg.o $(SOPHYAOBJP)pistdwdggen.o $(SOPHYAOBJP)pistdwdgmac.o $(SOPHYAOBJP)pistdwdgx.o $(SOPHYAOBJP)pistzwin.o $(SOPHYAOBJP)pisurfdr.o $(SOPHYAOBJP)pitherm.o $(SOPHYAOBJP)pitxtdrw.o $(SOPHYAOBJP)piup.o $(SOPHYAOBJP)piupdattachment.o $(SOPHYAOBJP)piup_def.o $(SOPHYAOBJP)piwdggen.o $(SOPHYAOBJP)piwdgmac.o $(SOPHYAOBJP)piwdgx.o $(SOPHYAOBJP)piwindowgen.o $(SOPHYAOBJP)piwindowmac.o $(SOPHYAOBJP)piwindowx.o $(SOPHYAOBJP)pixtbase.o $(SOPHYAOBJP)piyfxdrw.o $(SOPHYAOBJP)psfile.o $(SOPHYAOBJP)xdispim.o 7 rm -f $(SOPHYALIBP)libPI.a 8 9 $(SOPHYALIBP)libPI.a : $(SOPHYAOBJP)lut.o $(SOPHYAOBJP)parradapter.o $(SOPHYAOBJP)pi3ddrw.o $(SOPHYAOBJP)pi3dwdg.o $(SOPHYAOBJP)piapplgen.o $(SOPHYAOBJP)piapplx.o $(SOPHYAOBJP)piaxes.o $(SOPHYAOBJP)piaxestools.o $(SOPHYAOBJP)pibargraph.o $(SOPHYAOBJP)pibwdggen.o $(SOPHYAOBJP)pibwdgx.o $(SOPHYAOBJP)picmap.o $(SOPHYAOBJP)picmapgen.o $(SOPHYAOBJP)picmapview.o $(SOPHYAOBJP)picmapx.o $(SOPHYAOBJP)picons.o $(SOPHYAOBJP)picontainergen.o $(SOPHYAOBJP)picontainerx.o $(SOPHYAOBJP)pidrawer.o $(SOPHYAOBJP)pidrawwin.o $(SOPHYAOBJP)pidrwtools.o $(SOPHYAOBJP)pieldrw.o $(SOPHYAOBJP)pievthandler.o $(SOPHYAOBJP)pifilechogen.o $(SOPHYAOBJP)pifilechox.o $(SOPHYAOBJP)pifontgen.o $(SOPHYAOBJP)pifontx.o $(SOPHYAOBJP)pigraph3d.o $(SOPHYAOBJP)pigraphgen.o $(SOPHYAOBJP)pigraphps.o $(SOPHYAOBJP)pigraphuc.o $(SOPHYAOBJP)pigraphx.o $(SOPHYAOBJP)pigratt.o $(SOPHYAOBJP)pigrcoord.o $(SOPHYAOBJP)piimage.o $(SOPHYAOBJP)piimgtools.o $(SOPHYAOBJP)pilineatt.o $(SOPHYAOBJP)pilistgen.o $(SOPHYAOBJP)pilistx.o $(SOPHYAOBJP)pimenubargen.o $(SOPHYAOBJP)pimenubarx.o $(SOPHYAOBJP)pimenugen.o $(SOPHYAOBJP)pimenux.o $(SOPHYAOBJP)pimsghandler.o $(SOPHYAOBJP)pioptmenugen.o $(SOPHYAOBJP)pioptmenux.o $(SOPHYAOBJP)piperiodx.o $(SOPHYAOBJP)pipixmapgen.o $(SOPHYAOBJP)pipixmapx.o $(SOPHYAOBJP)piscdrawwdg.o $(SOPHYAOBJP)pistdwdggen.o $(SOPHYAOBJP)pistdwdgx.o $(SOPHYAOBJP)pistzwin.o $(SOPHYAOBJP)pisurfdr.o $(SOPHYAOBJP)pitherm.o $(SOPHYAOBJP)pitxtdrw.o $(SOPHYAOBJP)piwdggen.o $(SOPHYAOBJP)piwdgx.o $(SOPHYAOBJP)piwindowgen.o $(SOPHYAOBJP)piwindowx.o $(SOPHYAOBJP)pixtbase.o $(SOPHYAOBJP)piyfxdrw.o $(SOPHYAOBJP)psfile.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)lut.o: lut.cc $(SOPHYAINCP)sopnamsp.h \ 13 $(SOPHYAINCP)machdefs.h lut.h 14 $(CXXCOMPILE) -o $@ $< 15 16 $(SOPHYAOBJP)parradapter.o: parradapter.cc \ 17 $(SOPHYAINCP)sopnamsp.h parradapter.h \ 18 $(SOPHYAINCP)machdefs.h lut.h 19 $(CXXCOMPILE) -o $@ $< 20 21 $(SOPHYAOBJP)pi3ddrw.o: pi3ddrw.cc \ 22 $(SOPHYAINCP)sopnamsp.h pi3ddrw.h \ 23 pisysdep.h $(SOPHYAINCP)machdefs.h \ 24 pidrawer.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 25 picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h \ 26 pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h \ 27 pigratt.h piaxes.h pieldrw.h pigraph3d.h 28 $(CXXCOMPILE) -o $@ $< 29 30 $(SOPHYAOBJP)pi3dwdg.o: pi3dwdg.cc \ 31 $(SOPHYAINCP)sopnamsp.h pi3dwdg.h \ 32 pisysdep.h $(SOPHYAINCP)machdefs.h \ 33 pi3ddrw.h pidrawer.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h \ 34 picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 35 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 36 pievthandler.h psfile.h pigratt.h piaxes.h pieldrw.h pigraph3d.h \ 37 pibwdgx.h pigraphps.h pidrwtools.h pistdwdgx.h pistdwdggen.h pimenux.h \ 38 pimenugen.h pioptmenux.h pioptmenugen.h piwindowx.h piwindowgen.h \ 39 picontainerx.h picontainergen.h piapplx.h piapplgen.h pimenubarx.h \ 40 pimenubargen.h picons.h 41 $(CXXCOMPILE) -o $@ $< 42 43 $(SOPHYAOBJP)piapplgen.o: piapplgen.cc \ 44 $(SOPHYAINCP)sopnamsp.h piapplgen.h \ 45 pimsghandler.h $(SOPHYAINCP)machdefs.h \ 46 pisysdep.h picontainerx.h picontainergen.h piwdgx.h piwdggen.h \ 47 picolist.h pimenubarx.h pimenubargen.h pimenux.h pimenugen.h picons.h \ 48 pistdwdgx.h pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h picmapx.h \ 49 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 50 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h 51 $(CXXCOMPILE) -o $@ $< 52 53 $(SOPHYAOBJP)piapplx.o: piapplx.cc \ 54 $(SOPHYAINCP)sopnamsp.h piapplx.h \ 55 piapplgen.h pimsghandler.h \ 56 $(SOPHYAINCP)machdefs.h pisysdep.h \ 57 picontainerx.h picontainergen.h piwdgx.h piwdggen.h picolist.h \ 58 pimenubarx.h pimenubargen.h pimenux.h pimenugen.h picons.h pistdwdgx.h \ 59 pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h \ 60 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 61 pigraphuc.h pievthandler.h psfile.h pigraphps.h 62 $(CXXCOMPILE) -o $@ $< 63 64 $(SOPHYAOBJP)piaxes.o: piaxes.cc $(SOPHYAINCP)sopnamsp.h \ 65 $(SOPHYAINCP)machdefs.h piaxes.h \ 66 pigraphuc.h pisysdep.h pigraphgen.h piwdgx.h piwdggen.h pimsghandler.h \ 67 picolist.h picmap.h picmapx.h picmapgen.h pifontx.h pifontgen.h \ 68 pigrcoord.h pilineatt.h pigratt.h 69 $(CXXCOMPILE) -o $@ $< 70 71 $(SOPHYAOBJP)piaxestools.o: piaxestools.cc \ 72 $(SOPHYAINCP)sopnamsp.h piaxes.h \ 73 pigraphuc.h pisysdep.h \ 74 $(SOPHYAINCP)machdefs.h pigraphgen.h \ 75 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 76 picmapgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigratt.h \ 77 piaxestools.h pistdwdgx.h pistdwdggen.h pioptmenux.h pioptmenugen.h \ 78 pimenux.h pimenugen.h piwindowx.h piwindowgen.h picontainerx.h \ 79 picontainergen.h piapplx.h piapplgen.h pimenubarx.h pimenubargen.h \ 80 picons.h pibwdgx.h pibwdggen.h pigraphx.h pievthandler.h psfile.h \ 81 pigraphps.h piscdrawwdg.h pidrawer.h pieldrw.h 82 $(CXXCOMPILE) -o $@ $< 83 84 $(SOPHYAOBJP)pibargraph.o: pibargraph.cc \ 85 $(SOPHYAINCP)sopnamsp.h \ 86 $(SOPHYAINCP)machdefs.h pibargraph.h \ 87 pisysdep.h pidrawer.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h \ 88 picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 89 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 90 pievthandler.h psfile.h pigratt.h piaxes.h 91 $(CXXCOMPILE) -o $@ $< 92 93 $(SOPHYAOBJP)pibwdggen.o: pibwdggen.cc \ 94 $(SOPHYAINCP)sopnamsp.h pibwdggen.h \ 95 pisysdep.h $(SOPHYAINCP)machdefs.h \ 96 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 97 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 98 pilineatt.h pigraphuc.h pievthandler.h psfile.h pidrawer.h pigratt.h \ 99 piaxes.h pigraphps.h pidrwtools.h pistdwdgx.h pistdwdggen.h pimenux.h \ 100 pimenugen.h pioptmenux.h pioptmenugen.h piwindowx.h piwindowgen.h \ 101 picontainerx.h picontainergen.h piapplx.h piapplgen.h pimenubarx.h \ 102 pimenubargen.h picons.h pibwdgx.h 103 $(CXXCOMPILE) -o $@ $< 104 105 $(SOPHYAOBJP)pibwdgx.o: pibwdgx.cc \ 106 $(SOPHYAINCP)sopnamsp.h pixtbaseP.h \ 107 pibwdgx.h pisysdep.h \ 108 $(SOPHYAINCP)machdefs.h pibwdggen.h \ 109 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 110 picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h \ 111 pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h pixtbase.h 112 $(CXXCOMPILE) -o $@ $< 113 114 $(SOPHYAOBJP)picmap.o: picmap.cc $(SOPHYAINCP)sopnamsp.h \ 115 picmap.h pisysdep.h \ 116 $(SOPHYAINCP)machdefs.h picmapx.h \ 117 picmapgen.h 118 $(CXXCOMPILE) -o $@ $< 119 120 $(SOPHYAOBJP)picmapgen.o: picmapgen.cc \ 121 $(SOPHYAINCP)sopnamsp.h picmapgen.h \ 122 pisysdep.h $(SOPHYAINCP)machdefs.h \ 123 picmapx.h picmap.h 124 $(CXXCOMPILE) -o $@ $< 125 126 $(SOPHYAOBJP)picmapview.o: picmapview.cc \ 127 $(SOPHYAINCP)sopnamsp.h picmapview.h \ 128 pisysdep.h $(SOPHYAINCP)machdefs.h \ 129 pibwdgx.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 130 picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h \ 131 pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h \ 132 pigraphps.h 133 $(CXXCOMPILE) -o $@ $< 134 135 $(SOPHYAOBJP)picmapx.o: picmapx.cc \ 136 $(SOPHYAINCP)sopnamsp.h piwdgx.h \ 137 piwdggen.h $(SOPHYAINCP)machdefs.h \ 138 pimsghandler.h picolist.h picmapx.h picmapgen.h pisysdep.h 139 $(CXXCOMPILE) -o $@ $< 140 141 $(SOPHYAOBJP)picons.o: picons.cc $(SOPHYAINCP)sopnamsp.h \ 142 pisysdep.h $(SOPHYAINCP)machdefs.h \ 143 pimenux.h pimenugen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 144 picons.h pistdwdgx.h pistdwdggen.h picontainerx.h picontainergen.h \ 145 pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 146 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 147 pievthandler.h psfile.h pigraphps.h 148 $(CXXCOMPILE) -o $@ $< 149 150 $(SOPHYAOBJP)picontainergen.o: picontainergen.cc \ 151 $(SOPHYAINCP)sopnamsp.h picontainergen.h \ 152 pisysdep.h $(SOPHYAINCP)machdefs.h \ 153 piwdgx.h piwdggen.h pimsghandler.h picolist.h 154 $(CXXCOMPILE) -o $@ $< 155 156 $(SOPHYAOBJP)picontainerx.o: picontainerx.cc \ 157 $(SOPHYAINCP)sopnamsp.h picontainerx.h \ 158 pisysdep.h $(SOPHYAINCP)machdefs.h \ 159 picontainergen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h 160 $(CXXCOMPILE) -o $@ $< 161 162 $(SOPHYAOBJP)pidrawer.o: pidrawer.cc \ 163 $(SOPHYAINCP)sopnamsp.h \ 164 $(SOPHYAINCP)machdefs.h pidrawer.h \ 165 pibwdggen.h pisysdep.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 166 picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h \ 167 pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h \ 168 pigratt.h piaxes.h pidrwtools.h pistdwdgx.h pistdwdggen.h pimenux.h \ 169 pimenugen.h pioptmenux.h pioptmenugen.h piwindowx.h piwindowgen.h \ 170 picontainerx.h picontainergen.h piapplx.h piapplgen.h pimenubarx.h \ 171 pimenubargen.h picons.h pibwdgx.h pigraphps.h ucckprot.h 172 $(CXXCOMPILE) -o $@ $< 173 174 $(SOPHYAOBJP)pidrawwin.o: pidrawwin.cc \ 175 $(SOPHYAINCP)sopnamsp.h pidrawwin.h \ 176 pisysdep.h $(SOPHYAINCP)machdefs.h \ 177 piwindowx.h piwindowgen.h picontainerx.h picontainergen.h piwdgx.h \ 178 piwdggen.h pimsghandler.h picolist.h piscdrawwdg.h pibwdgx.h \ 179 pibwdggen.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 180 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 181 pievthandler.h psfile.h pigraphps.h pistdwdgx.h pistdwdggen.h \ 182 pidrawer.h pigratt.h piaxes.h pieldrw.h 183 $(CXXCOMPILE) -o $@ $< 184 185 $(SOPHYAOBJP)pidrwtools.o: pidrwtools.cc \ 186 $(SOPHYAINCP)sopnamsp.h pidrwtools.h \ 187 pisysdep.h $(SOPHYAINCP)machdefs.h \ 188 pistdwdgx.h pistdwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 189 pimenux.h pimenugen.h pioptmenux.h pioptmenugen.h piwindowx.h \ 190 piwindowgen.h picontainerx.h picontainergen.h piapplx.h piapplgen.h \ 191 pimenubarx.h pimenubargen.h picons.h pibwdgx.h pibwdggen.h picmap.h \ 192 picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h \ 193 pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h \ 194 piscdrawwdg.h pidrawer.h pigratt.h piaxes.h pieldrw.h pi3dwdg.h \ 195 pi3ddrw.h pigraph3d.h 196 $(CXXCOMPILE) -o $@ $< 197 198 $(SOPHYAOBJP)pieldrw.o: pieldrw.cc \ 199 $(SOPHYAINCP)sopnamsp.h \ 200 $(SOPHYAINCP)machdefs.h pieldrw.h \ 201 pidrawer.h pibwdggen.h pisysdep.h piwdgx.h piwdggen.h pimsghandler.h \ 202 picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 203 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 204 pievthandler.h psfile.h pigratt.h piaxes.h 205 $(CXXCOMPILE) -o $@ $< 206 207 $(SOPHYAOBJP)pievthandler.o: pievthandler.cc \ 208 $(SOPHYAINCP)sopnamsp.h pievthandler.h \ 209 pisysdep.h $(SOPHYAINCP)machdefs.h \ 210 pimsghandler.h piwdgx.h piwdggen.h picolist.h pigraphx.h pigraphgen.h \ 211 picmap.h picmapx.h picmapgen.h pifontx.h pifontgen.h pigrcoord.h \ 212 pilineatt.h 213 $(CXXCOMPILE) -o $@ $< 214 215 $(SOPHYAOBJP)pifilechogen.o: pifilechogen.cc \ 216 $(SOPHYAINCP)sopnamsp.h pifilechogen.h \ 217 pisysdep.h $(SOPHYAINCP)machdefs.h \ 218 piwdgx.h piwdggen.h pimsghandler.h picolist.h 219 $(CXXCOMPILE) -o $@ $< 220 221 $(SOPHYAOBJP)pifilechox.o: pifilechox.cc \ 222 $(SOPHYAINCP)sopnamsp.h pisysdep.h \ 223 $(SOPHYAINCP)machdefs.h piapplx.h \ 224 piapplgen.h pimsghandler.h picontainerx.h picontainergen.h piwdgx.h \ 225 piwdggen.h picolist.h pimenubarx.h pimenubargen.h pimenux.h pimenugen.h \ 226 picons.h pistdwdgx.h pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h \ 227 picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h \ 228 pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h \ 229 pifilechox.h pifilechogen.h piwindowx.h piwindowgen.h 230 $(CXXCOMPILE) -o $@ $< 231 232 $(SOPHYAOBJP)pifontgen.o: pifontgen.cc \ 233 $(SOPHYAINCP)sopnamsp.h pigraphgen.h \ 234 pisysdep.h $(SOPHYAINCP)machdefs.h \ 235 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 236 picmapgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h 237 $(CXXCOMPILE) -o $@ $< 238 239 $(SOPHYAOBJP)pifontx.o: pifontx.cc \ 240 $(SOPHYAINCP)sopnamsp.h pisysdep.h \ 241 $(SOPHYAINCP)machdefs.h pifontx.h \ 242 pifontgen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h 243 $(CXXCOMPILE) -o $@ $< 244 245 $(SOPHYAOBJP)pigraph3d.o: pigraph3d.cc \ 246 $(SOPHYAINCP)sopnamsp.h pigraph3d.h \ 247 pisysdep.h $(SOPHYAINCP)machdefs.h \ 248 pigraphuc.h pigraphgen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 249 picmap.h picmapx.h picmapgen.h pifontx.h pifontgen.h pigrcoord.h \ 250 pilineatt.h 251 $(CXXCOMPILE) -o $@ $< 252 253 $(SOPHYAOBJP)pigraphgen.o: pigraphgen.cc \ 254 $(SOPHYAINCP)sopnamsp.h pigraphgen.h \ 255 pisysdep.h $(SOPHYAINCP)machdefs.h \ 256 piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h \ 257 picmapgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h ucckprot.h 258 $(CXXCOMPILE) -o $@ $< 259 260 $(SOPHYAOBJP)pigraphps.o: pigraphps.cc \ 261 $(SOPHYAINCP)sopnamsp.h pigraphps.h \ 262 pisysdep.h $(SOPHYAINCP)machdefs.h \ 263 pigraphgen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h \ 264 picmapx.h picmapgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 265 psfile.h 266 $(CXXCOMPILE) -o $@ $< 267 268 $(SOPHYAOBJP)pigraphuc.o: pigraphuc.cc \ 269 $(SOPHYAINCP)sopnamsp.h \ 270 $(SOPHYAINCP)machdefs.h pigraphuc.h \ 271 pisysdep.h pigraphgen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 272 picmap.h picmapx.h picmapgen.h pifontx.h pifontgen.h pigrcoord.h \ 273 pilineatt.h ucckprot.h 274 $(CXXCOMPILE) -o $@ $< 275 276 $(SOPHYAOBJP)pigraphx.o: pigraphx.cc \ 277 $(SOPHYAINCP)sopnamsp.h pigraphx.h \ 278 pisysdep.h $(SOPHYAINCP)machdefs.h \ 279 pigraphgen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h \ 280 picmapx.h picmapgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h 281 $(CXXCOMPILE) -o $@ $< 282 283 $(SOPHYAOBJP)pigratt.o: pigratt.cc \ 284 $(SOPHYAINCP)sopnamsp.h pigratt.h \ 285 pisysdep.h $(SOPHYAINCP)machdefs.h \ 286 pigraphgen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h \ 287 picmapx.h picmapgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 288 $(SOPHYAINCP)strutilxx.h 289 $(CXXCOMPILE) -o $@ $< 290 291 $(SOPHYAOBJP)pigrcoord.o: pigrcoord.cc \ 292 $(SOPHYAINCP)sopnamsp.h pigrcoord.h \ 293 pisysdep.h $(SOPHYAINCP)machdefs.h 294 $(CXXCOMPILE) -o $@ $< 295 296 $(SOPHYAOBJP)piimage.o: piimage.cc \ 297 $(SOPHYAINCP)sopnamsp.h pisysdep.h \ 298 $(SOPHYAINCP)machdefs.h piimage.h \ 299 parradapter.h lut.h pieldrw.h pidrawer.h pibwdggen.h piwdgx.h \ 300 piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h \ 301 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 302 pigraphuc.h pievthandler.h psfile.h pigratt.h piaxes.h pipixmapx.h \ 303 pipixmapgen.h pibwdgx.h pigraphps.h pistdwdgx.h pistdwdggen.h \ 304 piwindowx.h piwindowgen.h picontainerx.h picontainergen.h picmapview.h \ 305 piimgtools.h pioptmenux.h pioptmenugen.h pimenux.h pimenugen.h \ 306 piapplx.h piapplgen.h pimenubarx.h pimenubargen.h picons.h pidrwtools.h \ 307 piscdrawwdg.h piyfxdrw.h 308 $(CXXCOMPILE) -o $@ $< 309 310 $(SOPHYAOBJP)piimgtools.o: piimgtools.cc \ 311 $(SOPHYAINCP)sopnamsp.h piimgtools.h \ 312 pisysdep.h $(SOPHYAINCP)machdefs.h \ 313 pistdwdgx.h pistdwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 314 pioptmenux.h pioptmenugen.h pimenux.h pimenugen.h piwindowx.h \ 315 piwindowgen.h picontainerx.h picontainergen.h piapplx.h piapplgen.h \ 316 pimenubarx.h pimenubargen.h picons.h pibwdgx.h pibwdggen.h picmap.h \ 317 picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h \ 318 pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h \ 319 piimage.h parradapter.h lut.h pieldrw.h pidrawer.h pigratt.h piaxes.h \ 320 pipixmapx.h pipixmapgen.h picmapview.h 321 $(CXXCOMPILE) -o $@ $< 322 323 $(SOPHYAOBJP)pilineatt.o: pilineatt.cc \ 324 $(SOPHYAINCP)sopnamsp.h pilineatt.h \ 325 pisysdep.h $(SOPHYAINCP)machdefs.h 326 $(CXXCOMPILE) -o $@ $< 327 328 $(SOPHYAOBJP)pilistgen.o: pilistgen.cc \ 329 $(SOPHYAINCP)sopnamsp.h pilistgen.h \ 330 pisysdep.h $(SOPHYAINCP)machdefs.h \ 331 piwdgx.h piwdggen.h pimsghandler.h picolist.h 332 $(CXXCOMPILE) -o $@ $< 333 334 $(SOPHYAOBJP)pilistx.o: pilistx.cc \ 335 $(SOPHYAINCP)sopnamsp.h pilistx.h \ 336 pilistgen.h pisysdep.h \ 337 $(SOPHYAINCP)machdefs.h piwdgx.h \ 338 piwdggen.h pimsghandler.h picolist.h picontainerx.h picontainergen.h 339 $(CXXCOMPILE) -o $@ $< 340 341 $(SOPHYAOBJP)pimenubargen.o: pimenubargen.cc \ 342 $(SOPHYAINCP)sopnamsp.h pimenubargen.h \ 343 pisysdep.h $(SOPHYAINCP)machdefs.h \ 344 pimenux.h pimenugen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 345 piapplx.h piapplgen.h picontainerx.h picontainergen.h pimenubarx.h \ 346 picons.h pistdwdgx.h pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h \ 347 picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h \ 348 pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h 349 $(CXXCOMPILE) -o $@ $< 350 351 $(SOPHYAOBJP)pimenubarx.o: pimenubarx.cc \ 352 $(SOPHYAINCP)sopnamsp.h pimenubarx.h \ 353 pimenubargen.h pisysdep.h \ 354 $(SOPHYAINCP)machdefs.h pimenux.h \ 355 pimenugen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h piapplx.h \ 356 piapplgen.h picontainerx.h picontainergen.h picons.h pistdwdgx.h \ 357 pistdwdggen.h pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h \ 358 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 359 pigraphuc.h pievthandler.h psfile.h pigraphps.h 360 $(CXXCOMPILE) -o $@ $< 361 362 $(SOPHYAOBJP)pimenugen.o: pimenugen.cc \ 363 $(SOPHYAINCP)sopnamsp.h pimenugen.h \ 364 pisysdep.h $(SOPHYAINCP)machdefs.h \ 365 piwdgx.h piwdggen.h pimsghandler.h picolist.h 366 $(CXXCOMPILE) -o $@ $< 367 368 $(SOPHYAOBJP)pimenux.o: pimenux.cc \ 369 $(SOPHYAINCP)sopnamsp.h pisysdep.h \ 370 $(SOPHYAINCP)machdefs.h pimenubarx.h \ 371 pimenubargen.h pimenux.h pimenugen.h piwdgx.h piwdggen.h pimsghandler.h \ 372 picolist.h 373 $(CXXCOMPILE) -o $@ $< 374 375 $(SOPHYAOBJP)pimsghandler.o: pimsghandler.cc \ 376 $(SOPHYAINCP)sopnamsp.h pimsghandler.h \ 377 $(SOPHYAINCP)machdefs.h 378 $(CXXCOMPILE) -o $@ $< 379 380 $(SOPHYAOBJP)pioptmenugen.o: pioptmenugen.cc \ 381 $(SOPHYAINCP)sopnamsp.h pioptmenugen.h \ 382 pisysdep.h $(SOPHYAINCP)machdefs.h \ 383 pimenux.h pimenugen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h 384 $(CXXCOMPILE) -o $@ $< 385 386 $(SOPHYAOBJP)pioptmenux.o: pioptmenux.cc \ 387 $(SOPHYAINCP)sopnamsp.h pisysdep.h \ 388 $(SOPHYAINCP)machdefs.h pioptmenux.h \ 389 pioptmenugen.h pimenux.h pimenugen.h piwdgx.h piwdggen.h pimsghandler.h \ 390 picolist.h pistdwdgx.h pistdwdggen.h piapplx.h piapplgen.h \ 391 picontainerx.h picontainergen.h pimenubarx.h pimenubargen.h picons.h \ 392 pibwdgx.h pibwdggen.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 393 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 394 pievthandler.h psfile.h pigraphps.h 395 $(CXXCOMPILE) -o $@ $< 396 397 $(SOPHYAOBJP)piperiodx.o: piperiodx.cc \ 398 $(SOPHYAINCP)sopnamsp.h piwdgx.h \ 399 piwdggen.h $(SOPHYAINCP)machdefs.h \ 400 pimsghandler.h picolist.h piperiodx.h \ 401 $(SOPHYAINCP)periodic.h 402 $(CXXCOMPILE) -o $@ $< 403 404 $(SOPHYAOBJP)pipixmapgen.o: pipixmapgen.cc \ 405 $(SOPHYAINCP)sopnamsp.h pipixmapgen.h \ 406 pisysdep.h $(SOPHYAINCP)machdefs.h \ 407 pibwdgx.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 408 picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h \ 409 pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h \ 410 pigraphps.h 411 $(CXXCOMPILE) -o $@ $< 412 413 $(SOPHYAOBJP)pipixmapx.o: pipixmapx.cc \ 414 $(SOPHYAINCP)sopnamsp.h pipixmapx.h \ 415 pipixmapgen.h pisysdep.h \ 416 $(SOPHYAINCP)machdefs.h pibwdgx.h \ 417 pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h picmap.h \ 418 picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h pifontgen.h \ 419 pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h pigraphps.h 420 $(CXXCOMPILE) -o $@ $< 421 422 $(SOPHYAOBJP)piscdrawwdg.o: piscdrawwdg.cc \ 423 $(SOPHYAINCP)sopnamsp.h \ 424 $(SOPHYAINCP)machdefs.h piscdrawwdg.h \ 425 pisysdep.h pibwdgx.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h \ 426 picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 427 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 428 pievthandler.h psfile.h pigraphps.h pistdwdgx.h pistdwdggen.h \ 429 piwindowx.h piwindowgen.h picontainerx.h picontainergen.h pidrawer.h \ 430 pigratt.h piaxes.h pieldrw.h pidrwtools.h pimenux.h pimenugen.h \ 431 pioptmenux.h pioptmenugen.h piapplx.h piapplgen.h pimenubarx.h \ 432 pimenubargen.h picons.h piaxestools.h 433 $(CXXCOMPILE) -o $@ $< 434 435 $(SOPHYAOBJP)pistdwdggen.o: pistdwdggen.cc \ 436 $(SOPHYAINCP)sopnamsp.h pistdwdggen.h \ 437 pisysdep.h $(SOPHYAINCP)machdefs.h \ 438 piwdgx.h piwdggen.h pimsghandler.h picolist.h 439 $(CXXCOMPILE) -o $@ $< 440 441 $(SOPHYAOBJP)pistdwdgx.o: pistdwdgx.cc \ 442 $(SOPHYAINCP)sopnamsp.h pisysdep.h \ 443 $(SOPHYAINCP)machdefs.h pistdwdgx.h \ 444 pistdwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 445 picontainerx.h picontainergen.h 446 $(CXXCOMPILE) -o $@ $< 447 448 $(SOPHYAOBJP)pistzwin.o: pistzwin.cc \ 449 $(SOPHYAINCP)sopnamsp.h pistzwin.h \ 450 pisysdep.h $(SOPHYAINCP)machdefs.h \ 451 piwindowx.h piwindowgen.h picontainerx.h picontainergen.h piwdgx.h \ 452 piwdggen.h pimsghandler.h picolist.h piperiodx.h \ 453 $(SOPHYAINCP)periodic.h psfile.h \ 454 pifontgen.h pigraphgen.h picmap.h picmapx.h picmapgen.h pifontx.h \ 455 pigrcoord.h pilineatt.h 456 $(CXXCOMPILE) -o $@ $< 457 458 $(SOPHYAOBJP)pisurfdr.o: pisurfdr.cc \ 459 $(SOPHYAINCP)sopnamsp.h pisurfdr.h \ 460 parradapter.h $(SOPHYAINCP)machdefs.h \ 461 lut.h pi3ddrw.h pisysdep.h pidrawer.h pibwdggen.h piwdgx.h piwdggen.h \ 462 pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h \ 463 pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 464 pievthandler.h psfile.h pigratt.h piaxes.h pieldrw.h pigraph3d.h 465 $(CXXCOMPILE) -o $@ $< 466 467 $(SOPHYAOBJP)pitherm.o: pitherm.cc \ 468 $(SOPHYAINCP)sopnamsp.h pitherm.h \ 469 pisysdep.h $(SOPHYAINCP)machdefs.h \ 470 pibwdgx.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h \ 471 picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h pifontx.h \ 472 pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h pievthandler.h psfile.h \ 473 pigraphps.h 474 $(CXXCOMPILE) -o $@ $< 475 476 $(SOPHYAOBJP)pitxtdrw.o: pitxtdrw.cc \ 477 $(SOPHYAINCP)sopnamsp.h \ 478 $(SOPHYAINCP)machdefs.h pitxtdrw.h \ 479 pisysdep.h pidrawer.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h \ 480 picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 481 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 482 pievthandler.h psfile.h pigratt.h piaxes.h 483 $(CXXCOMPILE) -o $@ $< 484 485 $(SOPHYAOBJP)piwdggen.o: piwdggen.cc \ 486 $(SOPHYAINCP)sopnamsp.h piwdggen.h \ 487 $(SOPHYAINCP)machdefs.h pimsghandler.h \ 488 picolist.h picontainergen.h pisysdep.h piwdgx.h pievthandler.h \ 489 pigraphx.h pigraphgen.h picmap.h picmapx.h picmapgen.h pifontx.h \ 490 pifontgen.h pigrcoord.h pilineatt.h psfile.h 491 $(CXXCOMPILE) -o $@ $< 492 493 $(SOPHYAOBJP)piwdgx.o: piwdgx.cc $(SOPHYAINCP)sopnamsp.h \ 494 piwdgx.h piwdggen.h \ 495 $(SOPHYAINCP)machdefs.h pimsghandler.h \ 496 picolist.h picontainerx.h pisysdep.h picontainergen.h pievthandler.h \ 497 pigraphx.h pigraphgen.h picmap.h picmapx.h picmapgen.h pifontx.h \ 498 pifontgen.h pigrcoord.h pilineatt.h \ 499 $(SOPHYAINCP)pexceptions.h 500 $(CXXCOMPILE) -o $@ $< 501 502 $(SOPHYAOBJP)piwindowgen.o: piwindowgen.cc \ 503 $(SOPHYAINCP)sopnamsp.h piwindowgen.h \ 504 pisysdep.h $(SOPHYAINCP)machdefs.h \ 505 picontainerx.h picontainergen.h piwdgx.h piwdggen.h pimsghandler.h \ 506 picolist.h psfile.h pifontgen.h pigraphgen.h picmap.h picmapx.h \ 507 picmapgen.h pifontx.h pigrcoord.h pilineatt.h 508 $(CXXCOMPILE) -o $@ $< 509 510 $(SOPHYAOBJP)piwindowx.o: piwindowx.cc \ 511 $(SOPHYAINCP)sopnamsp.h piwindowx.h \ 512 piwindowgen.h pisysdep.h \ 513 $(SOPHYAINCP)machdefs.h picontainerx.h \ 514 picontainergen.h piwdgx.h piwdggen.h pimsghandler.h picolist.h 515 $(CXXCOMPILE) -o $@ $< 516 517 $(SOPHYAOBJP)pixtbase.o: pixtbase.cc \ 518 $(SOPHYAINCP)sopnamsp.h \ 519 $(SOPHYAINCP)machdefs.h pixtbaseP.h \ 520 pibwdgx.h pisysdep.h pibwdggen.h piwdgx.h piwdggen.h pimsghandler.h \ 521 picolist.h picmap.h picmapx.h picmapgen.h pigraphx.h pigraphgen.h \ 522 pifontx.h pifontgen.h pigrcoord.h pilineatt.h pigraphuc.h \ 523 pievthandler.h psfile.h pigraphps.h pixtbase.h 524 $(CXXCOMPILE) -o $@ $< 525 526 $(SOPHYAOBJP)piyfxdrw.o: piyfxdrw.cc \ 527 $(SOPHYAINCP)sopnamsp.h \ 528 $(SOPHYAINCP)machdefs.h piyfxdrw.h \ 529 pisysdep.h parradapter.h lut.h pidrawer.h pibwdggen.h piwdgx.h \ 530 piwdggen.h pimsghandler.h picolist.h picmap.h picmapx.h picmapgen.h \ 531 pigraphx.h pigraphgen.h pifontx.h pifontgen.h pigrcoord.h pilineatt.h \ 532 pigraphuc.h pievthandler.h psfile.h pigratt.h piaxes.h 533 $(CXXCOMPILE) -o $@ $< 534 535 $(SOPHYAOBJP)psfile.o: psfile.cc $(SOPHYAINCP)sopnamsp.h \ 536 psfile.h $(SOPHYAINCP)machdefs.h \ 537 pisysdep.h pifontgen.h pigraphgen.h piwdgx.h piwdggen.h pimsghandler.h \ 538 picolist.h picmap.h picmapx.h picmapgen.h pifontx.h pigrcoord.h \ 539 pilineatt.h 540 $(CXXCOMPILE) -o $@ $< 541 -
trunk/SophyaPI/PI/Tests/Makefile
r2437 r2743 1 MODULECXXREPNAME := PITest 2 MODULEDECCXXFLAGS := -msg_quiet 3 include $(SOPHYADEVREP)/Include/Makefile.h 4 5 6 ifdef NOSHLIB 7 LIBF = $(LIB)libPI.a $(LIB)libOutils++.a $(LIB)libcoutils.a 8 LIBS = -L$(LIB) -lPIext -lPI -lOutils++ -lcoutils -lXm -lXt -lX11 -lm 9 ifeq ($(CXX),cxx) 10 # librairie des instances de templates cxx 11 LIBS := $(LIBS) -lertcxx -lertcxxpi 12 endif 13 else 14 LIBF = $(SLB)libPI.so $(SLB)libsophya.so 15 LIBS = -L$(SLB) -lPI -lsophya -L/usr/X11R6/lib -lXm -lXp -lXt -lX11 -lm 16 endif 17 18 ifeq (${MACHEROS},Linux) 19 LIBS := $(LIBS) -ldl 20 endif 21 22 ifndef (NOSHLIB) 23 LIBS := $(SLIBS) $(LIBS) 24 endif 25 26 27 LDLIBS := $(LIBS) $(LDLIBS) 28 29 %:%.cc 30 %:%.o 31 %.o:%.cc 32 %.o:%.c 33 %:%.c 34 35 .PRECIOUS: $(EXE)% $(OBJ)%.o 36 37 %:$(EXE)% 38 echo $@ " done" 39 40 $(EXE)%:$(OBJ)%.o 41 $(LINK.cc) -o $@ $< $(LIBS) 42 43 $(OBJ)%.o:%.cc 44 $(COMPILE.cc) $(USERFLAGS) -o $@ $< 45 46 $(EXE)%:$(OBJ)%.cc 47 $(LINK.cc) $(USERFLAGS) -o $@ $< $(LIBS) 48 49 $(EXE)%:$(OBJ)%.c 50 $(LINK.c) $(USERFLAGS) -o $@ $< $(LIBS) 51 52 $(OBJ)%.o:%.c 53 $(COMPILE.c) -c $(CFLAGS) $(USERFLAGS) -o $@ $< 54 55 1 include ../BuildMgr/sophyamake.inc 2 3 PROGS = $(SOPHYAEXEP)midasitt $(SOPHYAEXEP)pilinetst $(SOPHYAEXEP)pist $(SOPHYAEXEP)pit0 $(SOPHYAEXEP)pit1 $(SOPHYAEXEP)pitcons $(SOPHYAEXEP)pitgr $(SOPHYAEXEP)xp0 $(SOPHYAEXEP)xp1 $(SOPHYAEXEP)xp2 $(SOPHYAEXEP)xp3 4 5 all: $(PROGS) 6 56 7 clean: 57 rm -f $(OBJ)pit0.o $(OBJ)pit1.o $(OBJ)pitcons.o $(OBJ)pitgr.o $(OBJ)pitst.o 58 rm -f $(EXE)pit0 $(EXE)pit1 $(EXE)pitcons $(EXE)pitgr $(EXE)pitst 59 if [ -d $(OBJ)cxxrep_PITest ] ; then cd $(OBJ)cxxrep_PITest ; rm -f *.o ; fi 8 rm -f $(PROGS) 9 rm -f $(SOPHYAOBJP)xp3.o $(SOPHYAOBJP)xp2.o $(SOPHYAOBJP)xp1.o $(SOPHYAOBJP)xp0.o $(SOPHYAOBJP)pitgr.o $(SOPHYAOBJP)pitcons.o $(SOPHYAOBJP)pit1.o $(SOPHYAOBJP)pit0.o $(SOPHYAOBJP)pist.o $(SOPHYAOBJP)pilinetst.o $(SOPHYAOBJP)midasitt.o 10 11 midasitt: $(SOPHYAEXEP)midasitt 12 echo $@ " done" 13 $(SOPHYAEXEP)midasitt: $(SOPHYAOBJP)midasitt.o 14 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 15 16 pilinetst: $(SOPHYAEXEP)pilinetst 17 echo $@ " done" 18 $(SOPHYAEXEP)pilinetst: $(SOPHYAOBJP)pilinetst.o 19 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 20 21 pist: $(SOPHYAEXEP)pist 22 echo $@ " done" 23 $(SOPHYAEXEP)pist: $(SOPHYAOBJP)pist.o 24 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 25 26 pit0: $(SOPHYAEXEP)pit0 27 echo $@ " done" 28 $(SOPHYAEXEP)pit0: $(SOPHYAOBJP)pit0.o 29 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 30 31 pit1: $(SOPHYAEXEP)pit1 32 echo $@ " done" 33 $(SOPHYAEXEP)pit1: $(SOPHYAOBJP)pit1.o 34 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 35 36 pitcons: $(SOPHYAEXEP)pitcons 37 echo $@ " done" 38 $(SOPHYAEXEP)pitcons: $(SOPHYAOBJP)pitcons.o 39 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 40 41 pitgr: $(SOPHYAEXEP)pitgr 42 echo $@ " done" 43 $(SOPHYAEXEP)pitgr: $(SOPHYAOBJP)pitgr.o 44 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 45 46 xp0: $(SOPHYAEXEP)xp0 47 echo $@ " done" 48 $(SOPHYAEXEP)xp0: $(SOPHYAOBJP)xp0.o 49 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 50 51 xp1: $(SOPHYAEXEP)xp1 52 echo $@ " done" 53 $(SOPHYAEXEP)xp1: $(SOPHYAOBJP)xp1.o 54 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 55 56 xp2: $(SOPHYAEXEP)xp2 57 echo $@ " done" 58 $(SOPHYAEXEP)xp2: $(SOPHYAOBJP)xp2.o 59 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 60 61 xp3: $(SOPHYAEXEP)xp3 62 echo $@ " done" 63 $(SOPHYAEXEP)xp3: $(SOPHYAOBJP)xp3.o 64 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 65 66 $(SOPHYAOBJP)midasitt.o: midasitt.cc \ 67 $(SOPHYAINCP)sopnamsp.h \ 68 $(SOPHYAINCP)pisysdep.h \ 69 $(SOPHYAINCP)machdefs.h \ 70 $(SOPHYAINCP)piapplx.h \ 71 $(SOPHYAINCP)piapplgen.h \ 72 $(SOPHYAINCP)pimsghandler.h \ 73 $(SOPHYAINCP)picontainerx.h \ 74 $(SOPHYAINCP)picontainergen.h \ 75 $(SOPHYAINCP)piwdgx.h \ 76 $(SOPHYAINCP)piwdggen.h \ 77 $(SOPHYAINCP)picolist.h \ 78 $(SOPHYAINCP)pimenubarx.h \ 79 $(SOPHYAINCP)pimenubargen.h \ 80 $(SOPHYAINCP)pimenux.h \ 81 $(SOPHYAINCP)pimenugen.h \ 82 $(SOPHYAINCP)picons.h \ 83 $(SOPHYAINCP)pistdwdgx.h \ 84 $(SOPHYAINCP)pistdwdggen.h \ 85 $(SOPHYAINCP)pibwdgx.h \ 86 $(SOPHYAINCP)pibwdggen.h \ 87 $(SOPHYAINCP)picmap.h \ 88 $(SOPHYAINCP)picmapx.h \ 89 $(SOPHYAINCP)picmapgen.h \ 90 $(SOPHYAINCP)pigraphx.h \ 91 $(SOPHYAINCP)pigraphgen.h \ 92 $(SOPHYAINCP)pifontx.h \ 93 $(SOPHYAINCP)pifontgen.h \ 94 $(SOPHYAINCP)pigrcoord.h \ 95 $(SOPHYAINCP)pilineatt.h \ 96 $(SOPHYAINCP)pigraphuc.h \ 97 $(SOPHYAINCP)pievthandler.h \ 98 $(SOPHYAINCP)psfile.h \ 99 $(SOPHYAINCP)pigraphps.h \ 100 $(SOPHYAINCP)piwindowx.h \ 101 $(SOPHYAINCP)piwindowgen.h \ 102 $(SOPHYAINCP)piperiodx.h \ 103 $(SOPHYAINCP)periodic.h \ 104 $(SOPHYAINCP)pidrawwin.h \ 105 $(SOPHYAINCP)piscdrawwdg.h \ 106 $(SOPHYAINCP)pidrawer.h \ 107 $(SOPHYAINCP)pigratt.h \ 108 $(SOPHYAINCP)piaxes.h \ 109 $(SOPHYAINCP)pieldrw.h \ 110 $(SOPHYAINCP)piimage.h \ 111 $(SOPHYAINCP)parradapter.h \ 112 $(SOPHYAINCP)lut.h \ 113 $(SOPHYAINCP)pipixmapx.h \ 114 $(SOPHYAINCP)pipixmapgen.h \ 115 $(SOPHYAINCP)picmapview.h \ 116 $(SOPHYAINCP)piimgtools.h \ 117 $(SOPHYAINCP)pioptmenux.h \ 118 $(SOPHYAINCP)pioptmenugen.h \ 119 $(SOPHYAINCP)pidrwtools.h \ 120 $(SOPHYAINCP)pisurfdr.h \ 121 $(SOPHYAINCP)pi3ddrw.h \ 122 $(SOPHYAINCP)pigraph3d.h \ 123 $(SOPHYAINCP)pi3dwdg.h \ 124 $(SOPHYAINCP)piyfxdrw.h 125 $(CXXCOMPILE) -o $@ $< 126 127 $(SOPHYAOBJP)pilinetst.o: pilinetst.cc \ 128 $(SOPHYAINCP)sopnamsp.h \ 129 $(SOPHYAINCP)pisysdep.h \ 130 $(SOPHYAINCP)machdefs.h \ 131 $(SOPHYAINCP)piapplx.h \ 132 $(SOPHYAINCP)piapplgen.h \ 133 $(SOPHYAINCP)pimsghandler.h \ 134 $(SOPHYAINCP)picontainerx.h \ 135 $(SOPHYAINCP)picontainergen.h \ 136 $(SOPHYAINCP)piwdgx.h \ 137 $(SOPHYAINCP)piwdggen.h \ 138 $(SOPHYAINCP)picolist.h \ 139 $(SOPHYAINCP)pimenubarx.h \ 140 $(SOPHYAINCP)pimenubargen.h \ 141 $(SOPHYAINCP)pimenux.h \ 142 $(SOPHYAINCP)pimenugen.h \ 143 $(SOPHYAINCP)picons.h \ 144 $(SOPHYAINCP)pistdwdgx.h \ 145 $(SOPHYAINCP)pistdwdggen.h \ 146 $(SOPHYAINCP)pibwdgx.h \ 147 $(SOPHYAINCP)pibwdggen.h \ 148 $(SOPHYAINCP)picmap.h \ 149 $(SOPHYAINCP)picmapx.h \ 150 $(SOPHYAINCP)picmapgen.h \ 151 $(SOPHYAINCP)pigraphx.h \ 152 $(SOPHYAINCP)pigraphgen.h \ 153 $(SOPHYAINCP)pifontx.h \ 154 $(SOPHYAINCP)pifontgen.h \ 155 $(SOPHYAINCP)pigrcoord.h \ 156 $(SOPHYAINCP)pilineatt.h \ 157 $(SOPHYAINCP)pigraphuc.h \ 158 $(SOPHYAINCP)pievthandler.h \ 159 $(SOPHYAINCP)psfile.h \ 160 $(SOPHYAINCP)pigraphps.h \ 161 $(SOPHYAINCP)piwindowx.h \ 162 $(SOPHYAINCP)piwindowgen.h 163 $(CXXCOMPILE) -o $@ $< 164 165 $(SOPHYAOBJP)pist.o: pist.cc $(SOPHYAINCP)sopnamsp.h \ 166 $(SOPHYAINCP)pisysdep.h \ 167 $(SOPHYAINCP)machdefs.h \ 168 $(SOPHYAINCP)piapplx.h \ 169 $(SOPHYAINCP)piapplgen.h \ 170 $(SOPHYAINCP)pimsghandler.h \ 171 $(SOPHYAINCP)picontainerx.h \ 172 $(SOPHYAINCP)picontainergen.h \ 173 $(SOPHYAINCP)piwdgx.h \ 174 $(SOPHYAINCP)piwdggen.h \ 175 $(SOPHYAINCP)picolist.h \ 176 $(SOPHYAINCP)pimenubarx.h \ 177 $(SOPHYAINCP)pimenubargen.h \ 178 $(SOPHYAINCP)pimenux.h \ 179 $(SOPHYAINCP)pimenugen.h \ 180 $(SOPHYAINCP)picons.h \ 181 $(SOPHYAINCP)pistdwdgx.h \ 182 $(SOPHYAINCP)pistdwdggen.h \ 183 $(SOPHYAINCP)pibwdgx.h \ 184 $(SOPHYAINCP)pibwdggen.h \ 185 $(SOPHYAINCP)picmap.h \ 186 $(SOPHYAINCP)picmapx.h \ 187 $(SOPHYAINCP)picmapgen.h \ 188 $(SOPHYAINCP)pigraphx.h \ 189 $(SOPHYAINCP)pigraphgen.h \ 190 $(SOPHYAINCP)pifontx.h \ 191 $(SOPHYAINCP)pifontgen.h \ 192 $(SOPHYAINCP)pigrcoord.h \ 193 $(SOPHYAINCP)pilineatt.h \ 194 $(SOPHYAINCP)pigraphuc.h \ 195 $(SOPHYAINCP)pievthandler.h \ 196 $(SOPHYAINCP)psfile.h \ 197 $(SOPHYAINCP)pigraphps.h \ 198 $(SOPHYAINCP)piwindowx.h \ 199 $(SOPHYAINCP)piwindowgen.h 200 $(CXXCOMPILE) -o $@ $< 201 202 $(SOPHYAOBJP)pit0.o: pit0.cc $(SOPHYAINCP)sopnamsp.h \ 203 $(SOPHYAINCP)pisysdep.h \ 204 $(SOPHYAINCP)machdefs.h \ 205 $(SOPHYAINCP)piapplx.h \ 206 $(SOPHYAINCP)piapplgen.h \ 207 $(SOPHYAINCP)pimsghandler.h \ 208 $(SOPHYAINCP)picontainerx.h \ 209 $(SOPHYAINCP)picontainergen.h \ 210 $(SOPHYAINCP)piwdgx.h \ 211 $(SOPHYAINCP)piwdggen.h \ 212 $(SOPHYAINCP)picolist.h \ 213 $(SOPHYAINCP)pimenubarx.h \ 214 $(SOPHYAINCP)pimenubargen.h \ 215 $(SOPHYAINCP)pimenux.h \ 216 $(SOPHYAINCP)pimenugen.h \ 217 $(SOPHYAINCP)picons.h \ 218 $(SOPHYAINCP)pistdwdgx.h \ 219 $(SOPHYAINCP)pistdwdggen.h \ 220 $(SOPHYAINCP)pibwdgx.h \ 221 $(SOPHYAINCP)pibwdggen.h \ 222 $(SOPHYAINCP)picmap.h \ 223 $(SOPHYAINCP)picmapx.h \ 224 $(SOPHYAINCP)picmapgen.h \ 225 $(SOPHYAINCP)pigraphx.h \ 226 $(SOPHYAINCP)pigraphgen.h \ 227 $(SOPHYAINCP)pifontx.h \ 228 $(SOPHYAINCP)pifontgen.h \ 229 $(SOPHYAINCP)pigrcoord.h \ 230 $(SOPHYAINCP)pilineatt.h \ 231 $(SOPHYAINCP)pigraphuc.h \ 232 $(SOPHYAINCP)pievthandler.h \ 233 $(SOPHYAINCP)psfile.h \ 234 $(SOPHYAINCP)pigraphps.h \ 235 $(SOPHYAINCP)piwindowx.h \ 236 $(SOPHYAINCP)piwindowgen.h \ 237 $(SOPHYAINCP)piperiodx.h \ 238 $(SOPHYAINCP)periodic.h 239 $(CXXCOMPILE) -o $@ $< 240 241 $(SOPHYAOBJP)pit1.o: pit1.cc $(SOPHYAINCP)sopnamsp.h \ 242 $(SOPHYAINCP)pisysdep.h \ 243 $(SOPHYAINCP)machdefs.h \ 244 $(SOPHYAINCP)piapplx.h \ 245 $(SOPHYAINCP)piapplgen.h \ 246 $(SOPHYAINCP)pimsghandler.h \ 247 $(SOPHYAINCP)picontainerx.h \ 248 $(SOPHYAINCP)picontainergen.h \ 249 $(SOPHYAINCP)piwdgx.h \ 250 $(SOPHYAINCP)piwdggen.h \ 251 $(SOPHYAINCP)picolist.h \ 252 $(SOPHYAINCP)pimenubarx.h \ 253 $(SOPHYAINCP)pimenubargen.h \ 254 $(SOPHYAINCP)pimenux.h \ 255 $(SOPHYAINCP)pimenugen.h \ 256 $(SOPHYAINCP)picons.h \ 257 $(SOPHYAINCP)pistdwdgx.h \ 258 $(SOPHYAINCP)pistdwdggen.h \ 259 $(SOPHYAINCP)pibwdgx.h \ 260 $(SOPHYAINCP)pibwdggen.h \ 261 $(SOPHYAINCP)picmap.h \ 262 $(SOPHYAINCP)picmapx.h \ 263 $(SOPHYAINCP)picmapgen.h \ 264 $(SOPHYAINCP)pigraphx.h \ 265 $(SOPHYAINCP)pigraphgen.h \ 266 $(SOPHYAINCP)pifontx.h \ 267 $(SOPHYAINCP)pifontgen.h \ 268 $(SOPHYAINCP)pigrcoord.h \ 269 $(SOPHYAINCP)pilineatt.h \ 270 $(SOPHYAINCP)pigraphuc.h \ 271 $(SOPHYAINCP)pievthandler.h \ 272 $(SOPHYAINCP)psfile.h \ 273 $(SOPHYAINCP)pigraphps.h \ 274 $(SOPHYAINCP)piwindowx.h \ 275 $(SOPHYAINCP)piwindowgen.h \ 276 $(SOPHYAINCP)piscdrawwdg.h \ 277 $(SOPHYAINCP)pidrawer.h \ 278 $(SOPHYAINCP)pigratt.h \ 279 $(SOPHYAINCP)piaxes.h \ 280 $(SOPHYAINCP)pieldrw.h \ 281 $(SOPHYAINCP)parradapter.h \ 282 $(SOPHYAINCP)lut.h \ 283 $(SOPHYAINCP)piyfxdrw.h 284 $(CXXCOMPILE) -o $@ $< 285 286 $(SOPHYAOBJP)pitcons.o: pitcons.cc \ 287 $(SOPHYAINCP)sopnamsp.h \ 288 $(SOPHYAINCP)pisysdep.h \ 289 $(SOPHYAINCP)machdefs.h \ 290 $(SOPHYAINCP)piapplx.h \ 291 $(SOPHYAINCP)piapplgen.h \ 292 $(SOPHYAINCP)pimsghandler.h \ 293 $(SOPHYAINCP)picontainerx.h \ 294 $(SOPHYAINCP)picontainergen.h \ 295 $(SOPHYAINCP)piwdgx.h \ 296 $(SOPHYAINCP)piwdggen.h \ 297 $(SOPHYAINCP)picolist.h \ 298 $(SOPHYAINCP)pimenubarx.h \ 299 $(SOPHYAINCP)pimenubargen.h \ 300 $(SOPHYAINCP)pimenux.h \ 301 $(SOPHYAINCP)pimenugen.h \ 302 $(SOPHYAINCP)picons.h \ 303 $(SOPHYAINCP)pistdwdgx.h \ 304 $(SOPHYAINCP)pistdwdggen.h \ 305 $(SOPHYAINCP)pibwdgx.h \ 306 $(SOPHYAINCP)pibwdggen.h \ 307 $(SOPHYAINCP)picmap.h \ 308 $(SOPHYAINCP)picmapx.h \ 309 $(SOPHYAINCP)picmapgen.h \ 310 $(SOPHYAINCP)pigraphx.h \ 311 $(SOPHYAINCP)pigraphgen.h \ 312 $(SOPHYAINCP)pifontx.h \ 313 $(SOPHYAINCP)pifontgen.h \ 314 $(SOPHYAINCP)pigrcoord.h \ 315 $(SOPHYAINCP)pilineatt.h \ 316 $(SOPHYAINCP)pigraphuc.h \ 317 $(SOPHYAINCP)pievthandler.h \ 318 $(SOPHYAINCP)psfile.h \ 319 $(SOPHYAINCP)pigraphps.h \ 320 $(SOPHYAINCP)piwindowx.h \ 321 $(SOPHYAINCP)piwindowgen.h 322 $(CXXCOMPILE) -o $@ $< 323 324 $(SOPHYAOBJP)pitgr.o: pitgr.cc $(SOPHYAINCP)sopnamsp.h \ 325 $(SOPHYAINCP)pisysdep.h \ 326 $(SOPHYAINCP)machdefs.h \ 327 $(SOPHYAINCP)piapplx.h \ 328 $(SOPHYAINCP)piapplgen.h \ 329 $(SOPHYAINCP)pimsghandler.h \ 330 $(SOPHYAINCP)picontainerx.h \ 331 $(SOPHYAINCP)picontainergen.h \ 332 $(SOPHYAINCP)piwdgx.h \ 333 $(SOPHYAINCP)piwdggen.h \ 334 $(SOPHYAINCP)picolist.h \ 335 $(SOPHYAINCP)pimenubarx.h \ 336 $(SOPHYAINCP)pimenubargen.h \ 337 $(SOPHYAINCP)pimenux.h \ 338 $(SOPHYAINCP)pimenugen.h \ 339 $(SOPHYAINCP)picons.h \ 340 $(SOPHYAINCP)pistdwdgx.h \ 341 $(SOPHYAINCP)pistdwdggen.h \ 342 $(SOPHYAINCP)pibwdgx.h \ 343 $(SOPHYAINCP)pibwdggen.h \ 344 $(SOPHYAINCP)picmap.h \ 345 $(SOPHYAINCP)picmapx.h \ 346 $(SOPHYAINCP)picmapgen.h \ 347 $(SOPHYAINCP)pigraphx.h \ 348 $(SOPHYAINCP)pigraphgen.h \ 349 $(SOPHYAINCP)pifontx.h \ 350 $(SOPHYAINCP)pifontgen.h \ 351 $(SOPHYAINCP)pigrcoord.h \ 352 $(SOPHYAINCP)pilineatt.h \ 353 $(SOPHYAINCP)pigraphuc.h \ 354 $(SOPHYAINCP)pievthandler.h \ 355 $(SOPHYAINCP)psfile.h \ 356 $(SOPHYAINCP)pigraphps.h \ 357 $(SOPHYAINCP)piwindowx.h \ 358 $(SOPHYAINCP)piwindowgen.h \ 359 $(SOPHYAINCP)piperiodx.h \ 360 $(SOPHYAINCP)periodic.h \ 361 $(SOPHYAINCP)pidrawwin.h \ 362 $(SOPHYAINCP)piscdrawwdg.h \ 363 $(SOPHYAINCP)pidrawer.h \ 364 $(SOPHYAINCP)pigratt.h \ 365 $(SOPHYAINCP)piaxes.h \ 366 $(SOPHYAINCP)pieldrw.h \ 367 $(SOPHYAINCP)piyfxdrw.h \ 368 $(SOPHYAINCP)parradapter.h \ 369 $(SOPHYAINCP)lut.h \ 370 $(SOPHYAINCP)piimage.h \ 371 $(SOPHYAINCP)pipixmapx.h \ 372 $(SOPHYAINCP)pipixmapgen.h \ 373 $(SOPHYAINCP)picmapview.h \ 374 $(SOPHYAINCP)piimgtools.h \ 375 $(SOPHYAINCP)pioptmenux.h \ 376 $(SOPHYAINCP)pioptmenugen.h \ 377 $(SOPHYAINCP)pidrwtools.h \ 378 $(SOPHYAINCP)piaxestools.h \ 379 $(SOPHYAINCP)pisurfdr.h \ 380 $(SOPHYAINCP)pi3ddrw.h \ 381 $(SOPHYAINCP)pigraph3d.h \ 382 $(SOPHYAINCP)pi3dwdg.h 383 $(CXXCOMPILE) -o $@ $< 384 385 $(SOPHYAOBJP)xp0.o: xp0.cc $(SOPHYAINCP)sopnamsp.h \ 386 $(SOPHYAINCP)pisysdep.h \ 387 $(SOPHYAINCP)machdefs.h \ 388 $(SOPHYAINCP)piapplx.h \ 389 $(SOPHYAINCP)piapplgen.h \ 390 $(SOPHYAINCP)pimsghandler.h \ 391 $(SOPHYAINCP)picontainerx.h \ 392 $(SOPHYAINCP)picontainergen.h \ 393 $(SOPHYAINCP)piwdgx.h \ 394 $(SOPHYAINCP)piwdggen.h \ 395 $(SOPHYAINCP)picolist.h \ 396 $(SOPHYAINCP)pimenubarx.h \ 397 $(SOPHYAINCP)pimenubargen.h \ 398 $(SOPHYAINCP)pimenux.h \ 399 $(SOPHYAINCP)pimenugen.h \ 400 $(SOPHYAINCP)picons.h \ 401 $(SOPHYAINCP)pistdwdgx.h \ 402 $(SOPHYAINCP)pistdwdggen.h \ 403 $(SOPHYAINCP)pibwdgx.h \ 404 $(SOPHYAINCP)pibwdggen.h \ 405 $(SOPHYAINCP)picmap.h \ 406 $(SOPHYAINCP)picmapx.h \ 407 $(SOPHYAINCP)picmapgen.h \ 408 $(SOPHYAINCP)pigraphx.h \ 409 $(SOPHYAINCP)pigraphgen.h \ 410 $(SOPHYAINCP)pifontx.h \ 411 $(SOPHYAINCP)pifontgen.h \ 412 $(SOPHYAINCP)pigrcoord.h \ 413 $(SOPHYAINCP)pilineatt.h \ 414 $(SOPHYAINCP)pigraphuc.h \ 415 $(SOPHYAINCP)pievthandler.h \ 416 $(SOPHYAINCP)psfile.h \ 417 $(SOPHYAINCP)pigraphps.h 418 $(CXXCOMPILE) -o $@ $< 419 420 $(SOPHYAOBJP)xp1.o: xp1.cc $(SOPHYAINCP)sopnamsp.h \ 421 $(SOPHYAINCP)pisysdep.h \ 422 $(SOPHYAINCP)machdefs.h \ 423 $(SOPHYAINCP)piapplx.h \ 424 $(SOPHYAINCP)piapplgen.h \ 425 $(SOPHYAINCP)pimsghandler.h \ 426 $(SOPHYAINCP)picontainerx.h \ 427 $(SOPHYAINCP)picontainergen.h \ 428 $(SOPHYAINCP)piwdgx.h \ 429 $(SOPHYAINCP)piwdggen.h \ 430 $(SOPHYAINCP)picolist.h \ 431 $(SOPHYAINCP)pimenubarx.h \ 432 $(SOPHYAINCP)pimenubargen.h \ 433 $(SOPHYAINCP)pimenux.h \ 434 $(SOPHYAINCP)pimenugen.h \ 435 $(SOPHYAINCP)picons.h \ 436 $(SOPHYAINCP)pistdwdgx.h \ 437 $(SOPHYAINCP)pistdwdggen.h \ 438 $(SOPHYAINCP)pibwdgx.h \ 439 $(SOPHYAINCP)pibwdggen.h \ 440 $(SOPHYAINCP)picmap.h \ 441 $(SOPHYAINCP)picmapx.h \ 442 $(SOPHYAINCP)picmapgen.h \ 443 $(SOPHYAINCP)pigraphx.h \ 444 $(SOPHYAINCP)pigraphgen.h \ 445 $(SOPHYAINCP)pifontx.h \ 446 $(SOPHYAINCP)pifontgen.h \ 447 $(SOPHYAINCP)pigrcoord.h \ 448 $(SOPHYAINCP)pilineatt.h \ 449 $(SOPHYAINCP)pigraphuc.h \ 450 $(SOPHYAINCP)pievthandler.h \ 451 $(SOPHYAINCP)psfile.h \ 452 $(SOPHYAINCP)pigraphps.h \ 453 $(SOPHYAINCP)piwindowx.h \ 454 $(SOPHYAINCP)piwindowgen.h 455 $(CXXCOMPILE) -o $@ $< 456 457 $(SOPHYAOBJP)xp2.o: xp2.cc $(SOPHYAINCP)sopnamsp.h \ 458 $(SOPHYAINCP)pisysdep.h \ 459 $(SOPHYAINCP)machdefs.h \ 460 $(SOPHYAINCP)piapplx.h \ 461 $(SOPHYAINCP)piapplgen.h \ 462 $(SOPHYAINCP)pimsghandler.h \ 463 $(SOPHYAINCP)picontainerx.h \ 464 $(SOPHYAINCP)picontainergen.h \ 465 $(SOPHYAINCP)piwdgx.h \ 466 $(SOPHYAINCP)piwdggen.h \ 467 $(SOPHYAINCP)picolist.h \ 468 $(SOPHYAINCP)pimenubarx.h \ 469 $(SOPHYAINCP)pimenubargen.h \ 470 $(SOPHYAINCP)pimenux.h \ 471 $(SOPHYAINCP)pimenugen.h \ 472 $(SOPHYAINCP)picons.h \ 473 $(SOPHYAINCP)pistdwdgx.h \ 474 $(SOPHYAINCP)pistdwdggen.h \ 475 $(SOPHYAINCP)pibwdgx.h \ 476 $(SOPHYAINCP)pibwdggen.h \ 477 $(SOPHYAINCP)picmap.h \ 478 $(SOPHYAINCP)picmapx.h \ 479 $(SOPHYAINCP)picmapgen.h \ 480 $(SOPHYAINCP)pigraphx.h \ 481 $(SOPHYAINCP)pigraphgen.h \ 482 $(SOPHYAINCP)pifontx.h \ 483 $(SOPHYAINCP)pifontgen.h \ 484 $(SOPHYAINCP)pigrcoord.h \ 485 $(SOPHYAINCP)pilineatt.h \ 486 $(SOPHYAINCP)pigraphuc.h \ 487 $(SOPHYAINCP)pievthandler.h \ 488 $(SOPHYAINCP)psfile.h \ 489 $(SOPHYAINCP)pigraphps.h \ 490 $(SOPHYAINCP)piwindowx.h \ 491 $(SOPHYAINCP)piwindowgen.h 492 $(CXXCOMPILE) -o $@ $< 493 494 $(SOPHYAOBJP)xp3.o: xp3.cc $(SOPHYAINCP)sopnamsp.h \ 495 $(SOPHYAINCP)pisysdep.h \ 496 $(SOPHYAINCP)machdefs.h \ 497 $(SOPHYAINCP)piapplx.h \ 498 $(SOPHYAINCP)piapplgen.h \ 499 $(SOPHYAINCP)pimsghandler.h \ 500 $(SOPHYAINCP)picontainerx.h \ 501 $(SOPHYAINCP)picontainergen.h \ 502 $(SOPHYAINCP)piwdgx.h \ 503 $(SOPHYAINCP)piwdggen.h \ 504 $(SOPHYAINCP)picolist.h \ 505 $(SOPHYAINCP)pimenubarx.h \ 506 $(SOPHYAINCP)pimenubargen.h \ 507 $(SOPHYAINCP)pimenux.h \ 508 $(SOPHYAINCP)pimenugen.h \ 509 $(SOPHYAINCP)picons.h \ 510 $(SOPHYAINCP)pistdwdgx.h \ 511 $(SOPHYAINCP)pistdwdggen.h \ 512 $(SOPHYAINCP)pibwdgx.h \ 513 $(SOPHYAINCP)pibwdggen.h \ 514 $(SOPHYAINCP)picmap.h \ 515 $(SOPHYAINCP)picmapx.h \ 516 $(SOPHYAINCP)picmapgen.h \ 517 $(SOPHYAINCP)pigraphx.h \ 518 $(SOPHYAINCP)pigraphgen.h \ 519 $(SOPHYAINCP)pifontx.h \ 520 $(SOPHYAINCP)pifontgen.h \ 521 $(SOPHYAINCP)pigrcoord.h \ 522 $(SOPHYAINCP)pilineatt.h \ 523 $(SOPHYAINCP)pigraphuc.h \ 524 $(SOPHYAINCP)pievthandler.h \ 525 $(SOPHYAINCP)psfile.h \ 526 $(SOPHYAINCP)pigraphps.h \ 527 $(SOPHYAINCP)piwindowx.h \ 528 $(SOPHYAINCP)piwindowgen.h \ 529 $(SOPHYAINCP)piperiodx.h \ 530 $(SOPHYAINCP)periodic.h \ 531 $(SOPHYAINCP)piscdrawwdg.h \ 532 $(SOPHYAINCP)pidrawer.h \ 533 $(SOPHYAINCP)pigratt.h \ 534 $(SOPHYAINCP)piaxes.h \ 535 $(SOPHYAINCP)pieldrw.h \ 536 $(SOPHYAINCP)piimage.h \ 537 $(SOPHYAINCP)parradapter.h \ 538 $(SOPHYAINCP)lut.h \ 539 $(SOPHYAINCP)pipixmapx.h \ 540 $(SOPHYAINCP)pipixmapgen.h \ 541 $(SOPHYAINCP)picmapview.h \ 542 $(SOPHYAINCP)piimgtools.h \ 543 $(SOPHYAINCP)pioptmenux.h \ 544 $(SOPHYAINCP)pioptmenugen.h \ 545 $(SOPHYAINCP)pidrwtools.h \ 546 $(SOPHYAINCP)pisurfdr.h \ 547 $(SOPHYAINCP)pi3ddrw.h \ 548 $(SOPHYAINCP)pigraph3d.h \ 549 $(SOPHYAINCP)piyfxdrw.h \ 550 $(SOPHYAINCP)pi3dwdg.h 551 $(CXXCOMPILE) -o $@ $< 552 -
trunk/SophyaPI/PIGcont/Makefile
r2140 r2743 1 MODULECXXREPNAME := PI 2 MODULEDECCXXFLAGS := -msg_quiet 3 include ../Mgr/Makefile.h 4 5 all: $(LIB)libPIGcont.a 6 $(LIB)libPIGcont.a : $(OBJ)gp_alloc.o $(OBJ)gp_axis.o $(OBJ)gp_contour.o $(OBJ)picntools.o $(OBJ)pigncont.o 7 $(AR) $(ARFLAGS) $@ $($(ARARGS)) 8 ifeq ($(CXX),cxx) 9 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 10 endif 1 include ../BuildMgr/sophyamake.inc 2 3 all: $(SOPHYALIBP)libPIGcont.a 11 4 12 5 clean: 13 rm -f $(OBJ)gp_alloc.o $(OBJ)gp_axis.o $(OBJ)gp_contour.o $(OBJ)picntools.o $(OBJ)pigncont.o 14 ifeq ($(CXX),cxx) 15 cd $(REPM); rm -f *.o 16 endif 17 18 $(OBJ)gp_alloc.o: gp_alloc.c gp_alloc.h gp_graph3d.h gp_types.h gpc_misc.h 19 $(OBJ)gp_axis.o: gp_axis.c gp_axis.h gpc_misc.h 20 $(OBJ)gp_contour.o: gp_contour.c gp_contour.h gp_types.h gpc_misc.h \ 21 gp_dynarray.h gp_graph3d.h gp_alloc.h gp_axis.h 22 $(OBJ)picntools.o: picntools.cc $(INC)machdefs.h \ 23 picntools.h $(INC)pisysdep.h \ 24 $(INC)pistdwdgx.h \ 25 $(INC)pistdwdggen.h \ 26 $(INC)piwdgx.h \ 27 $(INC)piwdggen.h \ 28 $(INC)pimsghandler.h \ 29 $(INC)picolist.h \ 30 $(INC)pioptmenux.h \ 31 $(INC)pioptmenugen.h \ 32 $(INC)pimenux.h \ 33 $(INC)pimenugen.h \ 34 $(INC)piwindowx.h \ 35 $(INC)piwindowgen.h \ 36 $(INC)picontainerx.h \ 37 $(INC)picontainergen.h \ 38 $(INC)piapplx.h \ 39 $(INC)piapplgen.h \ 40 $(INC)pimenubarx.h \ 41 $(INC)pimenubargen.h \ 42 $(INC)picons.h \ 43 $(INC)pibwdgx.h \ 44 $(INC)pibwdggen.h \ 45 $(INC)picmap.h \ 46 $(INC)picmapx.h \ 47 $(INC)picmapgen.h \ 48 $(INC)pigraphx.h \ 49 $(INC)pigraphgen.h \ 50 $(INC)pifontx.h \ 51 $(INC)pifontgen.h \ 52 $(INC)pigrcoord.h \ 53 $(INC)pilineatt.h \ 54 $(INC)pigraphuc.h \ 55 $(INC)pievthandler.h \ 56 $(INC)psfile.h \ 57 $(INC)pigraphps.h \ 58 $(INC)picmapview.h pigncont.h \ 59 $(INC)pistdimgapp.h \ 60 $(INC)pifilechox.h \ 61 $(INC)pifilechogen.h \ 62 $(INC)piperiodx.h \ 63 $(INC)periodic.h \ 64 $(INC)piimage.h \ 65 $(INC)parradapter.h \ 66 $(INC)lut.h \ 67 $(INC)pieldrw.h \ 68 $(INC)pidrawer.h \ 69 $(INC)pigratt.h \ 70 $(INC)piaxes.h \ 71 $(INC)pipixmapx.h \ 72 $(INC)pipixmapgen.h \ 73 $(INC)pi3dwdg.h \ 74 $(INC)pi3ddrw.h \ 75 $(INC)pigraph3d.h \ 76 $(INC)nobjmgr.h \ 77 $(INC)anydataobj.h \ 78 $(INC)ppersist.h \ 79 $(INC)pexceptions.h \ 80 $(INC)gnumd5.h \ 81 $(INC)dvlist.h \ 82 $(INC)objfio.h \ 83 $(INC)mutyv.h \ 84 $(INC)dlftypes.h \ 85 $(INC)piacmd.h \ 86 $(INC)pdlmgr.h \ 87 $(INC)ctimer.h \ 88 $(INC)pisiadw.h \ 89 $(INC)pilistx.h \ 90 $(INC)pilistgen.h \ 91 $(INC)pistzwin.h \ 92 $(INC)pitherm.h \ 93 $(INC)resusage.h \ 94 $(INC)piscdrawwdg.h \ 95 $(INC)ntuple.h \ 96 $(INC)ntupintf.h gp_contour.h gp_types.h \ 97 gpc_misc.h gp_dynarray.h gp_graph3d.h gp_alloc.h 98 $(OBJ)pigncont.o: pigncont.cc $(INC)machdefs.h \ 99 $(INC)histos.h \ 100 $(INC)objfio.h \ 101 $(INC)anydataobj.h \ 102 $(INC)ppersist.h \ 103 $(INC)pexceptions.h \ 104 $(INC)gnumd5.h \ 105 $(INC)peida.h \ 106 $(INC)utils.h \ 107 $(INC)perrors.h \ 108 $(INC)fmath.h \ 109 $(INC)tvector.h \ 110 $(INC)tmatrix.h \ 111 $(INC)tarray.h \ 112 $(INC)basarr.h \ 113 $(INC)mutyv.h \ 114 $(INC)dvlist.h \ 115 $(INC)ndatablock.h \ 116 $(INC)utilarr.h \ 117 $(INC)ntuple.h \ 118 $(INC)ntupintf.h \ 119 $(INC)nbtri.h picntools.h \ 120 $(INC)pisysdep.h \ 121 $(INC)pistdwdgx.h \ 122 $(INC)pistdwdggen.h \ 123 $(INC)piwdgx.h \ 124 $(INC)piwdggen.h \ 125 $(INC)pimsghandler.h \ 126 $(INC)picolist.h \ 127 $(INC)pioptmenux.h \ 128 $(INC)pioptmenugen.h \ 129 $(INC)pimenux.h \ 130 $(INC)pimenugen.h \ 131 $(INC)piwindowx.h \ 132 $(INC)piwindowgen.h \ 133 $(INC)picontainerx.h \ 134 $(INC)picontainergen.h \ 135 $(INC)piapplx.h \ 136 $(INC)piapplgen.h \ 137 $(INC)pimenubarx.h \ 138 $(INC)pimenubargen.h \ 139 $(INC)picons.h \ 140 $(INC)pibwdgx.h \ 141 $(INC)pibwdggen.h \ 142 $(INC)picmap.h \ 143 $(INC)picmapx.h \ 144 $(INC)picmapgen.h \ 145 $(INC)pigraphx.h \ 146 $(INC)pigraphgen.h \ 147 $(INC)pifontx.h \ 148 $(INC)pifontgen.h \ 149 $(INC)pigrcoord.h \ 150 $(INC)pilineatt.h \ 151 $(INC)pigraphuc.h \ 152 $(INC)pievthandler.h \ 153 $(INC)psfile.h \ 154 $(INC)pigraphps.h \ 155 $(INC)picmapview.h pigncont.h \ 156 $(INC)pistdimgapp.h \ 157 $(INC)pifilechox.h \ 158 $(INC)pifilechogen.h \ 159 $(INC)piperiodx.h \ 160 $(INC)periodic.h \ 161 $(INC)piimage.h \ 162 $(INC)parradapter.h \ 163 $(INC)lut.h \ 164 $(INC)pieldrw.h \ 165 $(INC)pidrawer.h \ 166 $(INC)pigratt.h \ 167 $(INC)piaxes.h \ 168 $(INC)pipixmapx.h \ 169 $(INC)pipixmapgen.h \ 170 $(INC)pi3dwdg.h \ 171 $(INC)pi3ddrw.h \ 172 $(INC)pigraph3d.h \ 173 $(INC)nobjmgr.h \ 174 $(INC)dlftypes.h \ 175 $(INC)piacmd.h \ 176 $(INC)pdlmgr.h \ 177 $(INC)ctimer.h \ 178 $(INC)pisiadw.h \ 179 $(INC)pilistx.h \ 180 $(INC)pilistgen.h \ 181 $(INC)pistzwin.h \ 182 $(INC)pitherm.h \ 183 $(INC)resusage.h \ 184 $(INC)piscdrawwdg.h gp_contour.h gp_types.h \ 185 gpc_misc.h gp_dynarray.h gp_graph3d.h gp_alloc.h 6 rm -f $(SOPHYAOBJP)picntools.o $(SOPHYAOBJP)pigncont.o $(SOPHYAOBJP)gp_alloc.o $(SOPHYAOBJP)gp_axis.o $(SOPHYAOBJP)gp_contour.o 7 rm -f $(SOPHYALIBP)libPIGcont.a 8 9 $(SOPHYALIBP)libPIGcont.a : $(SOPHYAOBJP)gp_alloc.o $(SOPHYAOBJP)gp_axis.o $(SOPHYAOBJP)gp_contour.o $(SOPHYAOBJP)picntools.o $(SOPHYAOBJP)pigncont.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)picntools.o: picntools.cc \ 13 $(SOPHYAINCP)sopnamsp.h \ 14 $(SOPHYAINCP)machdefs.h picntools.h \ 15 $(SOPHYAINCP)pisysdep.h \ 16 $(SOPHYAINCP)pistdwdgx.h \ 17 $(SOPHYAINCP)pistdwdggen.h \ 18 $(SOPHYAINCP)piwdgx.h \ 19 $(SOPHYAINCP)piwdggen.h \ 20 $(SOPHYAINCP)pimsghandler.h \ 21 $(SOPHYAINCP)picolist.h \ 22 $(SOPHYAINCP)pioptmenux.h \ 23 $(SOPHYAINCP)pioptmenugen.h \ 24 $(SOPHYAINCP)pimenux.h \ 25 $(SOPHYAINCP)pimenugen.h \ 26 $(SOPHYAINCP)piwindowx.h \ 27 $(SOPHYAINCP)piwindowgen.h \ 28 $(SOPHYAINCP)picontainerx.h \ 29 $(SOPHYAINCP)picontainergen.h \ 30 $(SOPHYAINCP)piapplx.h \ 31 $(SOPHYAINCP)piapplgen.h \ 32 $(SOPHYAINCP)pimenubarx.h \ 33 $(SOPHYAINCP)pimenubargen.h \ 34 $(SOPHYAINCP)picons.h \ 35 $(SOPHYAINCP)pibwdgx.h \ 36 $(SOPHYAINCP)pibwdggen.h \ 37 $(SOPHYAINCP)picmap.h \ 38 $(SOPHYAINCP)picmapx.h \ 39 $(SOPHYAINCP)picmapgen.h \ 40 $(SOPHYAINCP)pigraphx.h \ 41 $(SOPHYAINCP)pigraphgen.h \ 42 $(SOPHYAINCP)pifontx.h \ 43 $(SOPHYAINCP)pifontgen.h \ 44 $(SOPHYAINCP)pigrcoord.h \ 45 $(SOPHYAINCP)pilineatt.h \ 46 $(SOPHYAINCP)pigraphuc.h \ 47 $(SOPHYAINCP)pievthandler.h \ 48 $(SOPHYAINCP)psfile.h \ 49 $(SOPHYAINCP)pigraphps.h \ 50 $(SOPHYAINCP)picmapview.h pigncont.h \ 51 $(SOPHYAINCP)pistdimgapp.h \ 52 $(SOPHYAINCP)pifilechox.h \ 53 $(SOPHYAINCP)pifilechogen.h \ 54 $(SOPHYAINCP)piperiodx.h \ 55 $(SOPHYAINCP)periodic.h \ 56 $(SOPHYAINCP)piimage.h \ 57 $(SOPHYAINCP)parradapter.h \ 58 $(SOPHYAINCP)lut.h \ 59 $(SOPHYAINCP)pieldrw.h \ 60 $(SOPHYAINCP)pidrawer.h \ 61 $(SOPHYAINCP)pigratt.h \ 62 $(SOPHYAINCP)piaxes.h \ 63 $(SOPHYAINCP)pipixmapx.h \ 64 $(SOPHYAINCP)pipixmapgen.h \ 65 $(SOPHYAINCP)pi3dwdg.h \ 66 $(SOPHYAINCP)pi3ddrw.h \ 67 $(SOPHYAINCP)pigraph3d.h \ 68 $(SOPHYAINCP)nobjmgr.h \ 69 $(SOPHYAINCP)anydataobj.h \ 70 $(SOPHYAINCP)ppersist.h \ 71 $(SOPHYAINCP)pexceptions.h \ 72 $(SOPHYAINCP)gnumd5.h \ 73 $(SOPHYAINCP)ppfbinstream.h \ 74 $(SOPHYAINCP)rawstream.h \ 75 $(SOPHYAINCP)ppfnametag.h \ 76 $(SOPHYAINCP)dvlist.h \ 77 $(SOPHYAINCP)objfio.h \ 78 $(SOPHYAINCP)mutyv.h \ 79 $(SOPHYAINCP)dlftypes.h \ 80 $(SOPHYAINCP)piacmd.h \ 81 $(SOPHYAINCP)commander.h \ 82 $(SOPHYAINCP)pdlmgr.h \ 83 $(SOPHYAINCP)ctimer.h \ 84 $(SOPHYAINCP)zthread.h \ 85 $(SOPHYAINCP)pisiadw.h \ 86 $(SOPHYAINCP)pilistx.h \ 87 $(SOPHYAINCP)pilistgen.h \ 88 $(SOPHYAINCP)pistzwin.h \ 89 $(SOPHYAINCP)pitherm.h \ 90 $(SOPHYAINCP)resusage.h \ 91 $(SOPHYAINCP)piscdrawwdg.h \ 92 $(SOPHYAINCP)ntuple.h \ 93 $(SOPHYAINCP)ntupintf.h gp_contour.h \ 94 gp_types.h gpc_misc.h gp_dynarray.h gp_graph3d.h gp_alloc.h 95 $(CXXCOMPILE) -o $@ $< 96 97 $(SOPHYAOBJP)pigncont.o: pigncont.cc \ 98 $(SOPHYAINCP)sopnamsp.h \ 99 $(SOPHYAINCP)machdefs.h \ 100 $(SOPHYAINCP)histos.h \ 101 $(SOPHYAINCP)objfio.h \ 102 $(SOPHYAINCP)anydataobj.h \ 103 $(SOPHYAINCP)ppersist.h \ 104 $(SOPHYAINCP)pexceptions.h \ 105 $(SOPHYAINCP)gnumd5.h \ 106 $(SOPHYAINCP)ppfbinstream.h \ 107 $(SOPHYAINCP)rawstream.h \ 108 $(SOPHYAINCP)ppfnametag.h \ 109 $(SOPHYAINCP)peida.h \ 110 $(SOPHYAINCP)utils.h \ 111 $(SOPHYAINCP)perrors.h \ 112 $(SOPHYAINCP)fmath.h \ 113 $(SOPHYAINCP)tvector.h \ 114 $(SOPHYAINCP)tmatrix.h \ 115 $(SOPHYAINCP)tarray.h \ 116 $(SOPHYAINCP)basarr.h \ 117 $(SOPHYAINCP)mutyv.h \ 118 $(SOPHYAINCP)dvlist.h \ 119 $(SOPHYAINCP)ndatablock.h \ 120 $(SOPHYAINCP)utilarr.h \ 121 $(SOPHYAINCP)ntuple.h \ 122 $(SOPHYAINCP)ntupintf.h \ 123 $(SOPHYAINCP)nbtri.h picntools.h \ 124 $(SOPHYAINCP)pisysdep.h \ 125 $(SOPHYAINCP)pistdwdgx.h \ 126 $(SOPHYAINCP)pistdwdggen.h \ 127 $(SOPHYAINCP)piwdgx.h \ 128 $(SOPHYAINCP)piwdggen.h \ 129 $(SOPHYAINCP)pimsghandler.h \ 130 $(SOPHYAINCP)picolist.h \ 131 $(SOPHYAINCP)pioptmenux.h \ 132 $(SOPHYAINCP)pioptmenugen.h \ 133 $(SOPHYAINCP)pimenux.h \ 134 $(SOPHYAINCP)pimenugen.h \ 135 $(SOPHYAINCP)piwindowx.h \ 136 $(SOPHYAINCP)piwindowgen.h \ 137 $(SOPHYAINCP)picontainerx.h \ 138 $(SOPHYAINCP)picontainergen.h \ 139 $(SOPHYAINCP)piapplx.h \ 140 $(SOPHYAINCP)piapplgen.h \ 141 $(SOPHYAINCP)pimenubarx.h \ 142 $(SOPHYAINCP)pimenubargen.h \ 143 $(SOPHYAINCP)picons.h \ 144 $(SOPHYAINCP)pibwdgx.h \ 145 $(SOPHYAINCP)pibwdggen.h \ 146 $(SOPHYAINCP)picmap.h \ 147 $(SOPHYAINCP)picmapx.h \ 148 $(SOPHYAINCP)picmapgen.h \ 149 $(SOPHYAINCP)pigraphx.h \ 150 $(SOPHYAINCP)pigraphgen.h \ 151 $(SOPHYAINCP)pifontx.h \ 152 $(SOPHYAINCP)pifontgen.h \ 153 $(SOPHYAINCP)pigrcoord.h \ 154 $(SOPHYAINCP)pilineatt.h \ 155 $(SOPHYAINCP)pigraphuc.h \ 156 $(SOPHYAINCP)pievthandler.h \ 157 $(SOPHYAINCP)psfile.h \ 158 $(SOPHYAINCP)pigraphps.h \ 159 $(SOPHYAINCP)picmapview.h pigncont.h \ 160 $(SOPHYAINCP)pistdimgapp.h \ 161 $(SOPHYAINCP)pifilechox.h \ 162 $(SOPHYAINCP)pifilechogen.h \ 163 $(SOPHYAINCP)piperiodx.h \ 164 $(SOPHYAINCP)periodic.h \ 165 $(SOPHYAINCP)piimage.h \ 166 $(SOPHYAINCP)parradapter.h \ 167 $(SOPHYAINCP)lut.h \ 168 $(SOPHYAINCP)pieldrw.h \ 169 $(SOPHYAINCP)pidrawer.h \ 170 $(SOPHYAINCP)pigratt.h \ 171 $(SOPHYAINCP)piaxes.h \ 172 $(SOPHYAINCP)pipixmapx.h \ 173 $(SOPHYAINCP)pipixmapgen.h \ 174 $(SOPHYAINCP)pi3dwdg.h \ 175 $(SOPHYAINCP)pi3ddrw.h \ 176 $(SOPHYAINCP)pigraph3d.h \ 177 $(SOPHYAINCP)nobjmgr.h \ 178 $(SOPHYAINCP)dlftypes.h \ 179 $(SOPHYAINCP)piacmd.h \ 180 $(SOPHYAINCP)commander.h \ 181 $(SOPHYAINCP)pdlmgr.h \ 182 $(SOPHYAINCP)ctimer.h \ 183 $(SOPHYAINCP)zthread.h \ 184 $(SOPHYAINCP)pisiadw.h \ 185 $(SOPHYAINCP)pilistx.h \ 186 $(SOPHYAINCP)pilistgen.h \ 187 $(SOPHYAINCP)pistzwin.h \ 188 $(SOPHYAINCP)pitherm.h \ 189 $(SOPHYAINCP)resusage.h \ 190 $(SOPHYAINCP)piscdrawwdg.h gp_contour.h \ 191 gp_types.h gpc_misc.h gp_dynarray.h gp_graph3d.h gp_alloc.h 192 $(CXXCOMPILE) -o $@ $< 193 194 $(SOPHYAOBJP)gp_alloc.o: gp_alloc.c gp_alloc.h gp_graph3d.h gp_types.h gpc_misc.h 195 $(CCOMPILE) -o $@ $< 196 197 $(SOPHYAOBJP)gp_axis.o: gp_axis.c gp_axis.h gpc_misc.h 198 $(CCOMPILE) -o $@ $< 199 200 $(SOPHYAOBJP)gp_contour.o: gp_contour.c gp_contour.h gp_types.h gpc_misc.h \ 201 gp_dynarray.h gp_graph3d.h gp_alloc.h gp_axis.h 202 $(CCOMPILE) -o $@ $< 203 -
trunk/SophyaPI/PIext/Makefile
r2703 r2743 1 include ../Mgr/Makefile.h 2 3 all: $(LIB)libPIext.a 1 include ../BuildMgr/sophyamake.inc 2 3 all: $(SOPHYALIBP)libPIext.a 4 4 5 clean: 5 rm -f $(OBJ)basexecut.o $(OBJ)contmodex.o $(OBJ)cxxexecutor.o $(OBJ)cxxexecwin.o $(OBJ)flowmodex.o $(OBJ)nobjmgr.o $(OBJ)nomgadapter.o $(OBJ)nomgfdadapter.o $(OBJ)nomhistadapter.o $(OBJ)nomimagadapter.o $(OBJ)nommatvecadapter.o $(OBJ)nomskymapadapter.o $(OBJ)nomspecrespadapter.o $(OBJ)nomstladapter.o $(OBJ)nomtarradapter.o $(OBJ)nomtmatvecadapter.o $(OBJ)pawexecut.o $(OBJ)pi2dvec.o $(OBJ)piacmd.o $(OBJ)piafitting.o $(OBJ)pigfd1.o $(OBJ)pigfd2.o $(OBJ)pihisto.o $(OBJ)pihisto2d.o $(OBJ)piinit.o $(OBJ)pintup3d.o $(OBJ)pintuple.o $(OBJ)pipodrw.o $(OBJ)pisiadw.o $(OBJ)pistdimgapp.o $(OBJ)pistlist.o $(OBJ)pitvmaad.o $(OBJ)servnobjm.o $(OBJ)userfitfunex.o 6 rm -f $(LIB)libPIext.a 7 $(LIB)libPIext.a : $(OBJ)basexecut.o $(OBJ)contmodex.o $(OBJ)cxxexecutor.o $(OBJ)cxxexecwin.o $(OBJ)flowmodex.o $(OBJ)nobjmgr.o $(OBJ)nomgadapter.o $(OBJ)nomgfdadapter.o $(OBJ)nomhistadapter.o $(OBJ)nomimagadapter.o $(OBJ)nomskymapadapter.o $(OBJ)nomspecrespadapter.o $(OBJ)nomtarradapter.o $(OBJ)nomtmatvecadapter.o $(OBJ)pawexecut.o $(OBJ)pi2dvec.o $(OBJ)piacmd.o $(OBJ)piafitting.o $(OBJ)pigfd1.o $(OBJ)pigfd2.o $(OBJ)pihisto.o $(OBJ)pihisto2d.o $(OBJ)piinit.o $(OBJ)pintup3d.o $(OBJ)pintuple.o $(OBJ)pipodrw.o $(OBJ)pisiadw.o $(OBJ)pistdimgapp.o $(OBJ)pitvmaad.o $(OBJ)servnobjm.o 8 $(ARCXX) $(ARCXXFLAGS) $@ $($(ARARGS)) 9 ifeq ($(CXX),cxx) 10 $(CXX) $? $(CPPFLAGS) $(CXXFLAGS) -o $(OBJ)xx.x -Hf 11 endif 12 13 $(OBJ)basexecut.o: basexecut.cc $(INC)sopnamsp.h \ 14 piacmd.h $(INC)machdefs.h \ 15 $(INC)commander.h \ 16 $(INC)pdlmgr.h \ 17 $(INC)dvlist.h \ 18 $(INC)objfio.h \ 19 $(INC)anydataobj.h \ 20 $(INC)ppersist.h \ 21 $(INC)pexceptions.h \ 22 $(INC)gnumd5.h \ 23 $(INC)ppfbinstream.h \ 24 $(INC)rawstream.h \ 25 $(INC)ppfnametag.h \ 26 $(INC)mutyv.h \ 27 $(INC)ctimer.h \ 28 $(INC)zthread.h dlftypes.h basexecut.h \ 29 $(INC)strutilxx.h pistdimgapp.h \ 30 $(INC)pisysdep.h \ 31 $(INC)piapplx.h \ 32 $(INC)piapplgen.h \ 33 $(INC)pimsghandler.h \ 34 $(INC)picontainerx.h \ 35 $(INC)picontainergen.h \ 36 $(INC)piwdgx.h \ 37 $(INC)piwdggen.h \ 38 $(INC)picolist.h \ 39 $(INC)pimenubarx.h \ 40 $(INC)pimenubargen.h \ 41 $(INC)pimenux.h \ 42 $(INC)pimenugen.h \ 43 $(INC)picons.h \ 44 $(INC)pistdwdgx.h \ 45 $(INC)pistdwdggen.h \ 46 $(INC)pibwdgx.h \ 47 $(INC)pibwdggen.h \ 48 $(INC)picmap.h \ 49 $(INC)picmapx.h \ 50 $(INC)picmapgen.h \ 51 $(INC)pigraphx.h \ 52 $(INC)pigraphgen.h \ 53 $(INC)pifontx.h \ 54 $(INC)pifontgen.h \ 55 $(INC)pigrcoord.h \ 56 $(INC)pilineatt.h \ 57 $(INC)pigraphuc.h \ 58 $(INC)pievthandler.h \ 59 $(INC)psfile.h \ 60 $(INC)pigraphps.h \ 61 $(INC)piwindowx.h \ 62 $(INC)piwindowgen.h \ 63 $(INC)pioptmenux.h \ 64 $(INC)pioptmenugen.h \ 65 $(INC)pifilechox.h \ 66 $(INC)pifilechogen.h \ 67 $(INC)piperiodx.h \ 68 $(INC)periodic.h \ 69 $(INC)piimage.h \ 70 $(INC)parradapter.h \ 71 $(INC)lut.h \ 72 $(INC)pieldrw.h \ 73 $(INC)pidrawer.h \ 74 $(INC)pigratt.h \ 75 $(INC)piaxes.h \ 76 $(INC)pipixmapx.h \ 77 $(INC)pipixmapgen.h \ 78 $(INC)picmapview.h \ 79 $(INC)pi3dwdg.h \ 80 $(INC)pi3ddrw.h \ 81 $(INC)pigraph3d.h nobjmgr.h pisiadw.h \ 82 $(INC)pilistx.h \ 83 $(INC)pilistgen.h \ 84 $(INC)pistzwin.h \ 85 $(INC)pitherm.h \ 86 $(INC)resusage.h servnobjm.h nomgadapter.h \ 87 $(INC)ntupintf.h \ 88 $(INC)generalfit.h \ 89 $(INC)tvector.h \ 90 $(INC)tmatrix.h \ 91 $(INC)tarray.h \ 92 $(INC)basarr.h \ 93 $(INC)ndatablock.h \ 94 $(INC)utilarr.h \ 95 $(INC)generaldata.h \ 96 $(INC)poly.h \ 97 $(INC)peida.h \ 98 $(INC)utils.h \ 99 $(INC)perrors.h \ 100 $(INC)fmath.h \ 101 $(INC)piyfxdrw.h \ 102 $(INC)pibargraph.h \ 103 $(INC)pitxtdrw.h \ 104 $(INC)histos.h \ 105 $(INC)histos2.h \ 106 $(INC)hisprof.h \ 107 $(INC)ntuple.h 108 $(OBJ)contmodex.o: contmodex.cc $(INC)sopnamsp.h \ 109 contmodex.h $(INC)machdefs.h piacmd.h \ 110 $(INC)commander.h \ 111 $(INC)pdlmgr.h \ 112 $(INC)dvlist.h \ 113 $(INC)objfio.h \ 114 $(INC)anydataobj.h \ 115 $(INC)ppersist.h \ 116 $(INC)pexceptions.h \ 117 $(INC)gnumd5.h \ 118 $(INC)ppfbinstream.h \ 119 $(INC)rawstream.h \ 120 $(INC)ppfnametag.h \ 121 $(INC)mutyv.h \ 122 $(INC)ctimer.h \ 123 $(INC)zthread.h dlftypes.h nobjmgr.h \ 124 $(INC)pigncont.h \ 125 $(INC)pistdimgapp.h \ 126 $(INC)pisysdep.h \ 127 $(INC)piapplx.h \ 128 $(INC)piapplgen.h \ 129 $(INC)pimsghandler.h \ 130 $(INC)picontainerx.h \ 131 $(INC)picontainergen.h \ 132 $(INC)piwdgx.h \ 133 $(INC)piwdggen.h \ 134 $(INC)picolist.h \ 135 $(INC)pimenubarx.h \ 136 $(INC)pimenubargen.h \ 137 $(INC)pimenux.h \ 138 $(INC)pimenugen.h \ 139 $(INC)picons.h \ 140 $(INC)pistdwdgx.h \ 141 $(INC)pistdwdggen.h \ 142 $(INC)pibwdgx.h \ 143 $(INC)pibwdggen.h \ 144 $(INC)picmap.h \ 145 $(INC)picmapx.h \ 146 $(INC)picmapgen.h \ 147 $(INC)pigraphx.h \ 148 $(INC)pigraphgen.h \ 149 $(INC)pifontx.h \ 150 $(INC)pifontgen.h \ 151 $(INC)pigrcoord.h \ 152 $(INC)pilineatt.h \ 153 $(INC)pigraphuc.h \ 154 $(INC)pievthandler.h \ 155 $(INC)psfile.h \ 156 $(INC)pigraphps.h \ 157 $(INC)piwindowx.h \ 158 $(INC)piwindowgen.h \ 159 $(INC)pioptmenux.h \ 160 $(INC)pioptmenugen.h \ 161 $(INC)pifilechox.h \ 162 $(INC)pifilechogen.h \ 163 $(INC)piperiodx.h \ 164 $(INC)periodic.h \ 165 $(INC)piimage.h \ 166 $(INC)parradapter.h \ 167 $(INC)lut.h \ 168 $(INC)pieldrw.h \ 169 $(INC)pidrawer.h \ 170 $(INC)pigratt.h \ 171 $(INC)piaxes.h \ 172 $(INC)pipixmapx.h \ 173 $(INC)pipixmapgen.h \ 174 $(INC)picmapview.h \ 175 $(INC)pi3dwdg.h \ 176 $(INC)pi3ddrw.h \ 177 $(INC)pigraph3d.h \ 178 $(INC)nobjmgr.h \ 179 $(INC)piacmd.h \ 180 $(INC)pisiadw.h \ 181 $(INC)pilistx.h \ 182 $(INC)pilistgen.h \ 183 $(INC)pistzwin.h \ 184 $(INC)pitherm.h \ 185 $(INC)resusage.h \ 186 $(INC)piscdrawwdg.h \ 187 $(INC)ntuple.h \ 188 $(INC)ntupintf.h \ 189 $(INC)gp_contour.h \ 190 $(INC)gp_types.h \ 191 $(INC)gpc_misc.h \ 192 $(INC)gp_dynarray.h \ 193 $(INC)gp_graph3d.h \ 194 $(INC)gp_alloc.h nomgadapter.h \ 195 $(INC)generalfit.h \ 196 $(INC)tvector.h \ 197 $(INC)tmatrix.h \ 198 $(INC)tarray.h \ 199 $(INC)basarr.h \ 200 $(INC)ndatablock.h \ 201 $(INC)utilarr.h \ 202 $(INC)generaldata.h \ 203 $(INC)poly.h \ 204 $(INC)peida.h \ 205 $(INC)utils.h \ 206 $(INC)perrors.h \ 207 $(INC)fmath.h servnobjm.h 208 $(OBJ)cxxexecutor.o: cxxexecutor.cc $(INC)sopnamsp.h \ 209 cxxexecutor.h $(INC)machdefs.h piacmd.h \ 210 $(INC)commander.h \ 211 $(INC)pdlmgr.h \ 212 $(INC)dvlist.h \ 213 $(INC)objfio.h \ 214 $(INC)anydataobj.h \ 215 $(INC)ppersist.h \ 216 $(INC)pexceptions.h \ 217 $(INC)gnumd5.h \ 218 $(INC)ppfbinstream.h \ 219 $(INC)rawstream.h \ 220 $(INC)ppfnametag.h \ 221 $(INC)mutyv.h \ 222 $(INC)ctimer.h \ 223 $(INC)zthread.h dlftypes.h nobjmgr.h \ 224 $(INC)strutilxx.h \ 225 $(INC)cxxcmplnk.h nomgadapter.h \ 226 $(INC)pidrawer.h \ 227 $(INC)pibwdggen.h \ 228 $(INC)pisysdep.h \ 229 $(INC)piwdgx.h \ 230 $(INC)piwdggen.h \ 231 $(INC)pimsghandler.h \ 232 $(INC)picolist.h \ 233 $(INC)picmap.h \ 234 $(INC)picmapx.h \ 235 $(INC)picmapgen.h \ 236 $(INC)pigraphx.h \ 237 $(INC)pigraphgen.h \ 238 $(INC)pifontx.h \ 239 $(INC)pifontgen.h \ 240 $(INC)pigrcoord.h \ 241 $(INC)pilineatt.h \ 242 $(INC)pigraphuc.h \ 243 $(INC)pievthandler.h \ 244 $(INC)psfile.h \ 245 $(INC)pigratt.h \ 246 $(INC)piaxes.h \ 247 $(INC)parradapter.h \ 248 $(INC)lut.h \ 249 $(INC)ntupintf.h \ 250 $(INC)generalfit.h \ 251 $(INC)tvector.h \ 252 $(INC)tmatrix.h \ 253 $(INC)tarray.h \ 254 $(INC)basarr.h \ 255 $(INC)ndatablock.h \ 256 $(INC)utilarr.h \ 257 $(INC)generaldata.h \ 258 $(INC)poly.h \ 259 $(INC)peida.h \ 260 $(INC)utils.h \ 261 $(INC)perrors.h \ 262 $(INC)fmath.h pistdimgapp.h \ 263 $(INC)piapplx.h \ 264 $(INC)piapplgen.h \ 265 $(INC)picontainerx.h \ 266 $(INC)picontainergen.h \ 267 $(INC)pimenubarx.h \ 268 $(INC)pimenubargen.h \ 269 $(INC)pimenux.h \ 270 $(INC)pimenugen.h \ 271 $(INC)picons.h \ 272 $(INC)pistdwdgx.h \ 273 $(INC)pistdwdggen.h \ 274 $(INC)pibwdgx.h \ 275 $(INC)pigraphps.h \ 276 $(INC)piwindowx.h \ 277 $(INC)piwindowgen.h \ 278 $(INC)pioptmenux.h \ 279 $(INC)pioptmenugen.h \ 280 $(INC)pifilechox.h \ 281 $(INC)pifilechogen.h \ 282 $(INC)piperiodx.h \ 283 $(INC)periodic.h \ 284 $(INC)piimage.h \ 285 $(INC)pieldrw.h \ 286 $(INC)pipixmapx.h \ 287 $(INC)pipixmapgen.h \ 288 $(INC)picmapview.h \ 289 $(INC)pi3dwdg.h \ 290 $(INC)pi3ddrw.h \ 291 $(INC)pigraph3d.h pisiadw.h \ 292 $(INC)pilistx.h \ 293 $(INC)pilistgen.h \ 294 $(INC)pistzwin.h \ 295 $(INC)pitherm.h \ 296 $(INC)resusage.h 297 $(OBJ)cxxexecwin.o: cxxexecwin.cc $(INC)sopnamsp.h \ 298 cxxexecutor.h $(INC)machdefs.h piacmd.h \ 299 $(INC)commander.h \ 300 $(INC)pdlmgr.h \ 301 $(INC)dvlist.h \ 302 $(INC)objfio.h \ 303 $(INC)anydataobj.h \ 304 $(INC)ppersist.h \ 305 $(INC)pexceptions.h \ 306 $(INC)gnumd5.h \ 307 $(INC)ppfbinstream.h \ 308 $(INC)rawstream.h \ 309 $(INC)ppfnametag.h \ 310 $(INC)mutyv.h \ 311 $(INC)ctimer.h \ 312 $(INC)zthread.h dlftypes.h nobjmgr.h \ 313 cxxexecwin.h $(INC)pisysdep.h pistdimgapp.h \ 314 $(INC)piapplx.h \ 315 $(INC)piapplgen.h \ 316 $(INC)pimsghandler.h \ 317 $(INC)picontainerx.h \ 318 $(INC)picontainergen.h \ 319 $(INC)piwdgx.h \ 320 $(INC)piwdggen.h \ 321 $(INC)picolist.h \ 322 $(INC)pimenubarx.h \ 323 $(INC)pimenubargen.h \ 324 $(INC)pimenux.h \ 325 $(INC)pimenugen.h \ 326 $(INC)picons.h \ 327 $(INC)pistdwdgx.h \ 328 $(INC)pistdwdggen.h \ 329 $(INC)pibwdgx.h \ 330 $(INC)pibwdggen.h \ 331 $(INC)picmap.h \ 332 $(INC)picmapx.h \ 333 $(INC)picmapgen.h \ 334 $(INC)pigraphx.h \ 335 $(INC)pigraphgen.h \ 336 $(INC)pifontx.h \ 337 $(INC)pifontgen.h \ 338 $(INC)pigrcoord.h \ 339 $(INC)pilineatt.h \ 340 $(INC)pigraphuc.h \ 341 $(INC)pievthandler.h \ 342 $(INC)psfile.h \ 343 $(INC)pigraphps.h \ 344 $(INC)piwindowx.h \ 345 $(INC)piwindowgen.h \ 346 $(INC)pioptmenux.h \ 347 $(INC)pioptmenugen.h \ 348 $(INC)pifilechox.h \ 349 $(INC)pifilechogen.h \ 350 $(INC)piperiodx.h \ 351 $(INC)periodic.h \ 352 $(INC)piimage.h \ 353 $(INC)parradapter.h \ 354 $(INC)lut.h \ 355 $(INC)pieldrw.h \ 356 $(INC)pidrawer.h \ 357 $(INC)pigratt.h \ 358 $(INC)piaxes.h \ 359 $(INC)pipixmapx.h \ 360 $(INC)pipixmapgen.h \ 361 $(INC)picmapview.h \ 362 $(INC)pi3dwdg.h \ 363 $(INC)pi3ddrw.h \ 364 $(INC)pigraph3d.h pisiadw.h \ 365 $(INC)pilistx.h \ 366 $(INC)pilistgen.h \ 367 $(INC)pistzwin.h \ 368 $(INC)pitherm.h \ 369 $(INC)resusage.h 370 $(OBJ)flowmodex.o: flowmodex.cc $(INC)sopnamsp.h \ 371 flowmodex.h $(INC)machdefs.h piacmd.h \ 372 $(INC)commander.h \ 373 $(INC)pdlmgr.h \ 374 $(INC)dvlist.h \ 375 $(INC)objfio.h \ 376 $(INC)anydataobj.h \ 377 $(INC)ppersist.h \ 378 $(INC)pexceptions.h \ 379 $(INC)gnumd5.h \ 380 $(INC)ppfbinstream.h \ 381 $(INC)rawstream.h \ 382 $(INC)ppfnametag.h \ 383 $(INC)mutyv.h \ 384 $(INC)ctimer.h \ 385 $(INC)zthread.h dlftypes.h nobjmgr.h pi2dvec.h \ 386 pistdimgapp.h $(INC)pisysdep.h \ 387 $(INC)piapplx.h \ 388 $(INC)piapplgen.h \ 389 $(INC)pimsghandler.h \ 390 $(INC)picontainerx.h \ 391 $(INC)picontainergen.h \ 392 $(INC)piwdgx.h \ 393 $(INC)piwdggen.h \ 394 $(INC)picolist.h \ 395 $(INC)pimenubarx.h \ 396 $(INC)pimenubargen.h \ 397 $(INC)pimenux.h \ 398 $(INC)pimenugen.h \ 399 $(INC)picons.h \ 400 $(INC)pistdwdgx.h \ 401 $(INC)pistdwdggen.h \ 402 $(INC)pibwdgx.h \ 403 $(INC)pibwdggen.h \ 404 $(INC)picmap.h \ 405 $(INC)picmapx.h \ 406 $(INC)picmapgen.h \ 407 $(INC)pigraphx.h \ 408 $(INC)pigraphgen.h \ 409 $(INC)pifontx.h \ 410 $(INC)pifontgen.h \ 411 $(INC)pigrcoord.h \ 412 $(INC)pilineatt.h \ 413 $(INC)pigraphuc.h \ 414 $(INC)pievthandler.h \ 415 $(INC)psfile.h \ 416 $(INC)pigraphps.h \ 417 $(INC)piwindowx.h \ 418 $(INC)piwindowgen.h \ 419 $(INC)pioptmenux.h \ 420 $(INC)pioptmenugen.h \ 421 $(INC)pifilechox.h \ 422 $(INC)pifilechogen.h \ 423 $(INC)piperiodx.h \ 424 $(INC)periodic.h \ 425 $(INC)piimage.h \ 426 $(INC)parradapter.h \ 427 $(INC)lut.h \ 428 $(INC)pieldrw.h \ 429 $(INC)pidrawer.h \ 430 $(INC)pigratt.h \ 431 $(INC)piaxes.h \ 432 $(INC)pipixmapx.h \ 433 $(INC)pipixmapgen.h \ 434 $(INC)picmapview.h \ 435 $(INC)pi3dwdg.h \ 436 $(INC)pi3ddrw.h \ 437 $(INC)pigraph3d.h pisiadw.h \ 438 $(INC)pilistx.h \ 439 $(INC)pilistgen.h \ 440 $(INC)pistzwin.h \ 441 $(INC)pitherm.h \ 442 $(INC)resusage.h \ 443 $(INC)piscdrawwdg.h \ 444 $(INC)ntupintf.h \ 445 $(INC)ntuple.h nomgadapter.h \ 446 $(INC)generalfit.h \ 447 $(INC)tvector.h \ 448 $(INC)tmatrix.h \ 449 $(INC)tarray.h \ 450 $(INC)basarr.h \ 451 $(INC)ndatablock.h \ 452 $(INC)utilarr.h \ 453 $(INC)generaldata.h \ 454 $(INC)poly.h \ 455 $(INC)peida.h \ 456 $(INC)utils.h \ 457 $(INC)perrors.h \ 458 $(INC)fmath.h servnobjm.h 459 $(OBJ)nobjmgr.o: nobjmgr.cc $(INC)sopnamsp.h \ 460 $(INC)strutil.h \ 461 $(INC)datatypes.h \ 462 $(INC)machdefs.h nobjmgr.h \ 463 $(INC)anydataobj.h \ 464 $(INC)ppersist.h \ 465 $(INC)pexceptions.h \ 466 $(INC)gnumd5.h \ 467 $(INC)ppfbinstream.h \ 468 $(INC)rawstream.h \ 469 $(INC)ppfnametag.h \ 470 $(INC)dvlist.h \ 471 $(INC)objfio.h \ 472 $(INC)mutyv.h dlftypes.h servnobjm.h \ 473 $(INC)pdlmgr.h nomgadapter.h \ 474 $(INC)pidrawer.h \ 475 $(INC)pibwdggen.h \ 476 $(INC)pisysdep.h \ 477 $(INC)piwdgx.h \ 478 $(INC)piwdggen.h \ 479 $(INC)pimsghandler.h \ 480 $(INC)picolist.h \ 481 $(INC)picmap.h \ 482 $(INC)picmapx.h \ 483 $(INC)picmapgen.h \ 484 $(INC)pigraphx.h \ 485 $(INC)pigraphgen.h \ 486 $(INC)pifontx.h \ 487 $(INC)pifontgen.h \ 488 $(INC)pigrcoord.h \ 489 $(INC)pilineatt.h \ 490 $(INC)pigraphuc.h \ 491 $(INC)pievthandler.h \ 492 $(INC)psfile.h \ 493 $(INC)pigratt.h \ 494 $(INC)piaxes.h \ 495 $(INC)parradapter.h \ 496 $(INC)lut.h \ 497 $(INC)ntupintf.h \ 498 $(INC)generalfit.h \ 499 $(INC)tvector.h \ 500 $(INC)tmatrix.h \ 501 $(INC)tarray.h \ 502 $(INC)basarr.h \ 503 $(INC)ndatablock.h \ 504 $(INC)utilarr.h \ 505 $(INC)generaldata.h \ 506 $(INC)poly.h \ 507 $(INC)peida.h \ 508 $(INC)utils.h \ 509 $(INC)perrors.h \ 510 $(INC)fmath.h pistdimgapp.h \ 511 $(INC)piapplx.h \ 512 $(INC)piapplgen.h \ 513 $(INC)picontainerx.h \ 514 $(INC)picontainergen.h \ 515 $(INC)pimenubarx.h \ 516 $(INC)pimenubargen.h \ 517 $(INC)pimenux.h \ 518 $(INC)pimenugen.h \ 519 $(INC)picons.h \ 520 $(INC)pistdwdgx.h \ 521 $(INC)pistdwdggen.h \ 522 $(INC)pibwdgx.h \ 523 $(INC)pigraphps.h \ 524 $(INC)piwindowx.h \ 525 $(INC)piwindowgen.h \ 526 $(INC)pioptmenux.h \ 527 $(INC)pioptmenugen.h \ 528 $(INC)pifilechox.h \ 529 $(INC)pifilechogen.h \ 530 $(INC)piperiodx.h \ 531 $(INC)periodic.h \ 532 $(INC)piimage.h \ 533 $(INC)pieldrw.h \ 534 $(INC)pipixmapx.h \ 535 $(INC)pipixmapgen.h \ 536 $(INC)picmapview.h \ 537 $(INC)pi3dwdg.h \ 538 $(INC)pi3ddrw.h \ 539 $(INC)pigraph3d.h piacmd.h \ 540 $(INC)commander.h \ 541 $(INC)ctimer.h \ 542 $(INC)zthread.h pisiadw.h \ 543 $(INC)pilistx.h \ 544 $(INC)pilistgen.h \ 545 $(INC)pistzwin.h \ 546 $(INC)pitherm.h \ 547 $(INC)resusage.h \ 548 $(INC)fitsautoreader.h \ 549 $(INC)fitsfile.h \ 550 $(EXTINCPATH)FitsIO/fitsio.h \ 551 $(EXTINCPATH)FitsIO/longnam.h \ 552 $(INC)fitstarray.h \ 553 $(INC)fitsspherehealpix.h \ 554 $(INC)spherehealpix.h \ 555 $(INC)sphericalmap.h \ 556 $(INC)smathconst.h \ 557 $(INC)pixelmap.h \ 558 $(INC)spherepos.h \ 559 $(INC)unitvector.h \ 560 $(INC)vector3d.h \ 561 $(INC)longlat.h \ 562 $(INC)utilgeom.h \ 563 $(INC)HEALPixUtils.h \ 564 $(INC)fitsntuple.h \ 565 $(INC)ntuple.h \ 566 $(INC)fitsxntuple.h \ 567 $(INC)xntuple.h \ 568 $(INC)fitslocalmap.h \ 569 $(INC)localmap.h \ 570 $(INC)fbtntintf.h pitvmaad.h \ 571 $(INC)piyfxdrw.h \ 572 $(INC)pisurfdr.h pipodrw.h \ 573 $(INC)histos2.h \ 574 $(INC)histos.h pintuple.h pintup3d.h pigfd1.h \ 575 pigfd2.h 576 $(OBJ)nomgadapter.o: nomgadapter.cc $(INC)sopnamsp.h \ 577 $(INC)machdefs.h nomgadapter.h \ 578 $(INC)ppersist.h \ 579 $(INC)pexceptions.h \ 580 $(INC)gnumd5.h \ 581 $(INC)ppfbinstream.h \ 582 $(INC)rawstream.h \ 583 $(INC)ppfnametag.h \ 584 $(INC)anydataobj.h \ 585 $(INC)pidrawer.h \ 586 $(INC)pibwdggen.h \ 587 $(INC)pisysdep.h \ 588 $(INC)piwdgx.h \ 589 $(INC)piwdggen.h \ 590 $(INC)pimsghandler.h \ 591 $(INC)picolist.h \ 592 $(INC)picmap.h \ 593 $(INC)picmapx.h \ 594 $(INC)picmapgen.h \ 595 $(INC)pigraphx.h \ 596 $(INC)pigraphgen.h \ 597 $(INC)pifontx.h \ 598 $(INC)pifontgen.h \ 599 $(INC)pigrcoord.h \ 600 $(INC)pilineatt.h \ 601 $(INC)pigraphuc.h \ 602 $(INC)pievthandler.h \ 603 $(INC)psfile.h \ 604 $(INC)pigratt.h \ 605 $(INC)piaxes.h \ 606 $(INC)parradapter.h \ 607 $(INC)lut.h \ 608 $(INC)ntupintf.h \ 609 $(INC)generalfit.h \ 610 $(INC)tvector.h \ 611 $(INC)tmatrix.h \ 612 $(INC)tarray.h \ 613 $(INC)basarr.h \ 614 $(INC)mutyv.h \ 615 $(INC)dvlist.h \ 616 $(INC)objfio.h \ 617 $(INC)ndatablock.h \ 618 $(INC)utilarr.h \ 619 $(INC)generaldata.h \ 620 $(INC)poly.h \ 621 $(INC)peida.h \ 622 $(INC)utils.h \ 623 $(INC)perrors.h \ 624 $(INC)fmath.h 625 $(OBJ)nomgfdadapter.o: nomgfdadapter.cc \ 626 $(INC)sopnamsp.h \ 627 $(INC)machdefs.h nomgfdadapter.h nomgadapter.h \ 628 $(INC)ppersist.h \ 629 $(INC)pexceptions.h \ 630 $(INC)gnumd5.h \ 631 $(INC)ppfbinstream.h \ 632 $(INC)rawstream.h \ 633 $(INC)ppfnametag.h \ 634 $(INC)anydataobj.h \ 635 $(INC)pidrawer.h \ 636 $(INC)pibwdggen.h \ 637 $(INC)pisysdep.h \ 638 $(INC)piwdgx.h \ 639 $(INC)piwdggen.h \ 640 $(INC)pimsghandler.h \ 641 $(INC)picolist.h \ 642 $(INC)picmap.h \ 643 $(INC)picmapx.h \ 644 $(INC)picmapgen.h \ 645 $(INC)pigraphx.h \ 646 $(INC)pigraphgen.h \ 647 $(INC)pifontx.h \ 648 $(INC)pifontgen.h \ 649 $(INC)pigrcoord.h \ 650 $(INC)pilineatt.h \ 651 $(INC)pigraphuc.h \ 652 $(INC)pievthandler.h \ 653 $(INC)psfile.h \ 654 $(INC)pigratt.h \ 655 $(INC)piaxes.h \ 656 $(INC)parradapter.h \ 657 $(INC)lut.h \ 658 $(INC)ntupintf.h \ 659 $(INC)generalfit.h \ 660 $(INC)tvector.h \ 661 $(INC)tmatrix.h \ 662 $(INC)tarray.h \ 663 $(INC)basarr.h \ 664 $(INC)mutyv.h \ 665 $(INC)dvlist.h \ 666 $(INC)objfio.h \ 667 $(INC)ndatablock.h \ 668 $(INC)utilarr.h \ 669 $(INC)generaldata.h \ 670 $(INC)poly.h \ 671 $(INC)peida.h \ 672 $(INC)utils.h \ 673 $(INC)perrors.h \ 674 $(INC)fmath.h pipodrw.h \ 675 $(INC)histos2.h \ 676 $(INC)histos.h \ 677 $(INC)objfitter.h \ 678 $(INC)cimage.h \ 679 $(INC)fioarr.h \ 680 $(INC)hisprof.h 681 $(OBJ)nomhistadapter.o: nomhistadapter.cc \ 682 $(INC)sopnamsp.h \ 683 $(INC)machdefs.h nomhistadapter.h \ 684 nomgadapter.h $(INC)ppersist.h \ 685 $(INC)pexceptions.h \ 686 $(INC)gnumd5.h \ 687 $(INC)ppfbinstream.h \ 688 $(INC)rawstream.h \ 689 $(INC)ppfnametag.h \ 690 $(INC)anydataobj.h \ 691 $(INC)pidrawer.h \ 692 $(INC)pibwdggen.h \ 693 $(INC)pisysdep.h \ 694 $(INC)piwdgx.h \ 695 $(INC)piwdggen.h \ 696 $(INC)pimsghandler.h \ 697 $(INC)picolist.h \ 698 $(INC)picmap.h \ 699 $(INC)picmapx.h \ 700 $(INC)picmapgen.h \ 701 $(INC)pigraphx.h \ 702 $(INC)pigraphgen.h \ 703 $(INC)pifontx.h \ 704 $(INC)pifontgen.h \ 705 $(INC)pigrcoord.h \ 706 $(INC)pilineatt.h \ 707 $(INC)pigraphuc.h \ 708 $(INC)pievthandler.h \ 709 $(INC)psfile.h \ 710 $(INC)pigratt.h \ 711 $(INC)piaxes.h \ 712 $(INC)parradapter.h \ 713 $(INC)lut.h \ 714 $(INC)ntupintf.h \ 715 $(INC)generalfit.h \ 716 $(INC)tvector.h \ 717 $(INC)tmatrix.h \ 718 $(INC)tarray.h \ 719 $(INC)basarr.h \ 720 $(INC)mutyv.h \ 721 $(INC)dvlist.h \ 722 $(INC)objfio.h \ 723 $(INC)ndatablock.h \ 724 $(INC)utilarr.h \ 725 $(INC)generaldata.h \ 726 $(INC)poly.h \ 727 $(INC)peida.h \ 728 $(INC)utils.h \ 729 $(INC)perrors.h \ 730 $(INC)fmath.h \ 731 $(INC)histos.h \ 732 $(INC)histos2.h \ 733 $(INC)hisprof.h \ 734 $(INC)histerr.h \ 735 $(INC)ntuple.h \ 736 $(INC)xntuple.h \ 737 $(INC)basedtable.h \ 738 $(INC)segdatablock.h pihisto.h pihisto2d.h \ 739 $(INC)pimenux.h \ 740 $(INC)pimenugen.h \ 741 $(INC)pimenubarx.h \ 742 $(INC)pimenubargen.h \ 743 $(INC)pioptmenux.h \ 744 $(INC)pioptmenugen.h \ 745 $(INC)pistdwdgx.h \ 746 $(INC)pistdwdggen.h \ 747 $(INC)piscdrawwdg.h \ 748 $(INC)pibwdgx.h \ 749 $(INC)pigraphps.h \ 750 $(INC)piwindowx.h \ 751 $(INC)piwindowgen.h \ 752 $(INC)picontainerx.h \ 753 $(INC)picontainergen.h \ 754 $(INC)pieldrw.h pipodrw.h servnobjm.h \ 755 nobjmgr.h dlftypes.h $(INC)pdlmgr.h \ 756 $(INC)objfitter.h \ 757 $(INC)cimage.h \ 758 $(INC)fioarr.h \ 759 $(INC)fitsntuple.h \ 760 $(INC)fitsfile.h \ 761 $(EXTINCPATH)FitsIO/fitsio.h \ 762 $(EXTINCPATH)FitsIO/longnam.h \ 763 $(INC)fitsxntuple.h \ 764 $(INC)datatable.h \ 765 $(INC)swppfdtable.h \ 766 $(INC)swsegdb.h \ 767 $(INC)ppfswapper.h \ 768 $(INC)ppftpointerio.h 769 $(OBJ)nomimagadapter.o: nomimagadapter.cc \ 770 $(INC)sopnamsp.h \ 771 $(INC)machdefs.h \ 772 $(INC)datatype.h nomimagadapter.h \ 773 nomgadapter.h $(INC)ppersist.h \ 774 $(INC)pexceptions.h \ 775 $(INC)gnumd5.h \ 776 $(INC)ppfbinstream.h \ 777 $(INC)rawstream.h \ 778 $(INC)ppfnametag.h \ 779 $(INC)anydataobj.h \ 780 $(INC)pidrawer.h \ 781 $(INC)pibwdggen.h \ 782 $(INC)pisysdep.h \ 783 $(INC)piwdgx.h \ 784 $(INC)piwdggen.h \ 785 $(INC)pimsghandler.h \ 786 $(INC)picolist.h \ 787 $(INC)picmap.h \ 788 $(INC)picmapx.h \ 789 $(INC)picmapgen.h \ 790 $(INC)pigraphx.h \ 791 $(INC)pigraphgen.h \ 792 $(INC)pifontx.h \ 793 $(INC)pifontgen.h \ 794 $(INC)pigrcoord.h \ 795 $(INC)pilineatt.h \ 796 $(INC)pigraphuc.h \ 797 $(INC)pievthandler.h \ 798 $(INC)psfile.h \ 799 $(INC)pigratt.h \ 800 $(INC)piaxes.h \ 801 $(INC)parradapter.h \ 802 $(INC)lut.h \ 803 $(INC)ntupintf.h \ 804 $(INC)generalfit.h \ 805 $(INC)tvector.h \ 806 $(INC)tmatrix.h \ 807 $(INC)tarray.h \ 808 $(INC)basarr.h \ 809 $(INC)mutyv.h \ 810 $(INC)dvlist.h \ 811 $(INC)objfio.h \ 812 $(INC)ndatablock.h \ 813 $(INC)utilarr.h \ 814 $(INC)generaldata.h \ 815 $(INC)poly.h \ 816 $(INC)peida.h \ 817 $(INC)utils.h \ 818 $(INC)perrors.h \ 819 $(INC)fmath.h \ 820 $(INC)cimage.h \ 821 $(INC)fioarr.h pimgadapter.h \ 822 $(INC)objfitter.h \ 823 $(INC)histos.h \ 824 $(INC)histos2.h \ 825 $(INC)hisprof.h \ 826 $(INC)fitstarray.h \ 827 $(INC)fitsfile.h \ 828 $(EXTINCPATH)FitsIO/fitsio.h \ 829 $(EXTINCPATH)FitsIO/longnam.h 830 $(OBJ)nomskymapadapter.o: nomskymapadapter.cc \ 831 $(INC)sopnamsp.h \ 832 $(INC)machdefs.h \ 833 $(INC)datatype.h nomskymapadapter.h \ 834 nomgadapter.h $(INC)ppersist.h \ 835 $(INC)pexceptions.h \ 836 $(INC)gnumd5.h \ 837 $(INC)ppfbinstream.h \ 838 $(INC)rawstream.h \ 839 $(INC)ppfnametag.h \ 840 $(INC)anydataobj.h \ 841 $(INC)pidrawer.h \ 842 $(INC)pibwdggen.h \ 843 $(INC)pisysdep.h \ 844 $(INC)piwdgx.h \ 845 $(INC)piwdggen.h \ 846 $(INC)pimsghandler.h \ 847 $(INC)picolist.h \ 848 $(INC)picmap.h \ 849 $(INC)picmapx.h \ 850 $(INC)picmapgen.h \ 851 $(INC)pigraphx.h \ 852 $(INC)pigraphgen.h \ 853 $(INC)pifontx.h \ 854 $(INC)pifontgen.h \ 855 $(INC)pigrcoord.h \ 856 $(INC)pilineatt.h \ 857 $(INC)pigraphuc.h \ 858 $(INC)pievthandler.h \ 859 $(INC)psfile.h \ 860 $(INC)pigratt.h \ 861 $(INC)piaxes.h \ 862 $(INC)parradapter.h \ 863 $(INC)lut.h \ 864 $(INC)ntupintf.h \ 865 $(INC)generalfit.h \ 866 $(INC)tvector.h \ 867 $(INC)tmatrix.h \ 868 $(INC)tarray.h \ 869 $(INC)basarr.h \ 870 $(INC)mutyv.h \ 871 $(INC)dvlist.h \ 872 $(INC)objfio.h \ 873 $(INC)ndatablock.h \ 874 $(INC)utilarr.h \ 875 $(INC)generaldata.h \ 876 $(INC)poly.h \ 877 $(INC)peida.h \ 878 $(INC)utils.h \ 879 $(INC)perrors.h \ 880 $(INC)fmath.h \ 881 $(INC)pixelmap.h \ 882 $(INC)spherepos.h \ 883 $(INC)unitvector.h \ 884 $(INC)vector3d.h \ 885 $(INC)longlat.h \ 886 $(INC)utilgeom.h \ 887 $(INC)skymap.h \ 888 $(INC)spherethetaphi.h \ 889 $(INC)sphericalmap.h \ 890 $(INC)smathconst.h \ 891 $(INC)spherehealpix.h \ 892 $(INC)HEALPixUtils.h \ 893 $(INC)localmap.h \ 894 $(INC)sphereecp.h \ 895 $(INC)fiospherethetaphi.h \ 896 $(INC)fiospherehealpix.h \ 897 $(INC)fiolocalmap.h \ 898 $(INC)fiosphereecp.h pitvmaad.h \ 899 $(INC)complexios.h \ 900 $(INC)fitsspherehealpix.h \ 901 $(INC)fitsfile.h \ 902 $(EXTINCPATH)FitsIO/fitsio.h \ 903 $(EXTINCPATH)FitsIO/longnam.h \ 904 $(INC)fitslocalmap.h 905 $(OBJ)nomspecrespadapter.o: nomspecrespadapter.cc \ 906 $(INC)sopnamsp.h \ 907 $(INC)machdefs.h nomspecrespadapter.h \ 908 nomgadapter.h $(INC)ppersist.h \ 909 $(INC)pexceptions.h \ 910 $(INC)gnumd5.h \ 911 $(INC)ppfbinstream.h \ 912 $(INC)rawstream.h \ 913 $(INC)ppfnametag.h \ 914 $(INC)anydataobj.h \ 915 $(INC)pidrawer.h \ 916 $(INC)pibwdggen.h \ 917 $(INC)pisysdep.h \ 918 $(INC)piwdgx.h \ 919 $(INC)piwdggen.h \ 920 $(INC)pimsghandler.h \ 921 $(INC)picolist.h \ 922 $(INC)picmap.h \ 923 $(INC)picmapx.h \ 924 $(INC)picmapgen.h \ 925 $(INC)pigraphx.h \ 926 $(INC)pigraphgen.h \ 927 $(INC)pifontx.h \ 928 $(INC)pifontgen.h \ 929 $(INC)pigrcoord.h \ 930 $(INC)pilineatt.h \ 931 $(INC)pigraphuc.h \ 932 $(INC)pievthandler.h \ 933 $(INC)psfile.h \ 934 $(INC)pigratt.h \ 935 $(INC)piaxes.h \ 936 $(INC)parradapter.h \ 937 $(INC)lut.h \ 938 $(INC)ntupintf.h \ 939 $(INC)generalfit.h \ 940 $(INC)tvector.h \ 941 $(INC)tmatrix.h \ 942 $(INC)tarray.h \ 943 $(INC)basarr.h \ 944 $(INC)mutyv.h \ 945 $(INC)dvlist.h \ 946 $(INC)objfio.h \ 947 $(INC)ndatablock.h \ 948 $(INC)utilarr.h \ 949 $(INC)generaldata.h \ 950 $(INC)poly.h \ 951 $(INC)peida.h \ 952 $(INC)utils.h \ 953 $(INC)perrors.h \ 954 $(INC)fmath.h \ 955 $(INC)specresp.h \ 956 $(INC)specrespvector.h \ 957 $(INC)gaussfilt.h 958 $(OBJ)nomtarradapter.o: nomtarradapter.cc \ 959 $(INC)sopnamsp.h \ 960 $(INC)machdefs.h \ 961 $(INC)datatype.h nomtarradapter.h \ 962 nomgadapter.h $(INC)ppersist.h \ 963 $(INC)pexceptions.h \ 964 $(INC)gnumd5.h \ 965 $(INC)ppfbinstream.h \ 966 $(INC)rawstream.h \ 967 $(INC)ppfnametag.h \ 968 $(INC)anydataobj.h \ 969 $(INC)pidrawer.h \ 970 $(INC)pibwdggen.h \ 971 $(INC)pisysdep.h \ 972 $(INC)piwdgx.h \ 973 $(INC)piwdggen.h \ 974 $(INC)pimsghandler.h \ 975 $(INC)picolist.h \ 976 $(INC)picmap.h \ 977 $(INC)picmapx.h \ 978 $(INC)picmapgen.h \ 979 $(INC)pigraphx.h \ 980 $(INC)pigraphgen.h \ 981 $(INC)pifontx.h \ 982 $(INC)pifontgen.h \ 983 $(INC)pigrcoord.h \ 984 $(INC)pilineatt.h \ 985 $(INC)pigraphuc.h \ 986 $(INC)pievthandler.h \ 987 $(INC)psfile.h \ 988 $(INC)pigratt.h \ 989 $(INC)piaxes.h \ 990 $(INC)parradapter.h \ 991 $(INC)lut.h \ 992 $(INC)ntupintf.h \ 993 $(INC)generalfit.h \ 994 $(INC)tvector.h \ 995 $(INC)tmatrix.h \ 996 $(INC)tarray.h \ 997 $(INC)basarr.h \ 998 $(INC)mutyv.h \ 999 $(INC)dvlist.h \ 1000 $(INC)objfio.h \ 1001 $(INC)ndatablock.h \ 1002 $(INC)utilarr.h \ 1003 $(INC)generaldata.h \ 1004 $(INC)poly.h \ 1005 $(INC)peida.h \ 1006 $(INC)utils.h \ 1007 $(INC)perrors.h \ 1008 $(INC)fmath.h pitvmaad.h \ 1009 $(INC)piyfxdrw.h \ 1010 $(INC)fioarr.h \ 1011 $(INC)fitstarray.h \ 1012 $(INC)fitsfile.h \ 1013 $(EXTINCPATH)FitsIO/fitsio.h \ 1014 $(EXTINCPATH)FitsIO/longnam.h 1015 $(OBJ)nomtmatvecadapter.o: nomtmatvecadapter.cc \ 1016 $(INC)sopnamsp.h \ 1017 $(INC)machdefs.h \ 1018 $(INC)datatype.h \ 1019 $(INC)tvector.h \ 1020 $(INC)tmatrix.h \ 1021 $(INC)tarray.h \ 1022 $(INC)basarr.h \ 1023 $(INC)anydataobj.h \ 1024 $(INC)mutyv.h \ 1025 $(INC)dvlist.h \ 1026 $(INC)objfio.h \ 1027 $(INC)ppersist.h \ 1028 $(INC)pexceptions.h \ 1029 $(INC)gnumd5.h \ 1030 $(INC)ppfbinstream.h \ 1031 $(INC)rawstream.h \ 1032 $(INC)ppfnametag.h \ 1033 $(INC)ndatablock.h \ 1034 $(INC)utilarr.h \ 1035 $(INC)objfitter.h \ 1036 $(INC)cimage.h \ 1037 $(INC)fioarr.h \ 1038 $(INC)histos.h \ 1039 $(INC)peida.h \ 1040 $(INC)utils.h \ 1041 $(INC)perrors.h \ 1042 $(INC)fmath.h \ 1043 $(INC)histos2.h \ 1044 $(INC)hisprof.h \ 1045 $(INC)generalfit.h \ 1046 $(INC)generaldata.h \ 1047 $(INC)ntupintf.h \ 1048 $(INC)poly.h nomtmatvecadapter.h nomgadapter.h \ 1049 $(INC)pidrawer.h \ 1050 $(INC)pibwdggen.h \ 1051 $(INC)pisysdep.h \ 1052 $(INC)piwdgx.h \ 1053 $(INC)piwdggen.h \ 1054 $(INC)pimsghandler.h \ 1055 $(INC)picolist.h \ 1056 $(INC)picmap.h \ 1057 $(INC)picmapx.h \ 1058 $(INC)picmapgen.h \ 1059 $(INC)pigraphx.h \ 1060 $(INC)pigraphgen.h \ 1061 $(INC)pifontx.h \ 1062 $(INC)pifontgen.h \ 1063 $(INC)pigrcoord.h \ 1064 $(INC)pilineatt.h \ 1065 $(INC)pigraphuc.h \ 1066 $(INC)pievthandler.h \ 1067 $(INC)psfile.h \ 1068 $(INC)pigratt.h \ 1069 $(INC)piaxes.h \ 1070 $(INC)parradapter.h \ 1071 $(INC)lut.h \ 1072 $(INC)piyfxdrw.h pitvmaad.h \ 1073 $(INC)fitstarray.h \ 1074 $(INC)fitsfile.h \ 1075 $(EXTINCPATH)FitsIO/fitsio.h \ 1076 $(EXTINCPATH)FitsIO/longnam.h 1077 $(OBJ)pawexecut.o: pawexecut.cc $(INC)sopnamsp.h \ 1078 $(INC)strutil.h \ 1079 $(INC)strutilxx.h \ 1080 $(INC)machdefs.h \ 1081 $(INC)histos.h \ 1082 $(INC)objfio.h \ 1083 $(INC)anydataobj.h \ 1084 $(INC)ppersist.h \ 1085 $(INC)pexceptions.h \ 1086 $(INC)gnumd5.h \ 1087 $(INC)ppfbinstream.h \ 1088 $(INC)rawstream.h \ 1089 $(INC)ppfnametag.h \ 1090 $(INC)peida.h \ 1091 $(INC)utils.h \ 1092 $(INC)perrors.h \ 1093 $(INC)fmath.h \ 1094 $(INC)tvector.h \ 1095 $(INC)tmatrix.h \ 1096 $(INC)tarray.h \ 1097 $(INC)basarr.h \ 1098 $(INC)mutyv.h \ 1099 $(INC)dvlist.h \ 1100 $(INC)ndatablock.h \ 1101 $(INC)utilarr.h \ 1102 $(INC)histos2.h \ 1103 $(INC)hisprof.h \ 1104 $(INC)histerr.h \ 1105 $(INC)ntuple.h \ 1106 $(INC)ntupintf.h pawexecut.h piacmd.h \ 1107 $(INC)commander.h \ 1108 $(INC)pdlmgr.h \ 1109 $(INC)ctimer.h \ 1110 $(INC)zthread.h dlftypes.h nobjmgr.h \ 1111 servnobjm.h nomgadapter.h $(INC)pidrawer.h \ 1112 $(INC)pibwdggen.h \ 1113 $(INC)pisysdep.h \ 1114 $(INC)piwdgx.h \ 1115 $(INC)piwdggen.h \ 1116 $(INC)pimsghandler.h \ 1117 $(INC)picolist.h \ 1118 $(INC)picmap.h \ 1119 $(INC)picmapx.h \ 1120 $(INC)picmapgen.h \ 1121 $(INC)pigraphx.h \ 1122 $(INC)pigraphgen.h \ 1123 $(INC)pifontx.h \ 1124 $(INC)pifontgen.h \ 1125 $(INC)pigrcoord.h \ 1126 $(INC)pilineatt.h \ 1127 $(INC)pigraphuc.h \ 1128 $(INC)pievthandler.h \ 1129 $(INC)psfile.h \ 1130 $(INC)pigratt.h \ 1131 $(INC)piaxes.h \ 1132 $(INC)parradapter.h \ 1133 $(INC)lut.h \ 1134 $(INC)generalfit.h \ 1135 $(INC)generaldata.h \ 1136 $(INC)poly.h pistdimgapp.h \ 1137 $(INC)piapplx.h \ 1138 $(INC)piapplgen.h \ 1139 $(INC)picontainerx.h \ 1140 $(INC)picontainergen.h \ 1141 $(INC)pimenubarx.h \ 1142 $(INC)pimenubargen.h \ 1143 $(INC)pimenux.h \ 1144 $(INC)pimenugen.h \ 1145 $(INC)picons.h \ 1146 $(INC)pistdwdgx.h \ 1147 $(INC)pistdwdggen.h \ 1148 $(INC)pibwdgx.h \ 1149 $(INC)pigraphps.h \ 1150 $(INC)piwindowx.h \ 1151 $(INC)piwindowgen.h \ 1152 $(INC)pioptmenux.h \ 1153 $(INC)pioptmenugen.h \ 1154 $(INC)pifilechox.h \ 1155 $(INC)pifilechogen.h \ 1156 $(INC)piperiodx.h \ 1157 $(INC)periodic.h \ 1158 $(INC)piimage.h \ 1159 $(INC)pieldrw.h \ 1160 $(INC)pipixmapx.h \ 1161 $(INC)pipixmapgen.h \ 1162 $(INC)picmapview.h \ 1163 $(INC)pi3dwdg.h \ 1164 $(INC)pi3ddrw.h \ 1165 $(INC)pigraph3d.h pisiadw.h \ 1166 $(INC)pilistx.h \ 1167 $(INC)pilistgen.h \ 1168 $(INC)pistzwin.h \ 1169 $(INC)pitherm.h \ 1170 $(INC)resusage.h pihisto.h 1171 $(OBJ)pi2dvec.o: pi2dvec.cc $(INC)sopnamsp.h \ 1172 $(INC)machdefs.h \ 1173 $(INC)histos.h \ 1174 $(INC)objfio.h \ 1175 $(INC)anydataobj.h \ 1176 $(INC)ppersist.h \ 1177 $(INC)pexceptions.h \ 1178 $(INC)gnumd5.h \ 1179 $(INC)ppfbinstream.h \ 1180 $(INC)rawstream.h \ 1181 $(INC)ppfnametag.h \ 1182 $(INC)peida.h \ 1183 $(INC)utils.h \ 1184 $(INC)perrors.h \ 1185 $(INC)fmath.h \ 1186 $(INC)tvector.h \ 1187 $(INC)tmatrix.h \ 1188 $(INC)tarray.h \ 1189 $(INC)basarr.h \ 1190 $(INC)mutyv.h \ 1191 $(INC)dvlist.h \ 1192 $(INC)ndatablock.h \ 1193 $(INC)utilarr.h \ 1194 $(INC)ntuple.h \ 1195 $(INC)ntupintf.h \ 1196 $(INC)nbtri.h pi2dvec.h pistdimgapp.h \ 1197 $(INC)pisysdep.h \ 1198 $(INC)piapplx.h \ 1199 $(INC)piapplgen.h \ 1200 $(INC)pimsghandler.h \ 1201 $(INC)picontainerx.h \ 1202 $(INC)picontainergen.h \ 1203 $(INC)piwdgx.h \ 1204 $(INC)piwdggen.h \ 1205 $(INC)picolist.h \ 1206 $(INC)pimenubarx.h \ 1207 $(INC)pimenubargen.h \ 1208 $(INC)pimenux.h \ 1209 $(INC)pimenugen.h \ 1210 $(INC)picons.h \ 1211 $(INC)pistdwdgx.h \ 1212 $(INC)pistdwdggen.h \ 1213 $(INC)pibwdgx.h \ 1214 $(INC)pibwdggen.h \ 1215 $(INC)picmap.h \ 1216 $(INC)picmapx.h \ 1217 $(INC)picmapgen.h \ 1218 $(INC)pigraphx.h \ 1219 $(INC)pigraphgen.h \ 1220 $(INC)pifontx.h \ 1221 $(INC)pifontgen.h \ 1222 $(INC)pigrcoord.h \ 1223 $(INC)pilineatt.h \ 1224 $(INC)pigraphuc.h \ 1225 $(INC)pievthandler.h \ 1226 $(INC)psfile.h \ 1227 $(INC)pigraphps.h \ 1228 $(INC)piwindowx.h \ 1229 $(INC)piwindowgen.h \ 1230 $(INC)pioptmenux.h \ 1231 $(INC)pioptmenugen.h \ 1232 $(INC)pifilechox.h \ 1233 $(INC)pifilechogen.h \ 1234 $(INC)piperiodx.h \ 1235 $(INC)periodic.h \ 1236 $(INC)piimage.h \ 1237 $(INC)parradapter.h \ 1238 $(INC)lut.h \ 1239 $(INC)pieldrw.h \ 1240 $(INC)pidrawer.h \ 1241 $(INC)pigratt.h \ 1242 $(INC)piaxes.h \ 1243 $(INC)pipixmapx.h \ 1244 $(INC)pipixmapgen.h \ 1245 $(INC)picmapview.h \ 1246 $(INC)pi3dwdg.h \ 1247 $(INC)pi3ddrw.h \ 1248 $(INC)pigraph3d.h nobjmgr.h dlftypes.h \ 1249 piacmd.h $(INC)commander.h \ 1250 $(INC)pdlmgr.h \ 1251 $(INC)ctimer.h \ 1252 $(INC)zthread.h pisiadw.h \ 1253 $(INC)pilistx.h \ 1254 $(INC)pilistgen.h \ 1255 $(INC)pistzwin.h \ 1256 $(INC)pitherm.h \ 1257 $(INC)resusage.h \ 1258 $(INC)piscdrawwdg.h 1259 $(OBJ)piacmd.o: piacmd.cc $(INC)sopnamsp.h piacmd.h \ 1260 $(INC)machdefs.h \ 1261 $(INC)commander.h \ 1262 $(INC)pdlmgr.h \ 1263 $(INC)dvlist.h \ 1264 $(INC)objfio.h \ 1265 $(INC)anydataobj.h \ 1266 $(INC)ppersist.h \ 1267 $(INC)pexceptions.h \ 1268 $(INC)gnumd5.h \ 1269 $(INC)ppfbinstream.h \ 1270 $(INC)rawstream.h \ 1271 $(INC)ppfnametag.h \ 1272 $(INC)mutyv.h \ 1273 $(INC)ctimer.h \ 1274 $(INC)zthread.h dlftypes.h basexecut.h \ 1275 $(INC)strutil.h \ 1276 $(INC)strutilxx.h \ 1277 $(INC)srandgen.h pistdimgapp.h \ 1278 $(INC)pisysdep.h \ 1279 $(INC)piapplx.h \ 1280 $(INC)piapplgen.h \ 1281 $(INC)pimsghandler.h \ 1282 $(INC)picontainerx.h \ 1283 $(INC)picontainergen.h \ 1284 $(INC)piwdgx.h \ 1285 $(INC)piwdggen.h \ 1286 $(INC)picolist.h \ 1287 $(INC)pimenubarx.h \ 1288 $(INC)pimenubargen.h \ 1289 $(INC)pimenux.h \ 1290 $(INC)pimenugen.h \ 1291 $(INC)picons.h \ 1292 $(INC)pistdwdgx.h \ 1293 $(INC)pistdwdggen.h \ 1294 $(INC)pibwdgx.h \ 1295 $(INC)pibwdggen.h \ 1296 $(INC)picmap.h \ 1297 $(INC)picmapx.h \ 1298 $(INC)picmapgen.h \ 1299 $(INC)pigraphx.h \ 1300 $(INC)pigraphgen.h \ 1301 $(INC)pifontx.h \ 1302 $(INC)pifontgen.h \ 1303 $(INC)pigrcoord.h \ 1304 $(INC)pilineatt.h \ 1305 $(INC)pigraphuc.h \ 1306 $(INC)pievthandler.h \ 1307 $(INC)psfile.h \ 1308 $(INC)pigraphps.h \ 1309 $(INC)piwindowx.h \ 1310 $(INC)piwindowgen.h \ 1311 $(INC)pioptmenux.h \ 1312 $(INC)pioptmenugen.h \ 1313 $(INC)pifilechox.h \ 1314 $(INC)pifilechogen.h \ 1315 $(INC)piperiodx.h \ 1316 $(INC)periodic.h \ 1317 $(INC)piimage.h \ 1318 $(INC)parradapter.h \ 1319 $(INC)lut.h \ 1320 $(INC)pieldrw.h \ 1321 $(INC)pidrawer.h \ 1322 $(INC)pigratt.h \ 1323 $(INC)piaxes.h \ 1324 $(INC)pipixmapx.h \ 1325 $(INC)pipixmapgen.h \ 1326 $(INC)picmapview.h \ 1327 $(INC)pi3dwdg.h \ 1328 $(INC)pi3ddrw.h \ 1329 $(INC)pigraph3d.h nobjmgr.h pisiadw.h \ 1330 $(INC)pilistx.h \ 1331 $(INC)pilistgen.h \ 1332 $(INC)pistzwin.h \ 1333 $(INC)pitherm.h \ 1334 $(INC)resusage.h piafitting.h nomgadapter.h \ 1335 $(INC)ntupintf.h \ 1336 $(INC)generalfit.h \ 1337 $(INC)tvector.h \ 1338 $(INC)tmatrix.h \ 1339 $(INC)tarray.h \ 1340 $(INC)basarr.h \ 1341 $(INC)ndatablock.h \ 1342 $(INC)utilarr.h \ 1343 $(INC)generaldata.h \ 1344 $(INC)poly.h \ 1345 $(INC)peida.h \ 1346 $(INC)utils.h \ 1347 $(INC)perrors.h \ 1348 $(INC)fmath.h pawexecut.h cxxexecutor.h \ 1349 cxxexecwin.h contmodex.h flowmodex.h 1350 $(OBJ)piafitting.o: piafitting.cc $(INC)sopnamsp.h \ 1351 $(INC)strutil.h \ 1352 $(INC)nbtri.h \ 1353 $(INC)machdefs.h \ 1354 $(INC)generalfit.h \ 1355 $(INC)pexceptions.h \ 1356 $(INC)tvector.h \ 1357 $(INC)tmatrix.h \ 1358 $(INC)tarray.h \ 1359 $(INC)basarr.h \ 1360 $(INC)anydataobj.h \ 1361 $(INC)mutyv.h \ 1362 $(INC)dvlist.h \ 1363 $(INC)objfio.h \ 1364 $(INC)ppersist.h \ 1365 $(INC)gnumd5.h \ 1366 $(INC)ppfbinstream.h \ 1367 $(INC)rawstream.h \ 1368 $(INC)ppfnametag.h \ 1369 $(INC)ndatablock.h \ 1370 $(INC)utilarr.h \ 1371 $(INC)generaldata.h \ 1372 $(INC)ntupintf.h \ 1373 $(INC)poly.h \ 1374 $(INC)peida.h \ 1375 $(INC)utils.h \ 1376 $(INC)perrors.h \ 1377 $(INC)fmath.h \ 1378 $(INC)fct1dfit.h \ 1379 $(INC)fct2dfit.h \ 1380 $(INC)ntuple.h \ 1381 $(INC)cimage.h \ 1382 $(INC)fioarr.h \ 1383 $(INC)histos.h \ 1384 $(INC)histos2.h \ 1385 $(INC)hisprof.h \ 1386 $(INC)objfitter.h piafitting.h nomgadapter.h \ 1387 $(INC)pidrawer.h \ 1388 $(INC)pibwdggen.h \ 1389 $(INC)pisysdep.h \ 1390 $(INC)piwdgx.h \ 1391 $(INC)piwdggen.h \ 1392 $(INC)pimsghandler.h \ 1393 $(INC)picolist.h \ 1394 $(INC)picmap.h \ 1395 $(INC)picmapx.h \ 1396 $(INC)picmapgen.h \ 1397 $(INC)pigraphx.h \ 1398 $(INC)pigraphgen.h \ 1399 $(INC)pifontx.h \ 1400 $(INC)pifontgen.h \ 1401 $(INC)pigrcoord.h \ 1402 $(INC)pilineatt.h \ 1403 $(INC)pigraphuc.h \ 1404 $(INC)pievthandler.h \ 1405 $(INC)psfile.h \ 1406 $(INC)pigratt.h \ 1407 $(INC)piaxes.h \ 1408 $(INC)parradapter.h \ 1409 $(INC)lut.h \ 1410 $(INC)pdlmgr.h dlftypes.h piacmd.h \ 1411 $(INC)commander.h \ 1412 $(INC)ctimer.h \ 1413 $(INC)zthread.h nobjmgr.h pistdimgapp.h \ 1414 $(INC)piapplx.h \ 1415 $(INC)piapplgen.h \ 1416 $(INC)picontainerx.h \ 1417 $(INC)picontainergen.h \ 1418 $(INC)pimenubarx.h \ 1419 $(INC)pimenubargen.h \ 1420 $(INC)pimenux.h \ 1421 $(INC)pimenugen.h \ 1422 $(INC)picons.h \ 1423 $(INC)pistdwdgx.h \ 1424 $(INC)pistdwdggen.h \ 1425 $(INC)pibwdgx.h \ 1426 $(INC)pigraphps.h \ 1427 $(INC)piwindowx.h \ 1428 $(INC)piwindowgen.h \ 1429 $(INC)pioptmenux.h \ 1430 $(INC)pioptmenugen.h \ 1431 $(INC)pifilechox.h \ 1432 $(INC)pifilechogen.h \ 1433 $(INC)piperiodx.h \ 1434 $(INC)periodic.h \ 1435 $(INC)piimage.h \ 1436 $(INC)pieldrw.h \ 1437 $(INC)pipixmapx.h \ 1438 $(INC)pipixmapgen.h \ 1439 $(INC)picmapview.h \ 1440 $(INC)pi3dwdg.h \ 1441 $(INC)pi3ddrw.h \ 1442 $(INC)pigraph3d.h pisiadw.h \ 1443 $(INC)pilistx.h \ 1444 $(INC)pilistgen.h \ 1445 $(INC)pistzwin.h \ 1446 $(INC)pitherm.h \ 1447 $(INC)resusage.h nomhistadapter.h \ 1448 $(INC)histerr.h \ 1449 $(INC)xntuple.h \ 1450 $(INC)basedtable.h \ 1451 $(INC)segdatablock.h nomgfdadapter.h \ 1452 nomimagadapter.h nomtmatvecadapter.h 1453 $(OBJ)pigfd1.o: pigfd1.cc $(INC)sopnamsp.h pigfd1.h \ 1454 $(INC)generaldata.h \ 1455 $(INC)objfio.h \ 1456 $(INC)machdefs.h \ 1457 $(INC)anydataobj.h \ 1458 $(INC)ppersist.h \ 1459 $(INC)pexceptions.h \ 1460 $(INC)gnumd5.h \ 1461 $(INC)ppfbinstream.h \ 1462 $(INC)rawstream.h \ 1463 $(INC)ppfnametag.h \ 1464 $(INC)ntupintf.h \ 1465 $(INC)poly.h \ 1466 $(INC)peida.h \ 1467 $(INC)utils.h \ 1468 $(INC)perrors.h \ 1469 $(INC)fmath.h \ 1470 $(INC)tvector.h \ 1471 $(INC)tmatrix.h \ 1472 $(INC)tarray.h \ 1473 $(INC)basarr.h \ 1474 $(INC)mutyv.h \ 1475 $(INC)dvlist.h \ 1476 $(INC)ndatablock.h \ 1477 $(INC)utilarr.h \ 1478 $(INC)pidrawer.h \ 1479 $(INC)pibwdggen.h \ 1480 $(INC)pisysdep.h \ 1481 $(INC)piwdgx.h \ 1482 $(INC)piwdggen.h \ 1483 $(INC)pimsghandler.h \ 1484 $(INC)picolist.h \ 1485 $(INC)picmap.h \ 1486 $(INC)picmapx.h \ 1487 $(INC)picmapgen.h \ 1488 $(INC)pigraphx.h \ 1489 $(INC)pigraphgen.h \ 1490 $(INC)pifontx.h \ 1491 $(INC)pifontgen.h \ 1492 $(INC)pigrcoord.h \ 1493 $(INC)pilineatt.h \ 1494 $(INC)pigraphuc.h \ 1495 $(INC)pievthandler.h \ 1496 $(INC)psfile.h \ 1497 $(INC)pigratt.h \ 1498 $(INC)piaxes.h 1499 $(OBJ)pigfd2.o: pigfd2.cc $(INC)sopnamsp.h pigfd2.h \ 1500 $(INC)generaldata.h \ 1501 $(INC)objfio.h \ 1502 $(INC)machdefs.h \ 1503 $(INC)anydataobj.h \ 1504 $(INC)ppersist.h \ 1505 $(INC)pexceptions.h \ 1506 $(INC)gnumd5.h \ 1507 $(INC)ppfbinstream.h \ 1508 $(INC)rawstream.h \ 1509 $(INC)ppfnametag.h \ 1510 $(INC)ntupintf.h \ 1511 $(INC)poly.h \ 1512 $(INC)peida.h \ 1513 $(INC)utils.h \ 1514 $(INC)perrors.h \ 1515 $(INC)fmath.h \ 1516 $(INC)tvector.h \ 1517 $(INC)tmatrix.h \ 1518 $(INC)tarray.h \ 1519 $(INC)basarr.h \ 1520 $(INC)mutyv.h \ 1521 $(INC)dvlist.h \ 1522 $(INC)ndatablock.h \ 1523 $(INC)utilarr.h \ 1524 $(INC)pi3ddrw.h \ 1525 $(INC)pisysdep.h \ 1526 $(INC)pidrawer.h \ 1527 $(INC)pibwdggen.h \ 1528 $(INC)piwdgx.h \ 1529 $(INC)piwdggen.h \ 1530 $(INC)pimsghandler.h \ 1531 $(INC)picolist.h \ 1532 $(INC)picmap.h \ 1533 $(INC)picmapx.h \ 1534 $(INC)picmapgen.h \ 1535 $(INC)pigraphx.h \ 1536 $(INC)pigraphgen.h \ 1537 $(INC)pifontx.h \ 1538 $(INC)pifontgen.h \ 1539 $(INC)pigrcoord.h \ 1540 $(INC)pilineatt.h \ 1541 $(INC)pigraphuc.h \ 1542 $(INC)pievthandler.h \ 1543 $(INC)psfile.h \ 1544 $(INC)pigratt.h \ 1545 $(INC)piaxes.h \ 1546 $(INC)pieldrw.h \ 1547 $(INC)pigraph3d.h 1548 $(OBJ)pihisto.o: pihisto.cc $(INC)sopnamsp.h pihisto.h \ 1549 $(INC)histos.h \ 1550 $(INC)objfio.h \ 1551 $(INC)machdefs.h \ 1552 $(INC)anydataobj.h \ 1553 $(INC)ppersist.h \ 1554 $(INC)pexceptions.h \ 1555 $(INC)gnumd5.h \ 1556 $(INC)ppfbinstream.h \ 1557 $(INC)rawstream.h \ 1558 $(INC)ppfnametag.h \ 1559 $(INC)peida.h \ 1560 $(INC)utils.h \ 1561 $(INC)perrors.h \ 1562 $(INC)fmath.h \ 1563 $(INC)tvector.h \ 1564 $(INC)tmatrix.h \ 1565 $(INC)tarray.h \ 1566 $(INC)basarr.h \ 1567 $(INC)mutyv.h \ 1568 $(INC)dvlist.h \ 1569 $(INC)ndatablock.h \ 1570 $(INC)utilarr.h \ 1571 $(INC)pidrawer.h \ 1572 $(INC)pibwdggen.h \ 1573 $(INC)pisysdep.h \ 1574 $(INC)piwdgx.h \ 1575 $(INC)piwdggen.h \ 1576 $(INC)pimsghandler.h \ 1577 $(INC)picolist.h \ 1578 $(INC)picmap.h \ 1579 $(INC)picmapx.h \ 1580 $(INC)picmapgen.h \ 1581 $(INC)pigraphx.h \ 1582 $(INC)pigraphgen.h \ 1583 $(INC)pifontx.h \ 1584 $(INC)pifontgen.h \ 1585 $(INC)pigrcoord.h \ 1586 $(INC)pilineatt.h \ 1587 $(INC)pigraphuc.h \ 1588 $(INC)pievthandler.h \ 1589 $(INC)psfile.h \ 1590 $(INC)pigratt.h \ 1591 $(INC)piaxes.h \ 1592 $(INC)hisprof.h 1593 $(OBJ)pihisto2d.o: pihisto2d.cc $(INC)piapplx.h \ 1594 $(INC)piapplgen.h \ 1595 $(INC)pimsghandler.h \ 1596 $(INC)picontainerx.h \ 1597 $(INC)picontainergen.h \ 1598 $(INC)piwdgx.h \ 1599 $(INC)piwdggen.h \ 1600 $(INC)picolist.h \ 1601 $(INC)pimenubarx.h \ 1602 $(INC)pimenubargen.h \ 1603 $(INC)pimenux.h \ 1604 $(INC)pimenugen.h \ 1605 $(INC)picons.h \ 1606 $(INC)pistdwdgx.h \ 1607 $(INC)pistdwdggen.h \ 1608 $(INC)pibwdgx.h \ 1609 $(INC)pibwdggen.h \ 1610 $(INC)picmap.h \ 1611 $(INC)picmapx.h \ 1612 $(INC)picmapgen.h \ 1613 $(INC)pigraphx.h \ 1614 $(INC)pigraphgen.h \ 1615 $(INC)pifontx.h \ 1616 $(INC)pifontgen.h \ 1617 $(INC)pigrcoord.h \ 1618 $(INC)pilineatt.h \ 1619 $(INC)pigraphuc.h \ 1620 $(INC)pievthandler.h \ 1621 $(INC)psfile.h \ 1622 $(INC)pigraphps.h \ 1623 $(INC)sopnamsp.h pihisto2d.h \ 1624 $(INC)pioptmenux.h \ 1625 $(INC)pioptmenugen.h \ 1626 $(INC)histos2.h \ 1627 $(INC)peida.h \ 1628 $(INC)utils.h \ 1629 $(INC)perrors.h \ 1630 $(INC)pexceptions.h \ 1631 $(INC)fmath.h \ 1632 $(INC)histos.h \ 1633 $(INC)objfio.h \ 1634 $(INC)anydataobj.h \ 1635 $(INC)ppersist.h \ 1636 $(INC)gnumd5.h \ 1637 $(INC)ppfbinstream.h \ 1638 $(INC)rawstream.h \ 1639 $(INC)ppfnametag.h \ 1640 $(INC)tvector.h \ 1641 $(INC)tmatrix.h \ 1642 $(INC)tarray.h \ 1643 $(INC)basarr.h \ 1644 $(INC)mutyv.h \ 1645 $(INC)dvlist.h \ 1646 $(INC)ndatablock.h \ 1647 $(INC)utilarr.h \ 1648 $(INC)pidrawer.h \ 1649 $(INC)pigratt.h \ 1650 $(INC)piaxes.h \ 1651 $(INC)piscdrawwdg.h \ 1652 $(INC)piwindowx.h \ 1653 $(INC)piwindowgen.h \ 1654 $(INC)pieldrw.h \ 1655 $(INC)nbrandom.h \ 1656 $(INC)srandgen.h 1657 $(OBJ)piinit.o: piinit.cc $(INC)sopnamsp.h \ 1658 $(INC)machdefs.h piinit.h \ 1659 $(INC)sambainit.h \ 1660 $(INC)skymapinit.h \ 1661 $(INC)sophyainit.h \ 1662 $(INC)ntoolsinit.h \ 1663 $(INC)tarrinit.h pistdimgapp.h \ 1664 $(INC)pisysdep.h \ 1665 $(INC)piapplx.h \ 1666 $(INC)piapplgen.h \ 1667 $(INC)pimsghandler.h \ 1668 $(INC)picontainerx.h \ 1669 $(INC)picontainergen.h \ 1670 $(INC)piwdgx.h \ 1671 $(INC)piwdggen.h \ 1672 $(INC)picolist.h \ 1673 $(INC)pimenubarx.h \ 1674 $(INC)pimenubargen.h \ 1675 $(INC)pimenux.h \ 1676 $(INC)pimenugen.h \ 1677 $(INC)picons.h \ 1678 $(INC)pistdwdgx.h \ 1679 $(INC)pistdwdggen.h \ 1680 $(INC)pibwdgx.h \ 1681 $(INC)pibwdggen.h \ 1682 $(INC)picmap.h \ 1683 $(INC)picmapx.h \ 1684 $(INC)picmapgen.h \ 1685 $(INC)pigraphx.h \ 1686 $(INC)pigraphgen.h \ 1687 $(INC)pifontx.h \ 1688 $(INC)pifontgen.h \ 1689 $(INC)pigrcoord.h \ 1690 $(INC)pilineatt.h \ 1691 $(INC)pigraphuc.h \ 1692 $(INC)pievthandler.h \ 1693 $(INC)psfile.h \ 1694 $(INC)pigraphps.h \ 1695 $(INC)piwindowx.h \ 1696 $(INC)piwindowgen.h \ 1697 $(INC)pioptmenux.h \ 1698 $(INC)pioptmenugen.h \ 1699 $(INC)pifilechox.h \ 1700 $(INC)pifilechogen.h \ 1701 $(INC)piperiodx.h \ 1702 $(INC)periodic.h \ 1703 $(INC)piimage.h \ 1704 $(INC)parradapter.h \ 1705 $(INC)lut.h \ 1706 $(INC)pieldrw.h \ 1707 $(INC)pidrawer.h \ 1708 $(INC)pigratt.h \ 1709 $(INC)piaxes.h \ 1710 $(INC)pipixmapx.h \ 1711 $(INC)pipixmapgen.h \ 1712 $(INC)picmapview.h \ 1713 $(INC)pi3dwdg.h \ 1714 $(INC)pi3ddrw.h \ 1715 $(INC)pigraph3d.h nobjmgr.h \ 1716 $(INC)anydataobj.h \ 1717 $(INC)ppersist.h \ 1718 $(INC)pexceptions.h \ 1719 $(INC)gnumd5.h \ 1720 $(INC)ppfbinstream.h \ 1721 $(INC)rawstream.h \ 1722 $(INC)ppfnametag.h \ 1723 $(INC)dvlist.h \ 1724 $(INC)objfio.h \ 1725 $(INC)mutyv.h dlftypes.h piacmd.h \ 1726 $(INC)commander.h \ 1727 $(INC)pdlmgr.h \ 1728 $(INC)ctimer.h \ 1729 $(INC)zthread.h pisiadw.h \ 1730 $(INC)pilistx.h \ 1731 $(INC)pilistgen.h \ 1732 $(INC)pistzwin.h \ 1733 $(INC)pitherm.h \ 1734 $(INC)resusage.h servnobjm.h nomhistadapter.h \ 1735 nomgadapter.h $(INC)ntupintf.h \ 1736 $(INC)generalfit.h \ 1737 $(INC)tvector.h \ 1738 $(INC)tmatrix.h \ 1739 $(INC)tarray.h \ 1740 $(INC)basarr.h \ 1741 $(INC)ndatablock.h \ 1742 $(INC)utilarr.h \ 1743 $(INC)generaldata.h \ 1744 $(INC)poly.h \ 1745 $(INC)peida.h \ 1746 $(INC)utils.h \ 1747 $(INC)perrors.h \ 1748 $(INC)fmath.h \ 1749 $(INC)histos.h \ 1750 $(INC)histos2.h \ 1751 $(INC)hisprof.h \ 1752 $(INC)histerr.h \ 1753 $(INC)ntuple.h \ 1754 $(INC)xntuple.h \ 1755 $(INC)basedtable.h \ 1756 $(INC)segdatablock.h nomgfdadapter.h \ 1757 nomimagadapter.h $(INC)cimage.h \ 1758 $(INC)fioarr.h nomtmatvecadapter.h \ 1759 nomtarradapter.h $(INC)datatable.h \ 1760 $(INC)swppfdtable.h \ 1761 $(INC)swsegdb.h \ 1762 $(INC)ppfswapper.h \ 1763 $(INC)ppftpointerio.h nomskymapadapter.h \ 1764 $(INC)pixelmap.h \ 1765 $(INC)spherepos.h \ 1766 $(INC)unitvector.h \ 1767 $(INC)vector3d.h \ 1768 $(INC)longlat.h \ 1769 $(INC)utilgeom.h \ 1770 $(INC)spherethetaphi.h \ 1771 $(INC)sphericalmap.h \ 1772 $(INC)smathconst.h \ 1773 $(INC)spherehealpix.h \ 1774 $(INC)HEALPixUtils.h \ 1775 $(INC)localmap.h \ 1776 $(INC)sphereecp.h \ 1777 $(INC)specrespvector.h \ 1778 $(INC)specresp.h \ 1779 $(INC)gaussfilt.h nomspecrespadapter.h 1780 $(OBJ)pintup3d.o: pintup3d.cc $(INC)sopnamsp.h \ 1781 pintup3d.h $(INC)ntupintf.h \ 1782 $(INC)machdefs.h \ 1783 $(INC)pi3ddrw.h \ 1784 $(INC)pisysdep.h \ 1785 $(INC)pidrawer.h \ 1786 $(INC)pibwdggen.h \ 1787 $(INC)piwdgx.h \ 1788 $(INC)piwdggen.h \ 1789 $(INC)pimsghandler.h \ 1790 $(INC)picolist.h \ 1791 $(INC)picmap.h \ 1792 $(INC)picmapx.h \ 1793 $(INC)picmapgen.h \ 1794 $(INC)pigraphx.h \ 1795 $(INC)pigraphgen.h \ 1796 $(INC)pifontx.h \ 1797 $(INC)pifontgen.h \ 1798 $(INC)pigrcoord.h \ 1799 $(INC)pilineatt.h \ 1800 $(INC)pigraphuc.h \ 1801 $(INC)pievthandler.h \ 1802 $(INC)psfile.h \ 1803 $(INC)pigratt.h \ 1804 $(INC)piaxes.h \ 1805 $(INC)pieldrw.h \ 1806 $(INC)pigraph3d.h 1807 $(OBJ)pintuple.o: pintuple.cc $(INC)sopnamsp.h \ 1808 pintuple.h $(INC)ntupintf.h \ 1809 $(INC)machdefs.h \ 1810 $(INC)pidrawer.h \ 1811 $(INC)pibwdggen.h \ 1812 $(INC)pisysdep.h \ 1813 $(INC)piwdgx.h \ 1814 $(INC)piwdggen.h \ 1815 $(INC)pimsghandler.h \ 1816 $(INC)picolist.h \ 1817 $(INC)picmap.h \ 1818 $(INC)picmapx.h \ 1819 $(INC)picmapgen.h \ 1820 $(INC)pigraphx.h \ 1821 $(INC)pigraphgen.h \ 1822 $(INC)pifontx.h \ 1823 $(INC)pifontgen.h \ 1824 $(INC)pigrcoord.h \ 1825 $(INC)pilineatt.h \ 1826 $(INC)pigraphuc.h \ 1827 $(INC)pievthandler.h \ 1828 $(INC)psfile.h \ 1829 $(INC)pigratt.h \ 1830 $(INC)piaxes.h 1831 $(OBJ)pipodrw.o: pipodrw.cc $(INC)sopnamsp.h pipodrw.h \ 1832 $(INC)machdefs.h \ 1833 $(INC)pidrawer.h \ 1834 $(INC)pibwdggen.h \ 1835 $(INC)pisysdep.h \ 1836 $(INC)piwdgx.h \ 1837 $(INC)piwdggen.h \ 1838 $(INC)pimsghandler.h \ 1839 $(INC)picolist.h \ 1840 $(INC)picmap.h \ 1841 $(INC)picmapx.h \ 1842 $(INC)picmapgen.h \ 1843 $(INC)pigraphx.h \ 1844 $(INC)pigraphgen.h \ 1845 $(INC)pifontx.h \ 1846 $(INC)pifontgen.h \ 1847 $(INC)pigrcoord.h \ 1848 $(INC)pilineatt.h \ 1849 $(INC)pigraphuc.h \ 1850 $(INC)pievthandler.h \ 1851 $(INC)psfile.h \ 1852 $(INC)pigratt.h \ 1853 $(INC)piaxes.h \ 1854 $(INC)parradapter.h \ 1855 $(INC)lut.h \ 1856 $(INC)histos2.h \ 1857 $(INC)peida.h \ 1858 $(INC)utils.h \ 1859 $(INC)perrors.h \ 1860 $(INC)pexceptions.h \ 1861 $(INC)fmath.h \ 1862 $(INC)histos.h \ 1863 $(INC)objfio.h \ 1864 $(INC)anydataobj.h \ 1865 $(INC)ppersist.h \ 1866 $(INC)gnumd5.h \ 1867 $(INC)ppfbinstream.h \ 1868 $(INC)rawstream.h \ 1869 $(INC)ppfnametag.h \ 1870 $(INC)tvector.h \ 1871 $(INC)tmatrix.h \ 1872 $(INC)tarray.h \ 1873 $(INC)basarr.h \ 1874 $(INC)mutyv.h \ 1875 $(INC)dvlist.h \ 1876 $(INC)ndatablock.h \ 1877 $(INC)utilarr.h \ 1878 $(INC)generalfit.h \ 1879 $(INC)generaldata.h \ 1880 $(INC)ntupintf.h \ 1881 $(INC)poly.h 1882 $(OBJ)pisiadw.o: pisiadw.cc $(INC)sopnamsp.h \ 1883 $(INC)machdefs.h \ 1884 $(INC)perrors.h \ 1885 $(INC)pexceptions.h \ 1886 $(INC)ctimer.h \ 1887 $(INC)nbmath.h \ 1888 $(INC)smathconst.h pistdimgapp.h \ 1889 $(INC)pisysdep.h \ 1890 $(INC)piapplx.h \ 1891 $(INC)piapplgen.h \ 1892 $(INC)pimsghandler.h \ 1893 $(INC)picontainerx.h \ 1894 $(INC)picontainergen.h \ 1895 $(INC)piwdgx.h \ 1896 $(INC)piwdggen.h \ 1897 $(INC)picolist.h \ 1898 $(INC)pimenubarx.h \ 1899 $(INC)pimenubargen.h \ 1900 $(INC)pimenux.h \ 1901 $(INC)pimenugen.h \ 1902 $(INC)picons.h \ 1903 $(INC)pistdwdgx.h \ 1904 $(INC)pistdwdggen.h \ 1905 $(INC)pibwdgx.h \ 1906 $(INC)pibwdggen.h \ 1907 $(INC)picmap.h \ 1908 $(INC)picmapx.h \ 1909 $(INC)picmapgen.h \ 1910 $(INC)pigraphx.h \ 1911 $(INC)pigraphgen.h \ 1912 $(INC)pifontx.h \ 1913 $(INC)pifontgen.h \ 1914 $(INC)pigrcoord.h \ 1915 $(INC)pilineatt.h \ 1916 $(INC)pigraphuc.h \ 1917 $(INC)pievthandler.h \ 1918 $(INC)psfile.h \ 1919 $(INC)pigraphps.h \ 1920 $(INC)piwindowx.h \ 1921 $(INC)piwindowgen.h \ 1922 $(INC)pioptmenux.h \ 1923 $(INC)pioptmenugen.h \ 1924 $(INC)pifilechox.h \ 1925 $(INC)pifilechogen.h \ 1926 $(INC)piperiodx.h \ 1927 $(INC)periodic.h \ 1928 $(INC)piimage.h \ 1929 $(INC)parradapter.h \ 1930 $(INC)lut.h \ 1931 $(INC)pieldrw.h \ 1932 $(INC)pidrawer.h \ 1933 $(INC)pigratt.h \ 1934 $(INC)piaxes.h \ 1935 $(INC)pipixmapx.h \ 1936 $(INC)pipixmapgen.h \ 1937 $(INC)picmapview.h \ 1938 $(INC)pi3dwdg.h \ 1939 $(INC)pi3ddrw.h \ 1940 $(INC)pigraph3d.h nobjmgr.h \ 1941 $(INC)anydataobj.h \ 1942 $(INC)ppersist.h \ 1943 $(INC)gnumd5.h \ 1944 $(INC)ppfbinstream.h \ 1945 $(INC)rawstream.h \ 1946 $(INC)ppfnametag.h \ 1947 $(INC)dvlist.h \ 1948 $(INC)objfio.h \ 1949 $(INC)mutyv.h dlftypes.h piacmd.h \ 1950 $(INC)commander.h \ 1951 $(INC)pdlmgr.h \ 1952 $(INC)zthread.h pisiadw.h \ 1953 $(INC)pilistx.h \ 1954 $(INC)pilistgen.h \ 1955 $(INC)pistzwin.h \ 1956 $(INC)pitherm.h \ 1957 $(INC)resusage.h servnobjm.h 1958 $(OBJ)pistdimgapp.o: pistdimgapp.cc $(INC)sopnamsp.h \ 1959 $(INC)machdefs.h \ 1960 $(INC)strutil.h \ 1961 $(INC)timing.h \ 1962 $(INC)perrors.h \ 1963 $(INC)pexceptions.h \ 1964 $(INC)ctimer.h \ 1965 $(INC)psighand.h \ 1966 $(INC)cimage.h \ 1967 $(INC)tmatrix.h \ 1968 $(INC)tarray.h \ 1969 $(INC)basarr.h \ 1970 $(INC)anydataobj.h \ 1971 $(INC)mutyv.h \ 1972 $(INC)dvlist.h \ 1973 $(INC)objfio.h \ 1974 $(INC)ppersist.h \ 1975 $(INC)gnumd5.h \ 1976 $(INC)ppfbinstream.h \ 1977 $(INC)rawstream.h \ 1978 $(INC)ppfnametag.h \ 1979 $(INC)ndatablock.h \ 1980 $(INC)utilarr.h \ 1981 $(INC)fioarr.h \ 1982 $(INC)tvector.h pistdimgapp.h \ 1983 $(INC)pisysdep.h \ 1984 $(INC)piapplx.h \ 1985 $(INC)piapplgen.h \ 1986 $(INC)pimsghandler.h \ 1987 $(INC)picontainerx.h \ 1988 $(INC)picontainergen.h \ 1989 $(INC)piwdgx.h \ 1990 $(INC)piwdggen.h \ 1991 $(INC)picolist.h \ 1992 $(INC)pimenubarx.h \ 1993 $(INC)pimenubargen.h \ 1994 $(INC)pimenux.h \ 1995 $(INC)pimenugen.h \ 1996 $(INC)picons.h \ 1997 $(INC)pistdwdgx.h \ 1998 $(INC)pistdwdggen.h \ 1999 $(INC)pibwdgx.h \ 2000 $(INC)pibwdggen.h \ 2001 $(INC)picmap.h \ 2002 $(INC)picmapx.h \ 2003 $(INC)picmapgen.h \ 2004 $(INC)pigraphx.h \ 2005 $(INC)pigraphgen.h \ 2006 $(INC)pifontx.h \ 2007 $(INC)pifontgen.h \ 2008 $(INC)pigrcoord.h \ 2009 $(INC)pilineatt.h \ 2010 $(INC)pigraphuc.h \ 2011 $(INC)pievthandler.h \ 2012 $(INC)psfile.h \ 2013 $(INC)pigraphps.h \ 2014 $(INC)piwindowx.h \ 2015 $(INC)piwindowgen.h \ 2016 $(INC)pioptmenux.h \ 2017 $(INC)pioptmenugen.h \ 2018 $(INC)pifilechox.h \ 2019 $(INC)pifilechogen.h \ 2020 $(INC)piperiodx.h \ 2021 $(INC)periodic.h \ 2022 $(INC)piimage.h \ 2023 $(INC)parradapter.h \ 2024 $(INC)lut.h \ 2025 $(INC)pieldrw.h \ 2026 $(INC)pidrawer.h \ 2027 $(INC)pigratt.h \ 2028 $(INC)piaxes.h \ 2029 $(INC)pipixmapx.h \ 2030 $(INC)pipixmapgen.h \ 2031 $(INC)picmapview.h \ 2032 $(INC)pi3dwdg.h \ 2033 $(INC)pi3ddrw.h \ 2034 $(INC)pigraph3d.h nobjmgr.h dlftypes.h \ 2035 piacmd.h $(INC)commander.h \ 2036 $(INC)pdlmgr.h \ 2037 $(INC)zthread.h pisiadw.h \ 2038 $(INC)pilistx.h \ 2039 $(INC)pilistgen.h \ 2040 $(INC)pistzwin.h \ 2041 $(INC)pitherm.h \ 2042 $(INC)resusage.h servnobjm.h \ 2043 $(INC)piimgtools.h \ 2044 $(INC)pidrwtools.h \ 2045 $(INC)piaxestools.h \ 2046 $(INC)piscdrawwdg.h piinit.h \ 2047 $(INC)sambainit.h \ 2048 $(INC)skymapinit.h \ 2049 $(INC)sophyainit.h \ 2050 $(INC)ntoolsinit.h \ 2051 $(INC)tarrinit.h \ 2052 $(INC)piversion.h piaversion.h 2053 $(OBJ)pitvmaad.o: pitvmaad.cc $(INC)sopnamsp.h \ 2054 pitvmaad.h $(INC)machdefs.h \ 2055 $(INC)parradapter.h \ 2056 $(INC)lut.h \ 2057 $(INC)tmatrix.h \ 2058 $(INC)tarray.h \ 2059 $(INC)basarr.h \ 2060 $(INC)anydataobj.h \ 2061 $(INC)mutyv.h \ 2062 $(INC)dvlist.h \ 2063 $(INC)objfio.h \ 2064 $(INC)ppersist.h \ 2065 $(INC)pexceptions.h \ 2066 $(INC)gnumd5.h \ 2067 $(INC)ppfbinstream.h \ 2068 $(INC)rawstream.h \ 2069 $(INC)ppfnametag.h \ 2070 $(INC)ndatablock.h \ 2071 $(INC)utilarr.h \ 2072 $(INC)tvector.h 2073 $(OBJ)servnobjm.o: servnobjm.cc $(INC)sopnamsp.h \ 2074 $(INC)strutil.h nobjmgr.h \ 2075 $(INC)machdefs.h \ 2076 $(INC)anydataobj.h \ 2077 $(INC)ppersist.h \ 2078 $(INC)pexceptions.h \ 2079 $(INC)gnumd5.h \ 2080 $(INC)ppfbinstream.h \ 2081 $(INC)rawstream.h \ 2082 $(INC)ppfnametag.h \ 2083 $(INC)dvlist.h \ 2084 $(INC)objfio.h \ 2085 $(INC)mutyv.h dlftypes.h servnobjm.h \ 2086 $(INC)pdlmgr.h nomgadapter.h \ 2087 $(INC)pidrawer.h \ 2088 $(INC)pibwdggen.h \ 2089 $(INC)pisysdep.h \ 2090 $(INC)piwdgx.h \ 2091 $(INC)piwdggen.h \ 2092 $(INC)pimsghandler.h \ 2093 $(INC)picolist.h \ 2094 $(INC)picmap.h \ 2095 $(INC)picmapx.h \ 2096 $(INC)picmapgen.h \ 2097 $(INC)pigraphx.h \ 2098 $(INC)pigraphgen.h \ 2099 $(INC)pifontx.h \ 2100 $(INC)pifontgen.h \ 2101 $(INC)pigrcoord.h \ 2102 $(INC)pilineatt.h \ 2103 $(INC)pigraphuc.h \ 2104 $(INC)pievthandler.h \ 2105 $(INC)psfile.h \ 2106 $(INC)pigratt.h \ 2107 $(INC)piaxes.h \ 2108 $(INC)parradapter.h \ 2109 $(INC)lut.h \ 2110 $(INC)ntupintf.h \ 2111 $(INC)generalfit.h \ 2112 $(INC)tvector.h \ 2113 $(INC)tmatrix.h \ 2114 $(INC)tarray.h \ 2115 $(INC)basarr.h \ 2116 $(INC)ndatablock.h \ 2117 $(INC)utilarr.h \ 2118 $(INC)generaldata.h \ 2119 $(INC)poly.h \ 2120 $(INC)peida.h \ 2121 $(INC)utils.h \ 2122 $(INC)perrors.h \ 2123 $(INC)fmath.h pistdimgapp.h \ 2124 $(INC)piapplx.h \ 2125 $(INC)piapplgen.h \ 2126 $(INC)picontainerx.h \ 2127 $(INC)picontainergen.h \ 2128 $(INC)pimenubarx.h \ 2129 $(INC)pimenubargen.h \ 2130 $(INC)pimenux.h \ 2131 $(INC)pimenugen.h \ 2132 $(INC)picons.h \ 2133 $(INC)pistdwdgx.h \ 2134 $(INC)pistdwdggen.h \ 2135 $(INC)pibwdgx.h \ 2136 $(INC)pigraphps.h \ 2137 $(INC)piwindowx.h \ 2138 $(INC)piwindowgen.h \ 2139 $(INC)pioptmenux.h \ 2140 $(INC)pioptmenugen.h \ 2141 $(INC)pifilechox.h \ 2142 $(INC)pifilechogen.h \ 2143 $(INC)piperiodx.h \ 2144 $(INC)periodic.h \ 2145 $(INC)piimage.h \ 2146 $(INC)pieldrw.h \ 2147 $(INC)pipixmapx.h \ 2148 $(INC)pipixmapgen.h \ 2149 $(INC)picmapview.h \ 2150 $(INC)pi3dwdg.h \ 2151 $(INC)pi3ddrw.h \ 2152 $(INC)pigraph3d.h piacmd.h \ 2153 $(INC)commander.h \ 2154 $(INC)ctimer.h \ 2155 $(INC)zthread.h pisiadw.h \ 2156 $(INC)pilistx.h \ 2157 $(INC)pilistgen.h \ 2158 $(INC)pistzwin.h \ 2159 $(INC)pitherm.h \ 2160 $(INC)resusage.h \ 2161 $(INC)fct1dfit.h \ 2162 $(INC)fct2dfit.h pitvmaad.h \ 2163 $(INC)ntuple.h \ 2164 $(INC)cimage.h \ 2165 $(INC)fioarr.h \ 2166 $(INC)histos.h \ 2167 $(INC)histos2.h \ 2168 $(INC)hisprof.h \ 2169 $(INC)piyfxdrw.h \ 2170 $(INC)pisurfdr.h pintuple.h pintup3d.h \ 2171 pipodrw.h 6 rm -f $(SOPHYAOBJP)basexecut.o $(SOPHYAOBJP)contmodex.o $(SOPHYAOBJP)cxxexecutor.o $(SOPHYAOBJP)cxxexecwin.o $(SOPHYAOBJP)flowmodex.o $(SOPHYAOBJP)nobjmgr.o $(SOPHYAOBJP)nomgadapter.o $(SOPHYAOBJP)nomgfdadapter.o $(SOPHYAOBJP)nomhistadapter.o $(SOPHYAOBJP)nomimagadapter.o $(SOPHYAOBJP)nommatvecadapter.o $(SOPHYAOBJP)nomskymapadapter.o $(SOPHYAOBJP)nomspecrespadapter.o $(SOPHYAOBJP)nomstladapter.o $(SOPHYAOBJP)nomtarradapter.o $(SOPHYAOBJP)nomtmatvecadapter.o $(SOPHYAOBJP)pawexecut.o $(SOPHYAOBJP)pi2dvec.o $(SOPHYAOBJP)piacmd.o $(SOPHYAOBJP)piafitting.o $(SOPHYAOBJP)pigfd1.o $(SOPHYAOBJP)pigfd2.o $(SOPHYAOBJP)pihisto2d.o $(SOPHYAOBJP)pihisto.o $(SOPHYAOBJP)piinit.o $(SOPHYAOBJP)pintup3d.o $(SOPHYAOBJP)pintuple.o $(SOPHYAOBJP)pipodrw.o $(SOPHYAOBJP)pisiadw.o $(SOPHYAOBJP)pistdimgapp.o $(SOPHYAOBJP)pistlist.o $(SOPHYAOBJP)pitvmaad.o $(SOPHYAOBJP)servnobjm.o $(SOPHYAOBJP)userfitfunex.o 7 rm -f $(SOPHYALIBP)libPIext.a 8 9 $(SOPHYALIBP)libPIext.a : $(SOPHYAOBJP)basexecut.o $(SOPHYAOBJP)contmodex.o $(SOPHYAOBJP)cxxexecutor.o $(SOPHYAOBJP)cxxexecwin.o $(SOPHYAOBJP)flowmodex.o $(SOPHYAOBJP)nobjmgr.o $(SOPHYAOBJP)nomgadapter.o $(SOPHYAOBJP)nomgfdadapter.o $(SOPHYAOBJP)nomhistadapter.o $(SOPHYAOBJP)nomimagadapter.o $(SOPHYAOBJP)nomskymapadapter.o $(SOPHYAOBJP)nomspecrespadapter.o $(SOPHYAOBJP)nomtarradapter.o $(SOPHYAOBJP)nomtmatvecadapter.o $(SOPHYAOBJP)pawexecut.o $(SOPHYAOBJP)pi2dvec.o $(SOPHYAOBJP)piacmd.o $(SOPHYAOBJP)piafitting.o $(SOPHYAOBJP)pigfd1.o $(SOPHYAOBJP)pigfd2.o $(SOPHYAOBJP)pihisto2d.o $(SOPHYAOBJP)pihisto.o $(SOPHYAOBJP)piinit.o $(SOPHYAOBJP)pintup3d.o $(SOPHYAOBJP)pintuple.o $(SOPHYAOBJP)pipodrw.o $(SOPHYAOBJP)pisiadw.o $(SOPHYAOBJP)pistdimgapp.o $(SOPHYAOBJP)pitvmaad.o $(SOPHYAOBJP)servnobjm.o 10 $(AR) $(ARFLAGS) $@ $? 11 12 $(SOPHYAOBJP)basexecut.o: basexecut.cc \ 13 $(SOPHYAINCP)sopnamsp.h piacmd.h \ 14 $(SOPHYAINCP)machdefs.h \ 15 $(SOPHYAINCP)commander.h \ 16 $(SOPHYAINCP)pdlmgr.h \ 17 $(SOPHYAINCP)dvlist.h \ 18 $(SOPHYAINCP)objfio.h \ 19 $(SOPHYAINCP)anydataobj.h \ 20 $(SOPHYAINCP)ppersist.h \ 21 $(SOPHYAINCP)pexceptions.h \ 22 $(SOPHYAINCP)gnumd5.h \ 23 $(SOPHYAINCP)ppfbinstream.h \ 24 $(SOPHYAINCP)rawstream.h \ 25 $(SOPHYAINCP)ppfnametag.h \ 26 $(SOPHYAINCP)mutyv.h \ 27 $(SOPHYAINCP)ctimer.h \ 28 $(SOPHYAINCP)zthread.h dlftypes.h \ 29 basexecut.h $(SOPHYAINCP)strutilxx.h \ 30 pistdimgapp.h $(SOPHYAINCP)pisysdep.h \ 31 $(SOPHYAINCP)piapplx.h \ 32 $(SOPHYAINCP)piapplgen.h \ 33 $(SOPHYAINCP)pimsghandler.h \ 34 $(SOPHYAINCP)picontainerx.h \ 35 $(SOPHYAINCP)picontainergen.h \ 36 $(SOPHYAINCP)piwdgx.h \ 37 $(SOPHYAINCP)piwdggen.h \ 38 $(SOPHYAINCP)picolist.h \ 39 $(SOPHYAINCP)pimenubarx.h \ 40 $(SOPHYAINCP)pimenubargen.h \ 41 $(SOPHYAINCP)pimenux.h \ 42 $(SOPHYAINCP)pimenugen.h \ 43 $(SOPHYAINCP)picons.h \ 44 $(SOPHYAINCP)pistdwdgx.h \ 45 $(SOPHYAINCP)pistdwdggen.h \ 46 $(SOPHYAINCP)pibwdgx.h \ 47 $(SOPHYAINCP)pibwdggen.h \ 48 $(SOPHYAINCP)picmap.h \ 49 $(SOPHYAINCP)picmapx.h \ 50 $(SOPHYAINCP)picmapgen.h \ 51 $(SOPHYAINCP)pigraphx.h \ 52 $(SOPHYAINCP)pigraphgen.h \ 53 $(SOPHYAINCP)pifontx.h \ 54 $(SOPHYAINCP)pifontgen.h \ 55 $(SOPHYAINCP)pigrcoord.h \ 56 $(SOPHYAINCP)pilineatt.h \ 57 $(SOPHYAINCP)pigraphuc.h \ 58 $(SOPHYAINCP)pievthandler.h \ 59 $(SOPHYAINCP)psfile.h \ 60 $(SOPHYAINCP)pigraphps.h \ 61 $(SOPHYAINCP)piwindowx.h \ 62 $(SOPHYAINCP)piwindowgen.h \ 63 $(SOPHYAINCP)pioptmenux.h \ 64 $(SOPHYAINCP)pioptmenugen.h \ 65 $(SOPHYAINCP)pifilechox.h \ 66 $(SOPHYAINCP)pifilechogen.h \ 67 $(SOPHYAINCP)piperiodx.h \ 68 $(SOPHYAINCP)periodic.h \ 69 $(SOPHYAINCP)piimage.h \ 70 $(SOPHYAINCP)parradapter.h \ 71 $(SOPHYAINCP)lut.h \ 72 $(SOPHYAINCP)pieldrw.h \ 73 $(SOPHYAINCP)pidrawer.h \ 74 $(SOPHYAINCP)pigratt.h \ 75 $(SOPHYAINCP)piaxes.h \ 76 $(SOPHYAINCP)pipixmapx.h \ 77 $(SOPHYAINCP)pipixmapgen.h \ 78 $(SOPHYAINCP)picmapview.h \ 79 $(SOPHYAINCP)pi3dwdg.h \ 80 $(SOPHYAINCP)pi3ddrw.h \ 81 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 82 pisiadw.h $(SOPHYAINCP)pilistx.h \ 83 $(SOPHYAINCP)pilistgen.h \ 84 $(SOPHYAINCP)pistzwin.h \ 85 $(SOPHYAINCP)pitherm.h \ 86 $(SOPHYAINCP)resusage.h servnobjm.h \ 87 nomgadapter.h $(SOPHYAINCP)ntupintf.h \ 88 $(SOPHYAINCP)generalfit.h \ 89 $(SOPHYAINCP)tvector.h \ 90 $(SOPHYAINCP)tmatrix.h \ 91 $(SOPHYAINCP)tarray.h \ 92 $(SOPHYAINCP)basarr.h \ 93 $(SOPHYAINCP)ndatablock.h \ 94 $(SOPHYAINCP)utilarr.h \ 95 $(SOPHYAINCP)generaldata.h \ 96 $(SOPHYAINCP)poly.h \ 97 $(SOPHYAINCP)peida.h \ 98 $(SOPHYAINCP)utils.h \ 99 $(SOPHYAINCP)perrors.h \ 100 $(SOPHYAINCP)fmath.h \ 101 $(SOPHYAINCP)piyfxdrw.h \ 102 $(SOPHYAINCP)pibargraph.h \ 103 $(SOPHYAINCP)pitxtdrw.h \ 104 $(SOPHYAINCP)histos.h \ 105 $(SOPHYAINCP)histos2.h \ 106 $(SOPHYAINCP)hisprof.h \ 107 $(SOPHYAINCP)ntuple.h 108 $(CXXCOMPILE) -o $@ $< 109 110 $(SOPHYAOBJP)contmodex.o: contmodex.cc \ 111 $(SOPHYAINCP)sopnamsp.h contmodex.h \ 112 $(SOPHYAINCP)machdefs.h piacmd.h \ 113 $(SOPHYAINCP)commander.h \ 114 $(SOPHYAINCP)pdlmgr.h \ 115 $(SOPHYAINCP)dvlist.h \ 116 $(SOPHYAINCP)objfio.h \ 117 $(SOPHYAINCP)anydataobj.h \ 118 $(SOPHYAINCP)ppersist.h \ 119 $(SOPHYAINCP)pexceptions.h \ 120 $(SOPHYAINCP)gnumd5.h \ 121 $(SOPHYAINCP)ppfbinstream.h \ 122 $(SOPHYAINCP)rawstream.h \ 123 $(SOPHYAINCP)ppfnametag.h \ 124 $(SOPHYAINCP)mutyv.h \ 125 $(SOPHYAINCP)ctimer.h \ 126 $(SOPHYAINCP)zthread.h dlftypes.h \ 127 nobjmgr.h $(SOPHYAINCP)pigncont.h \ 128 $(SOPHYAINCP)pistdimgapp.h \ 129 $(SOPHYAINCP)pisysdep.h \ 130 $(SOPHYAINCP)piapplx.h \ 131 $(SOPHYAINCP)piapplgen.h \ 132 $(SOPHYAINCP)pimsghandler.h \ 133 $(SOPHYAINCP)picontainerx.h \ 134 $(SOPHYAINCP)picontainergen.h \ 135 $(SOPHYAINCP)piwdgx.h \ 136 $(SOPHYAINCP)piwdggen.h \ 137 $(SOPHYAINCP)picolist.h \ 138 $(SOPHYAINCP)pimenubarx.h \ 139 $(SOPHYAINCP)pimenubargen.h \ 140 $(SOPHYAINCP)pimenux.h \ 141 $(SOPHYAINCP)pimenugen.h \ 142 $(SOPHYAINCP)picons.h \ 143 $(SOPHYAINCP)pistdwdgx.h \ 144 $(SOPHYAINCP)pistdwdggen.h \ 145 $(SOPHYAINCP)pibwdgx.h \ 146 $(SOPHYAINCP)pibwdggen.h \ 147 $(SOPHYAINCP)picmap.h \ 148 $(SOPHYAINCP)picmapx.h \ 149 $(SOPHYAINCP)picmapgen.h \ 150 $(SOPHYAINCP)pigraphx.h \ 151 $(SOPHYAINCP)pigraphgen.h \ 152 $(SOPHYAINCP)pifontx.h \ 153 $(SOPHYAINCP)pifontgen.h \ 154 $(SOPHYAINCP)pigrcoord.h \ 155 $(SOPHYAINCP)pilineatt.h \ 156 $(SOPHYAINCP)pigraphuc.h \ 157 $(SOPHYAINCP)pievthandler.h \ 158 $(SOPHYAINCP)psfile.h \ 159 $(SOPHYAINCP)pigraphps.h \ 160 $(SOPHYAINCP)piwindowx.h \ 161 $(SOPHYAINCP)piwindowgen.h \ 162 $(SOPHYAINCP)pioptmenux.h \ 163 $(SOPHYAINCP)pioptmenugen.h \ 164 $(SOPHYAINCP)pifilechox.h \ 165 $(SOPHYAINCP)pifilechogen.h \ 166 $(SOPHYAINCP)piperiodx.h \ 167 $(SOPHYAINCP)periodic.h \ 168 $(SOPHYAINCP)piimage.h \ 169 $(SOPHYAINCP)parradapter.h \ 170 $(SOPHYAINCP)lut.h \ 171 $(SOPHYAINCP)pieldrw.h \ 172 $(SOPHYAINCP)pidrawer.h \ 173 $(SOPHYAINCP)pigratt.h \ 174 $(SOPHYAINCP)piaxes.h \ 175 $(SOPHYAINCP)pipixmapx.h \ 176 $(SOPHYAINCP)pipixmapgen.h \ 177 $(SOPHYAINCP)picmapview.h \ 178 $(SOPHYAINCP)pi3dwdg.h \ 179 $(SOPHYAINCP)pi3ddrw.h \ 180 $(SOPHYAINCP)pigraph3d.h \ 181 $(SOPHYAINCP)nobjmgr.h \ 182 $(SOPHYAINCP)piacmd.h \ 183 $(SOPHYAINCP)pisiadw.h \ 184 $(SOPHYAINCP)pilistx.h \ 185 $(SOPHYAINCP)pilistgen.h \ 186 $(SOPHYAINCP)pistzwin.h \ 187 $(SOPHYAINCP)pitherm.h \ 188 $(SOPHYAINCP)resusage.h \ 189 $(SOPHYAINCP)piscdrawwdg.h \ 190 $(SOPHYAINCP)ntuple.h \ 191 $(SOPHYAINCP)ntupintf.h \ 192 $(SOPHYAINCP)gp_contour.h \ 193 $(SOPHYAINCP)gp_types.h \ 194 $(SOPHYAINCP)gpc_misc.h \ 195 $(SOPHYAINCP)gp_dynarray.h \ 196 $(SOPHYAINCP)gp_graph3d.h \ 197 $(SOPHYAINCP)gp_alloc.h nomgadapter.h \ 198 $(SOPHYAINCP)generalfit.h \ 199 $(SOPHYAINCP)tvector.h \ 200 $(SOPHYAINCP)tmatrix.h \ 201 $(SOPHYAINCP)tarray.h \ 202 $(SOPHYAINCP)basarr.h \ 203 $(SOPHYAINCP)ndatablock.h \ 204 $(SOPHYAINCP)utilarr.h \ 205 $(SOPHYAINCP)generaldata.h \ 206 $(SOPHYAINCP)poly.h \ 207 $(SOPHYAINCP)peida.h \ 208 $(SOPHYAINCP)utils.h \ 209 $(SOPHYAINCP)perrors.h \ 210 $(SOPHYAINCP)fmath.h servnobjm.h 211 $(CXXCOMPILE) -o $@ $< 212 213 $(SOPHYAOBJP)cxxexecutor.o: cxxexecutor.cc \ 214 $(SOPHYAINCP)sopnamsp.h cxxexecutor.h \ 215 $(SOPHYAINCP)machdefs.h piacmd.h \ 216 $(SOPHYAINCP)commander.h \ 217 $(SOPHYAINCP)pdlmgr.h \ 218 $(SOPHYAINCP)dvlist.h \ 219 $(SOPHYAINCP)objfio.h \ 220 $(SOPHYAINCP)anydataobj.h \ 221 $(SOPHYAINCP)ppersist.h \ 222 $(SOPHYAINCP)pexceptions.h \ 223 $(SOPHYAINCP)gnumd5.h \ 224 $(SOPHYAINCP)ppfbinstream.h \ 225 $(SOPHYAINCP)rawstream.h \ 226 $(SOPHYAINCP)ppfnametag.h \ 227 $(SOPHYAINCP)mutyv.h \ 228 $(SOPHYAINCP)ctimer.h \ 229 $(SOPHYAINCP)zthread.h dlftypes.h \ 230 nobjmgr.h $(SOPHYAINCP)strutilxx.h \ 231 $(SOPHYAINCP)cxxcmplnk.h nomgadapter.h \ 232 $(SOPHYAINCP)pidrawer.h \ 233 $(SOPHYAINCP)pibwdggen.h \ 234 $(SOPHYAINCP)pisysdep.h \ 235 $(SOPHYAINCP)piwdgx.h \ 236 $(SOPHYAINCP)piwdggen.h \ 237 $(SOPHYAINCP)pimsghandler.h \ 238 $(SOPHYAINCP)picolist.h \ 239 $(SOPHYAINCP)picmap.h \ 240 $(SOPHYAINCP)picmapx.h \ 241 $(SOPHYAINCP)picmapgen.h \ 242 $(SOPHYAINCP)pigraphx.h \ 243 $(SOPHYAINCP)pigraphgen.h \ 244 $(SOPHYAINCP)pifontx.h \ 245 $(SOPHYAINCP)pifontgen.h \ 246 $(SOPHYAINCP)pigrcoord.h \ 247 $(SOPHYAINCP)pilineatt.h \ 248 $(SOPHYAINCP)pigraphuc.h \ 249 $(SOPHYAINCP)pievthandler.h \ 250 $(SOPHYAINCP)psfile.h \ 251 $(SOPHYAINCP)pigratt.h \ 252 $(SOPHYAINCP)piaxes.h \ 253 $(SOPHYAINCP)parradapter.h \ 254 $(SOPHYAINCP)lut.h \ 255 $(SOPHYAINCP)ntupintf.h \ 256 $(SOPHYAINCP)generalfit.h \ 257 $(SOPHYAINCP)tvector.h \ 258 $(SOPHYAINCP)tmatrix.h \ 259 $(SOPHYAINCP)tarray.h \ 260 $(SOPHYAINCP)basarr.h \ 261 $(SOPHYAINCP)ndatablock.h \ 262 $(SOPHYAINCP)utilarr.h \ 263 $(SOPHYAINCP)generaldata.h \ 264 $(SOPHYAINCP)poly.h \ 265 $(SOPHYAINCP)peida.h \ 266 $(SOPHYAINCP)utils.h \ 267 $(SOPHYAINCP)perrors.h \ 268 $(SOPHYAINCP)fmath.h pistdimgapp.h \ 269 $(SOPHYAINCP)piapplx.h \ 270 $(SOPHYAINCP)piapplgen.h \ 271 $(SOPHYAINCP)picontainerx.h \ 272 $(SOPHYAINCP)picontainergen.h \ 273 $(SOPHYAINCP)pimenubarx.h \ 274 $(SOPHYAINCP)pimenubargen.h \ 275 $(SOPHYAINCP)pimenux.h \ 276 $(SOPHYAINCP)pimenugen.h \ 277 $(SOPHYAINCP)picons.h \ 278 $(SOPHYAINCP)pistdwdgx.h \ 279 $(SOPHYAINCP)pistdwdggen.h \ 280 $(SOPHYAINCP)pibwdgx.h \ 281 $(SOPHYAINCP)pigraphps.h \ 282 $(SOPHYAINCP)piwindowx.h \ 283 $(SOPHYAINCP)piwindowgen.h \ 284 $(SOPHYAINCP)pioptmenux.h \ 285 $(SOPHYAINCP)pioptmenugen.h \ 286 $(SOPHYAINCP)pifilechox.h \ 287 $(SOPHYAINCP)pifilechogen.h \ 288 $(SOPHYAINCP)piperiodx.h \ 289 $(SOPHYAINCP)periodic.h \ 290 $(SOPHYAINCP)piimage.h \ 291 $(SOPHYAINCP)pieldrw.h \ 292 $(SOPHYAINCP)pipixmapx.h \ 293 $(SOPHYAINCP)pipixmapgen.h \ 294 $(SOPHYAINCP)picmapview.h \ 295 $(SOPHYAINCP)pi3dwdg.h \ 296 $(SOPHYAINCP)pi3ddrw.h \ 297 $(SOPHYAINCP)pigraph3d.h pisiadw.h \ 298 $(SOPHYAINCP)pilistx.h \ 299 $(SOPHYAINCP)pilistgen.h \ 300 $(SOPHYAINCP)pistzwin.h \ 301 $(SOPHYAINCP)pitherm.h \ 302 $(SOPHYAINCP)resusage.h 303 $(CXXCOMPILE) -o $@ $< 304 305 $(SOPHYAOBJP)cxxexecwin.o: cxxexecwin.cc \ 306 $(SOPHYAINCP)sopnamsp.h cxxexecutor.h \ 307 $(SOPHYAINCP)machdefs.h piacmd.h \ 308 $(SOPHYAINCP)commander.h \ 309 $(SOPHYAINCP)pdlmgr.h \ 310 $(SOPHYAINCP)dvlist.h \ 311 $(SOPHYAINCP)objfio.h \ 312 $(SOPHYAINCP)anydataobj.h \ 313 $(SOPHYAINCP)ppersist.h \ 314 $(SOPHYAINCP)pexceptions.h \ 315 $(SOPHYAINCP)gnumd5.h \ 316 $(SOPHYAINCP)ppfbinstream.h \ 317 $(SOPHYAINCP)rawstream.h \ 318 $(SOPHYAINCP)ppfnametag.h \ 319 $(SOPHYAINCP)mutyv.h \ 320 $(SOPHYAINCP)ctimer.h \ 321 $(SOPHYAINCP)zthread.h dlftypes.h \ 322 nobjmgr.h cxxexecwin.h \ 323 $(SOPHYAINCP)pisysdep.h pistdimgapp.h \ 324 $(SOPHYAINCP)piapplx.h \ 325 $(SOPHYAINCP)piapplgen.h \ 326 $(SOPHYAINCP)pimsghandler.h \ 327 $(SOPHYAINCP)picontainerx.h \ 328 $(SOPHYAINCP)picontainergen.h \ 329 $(SOPHYAINCP)piwdgx.h \ 330 $(SOPHYAINCP)piwdggen.h \ 331 $(SOPHYAINCP)picolist.h \ 332 $(SOPHYAINCP)pimenubarx.h \ 333 $(SOPHYAINCP)pimenubargen.h \ 334 $(SOPHYAINCP)pimenux.h \ 335 $(SOPHYAINCP)pimenugen.h \ 336 $(SOPHYAINCP)picons.h \ 337 $(SOPHYAINCP)pistdwdgx.h \ 338 $(SOPHYAINCP)pistdwdggen.h \ 339 $(SOPHYAINCP)pibwdgx.h \ 340 $(SOPHYAINCP)pibwdggen.h \ 341 $(SOPHYAINCP)picmap.h \ 342 $(SOPHYAINCP)picmapx.h \ 343 $(SOPHYAINCP)picmapgen.h \ 344 $(SOPHYAINCP)pigraphx.h \ 345 $(SOPHYAINCP)pigraphgen.h \ 346 $(SOPHYAINCP)pifontx.h \ 347 $(SOPHYAINCP)pifontgen.h \ 348 $(SOPHYAINCP)pigrcoord.h \ 349 $(SOPHYAINCP)pilineatt.h \ 350 $(SOPHYAINCP)pigraphuc.h \ 351 $(SOPHYAINCP)pievthandler.h \ 352 $(SOPHYAINCP)psfile.h \ 353 $(SOPHYAINCP)pigraphps.h \ 354 $(SOPHYAINCP)piwindowx.h \ 355 $(SOPHYAINCP)piwindowgen.h \ 356 $(SOPHYAINCP)pioptmenux.h \ 357 $(SOPHYAINCP)pioptmenugen.h \ 358 $(SOPHYAINCP)pifilechox.h \ 359 $(SOPHYAINCP)pifilechogen.h \ 360 $(SOPHYAINCP)piperiodx.h \ 361 $(SOPHYAINCP)periodic.h \ 362 $(SOPHYAINCP)piimage.h \ 363 $(SOPHYAINCP)parradapter.h \ 364 $(SOPHYAINCP)lut.h \ 365 $(SOPHYAINCP)pieldrw.h \ 366 $(SOPHYAINCP)pidrawer.h \ 367 $(SOPHYAINCP)pigratt.h \ 368 $(SOPHYAINCP)piaxes.h \ 369 $(SOPHYAINCP)pipixmapx.h \ 370 $(SOPHYAINCP)pipixmapgen.h \ 371 $(SOPHYAINCP)picmapview.h \ 372 $(SOPHYAINCP)pi3dwdg.h \ 373 $(SOPHYAINCP)pi3ddrw.h \ 374 $(SOPHYAINCP)pigraph3d.h pisiadw.h \ 375 $(SOPHYAINCP)pilistx.h \ 376 $(SOPHYAINCP)pilistgen.h \ 377 $(SOPHYAINCP)pistzwin.h \ 378 $(SOPHYAINCP)pitherm.h \ 379 $(SOPHYAINCP)resusage.h 380 $(CXXCOMPILE) -o $@ $< 381 382 $(SOPHYAOBJP)flowmodex.o: flowmodex.cc \ 383 $(SOPHYAINCP)sopnamsp.h flowmodex.h \ 384 $(SOPHYAINCP)machdefs.h piacmd.h \ 385 $(SOPHYAINCP)commander.h \ 386 $(SOPHYAINCP)pdlmgr.h \ 387 $(SOPHYAINCP)dvlist.h \ 388 $(SOPHYAINCP)objfio.h \ 389 $(SOPHYAINCP)anydataobj.h \ 390 $(SOPHYAINCP)ppersist.h \ 391 $(SOPHYAINCP)pexceptions.h \ 392 $(SOPHYAINCP)gnumd5.h \ 393 $(SOPHYAINCP)ppfbinstream.h \ 394 $(SOPHYAINCP)rawstream.h \ 395 $(SOPHYAINCP)ppfnametag.h \ 396 $(SOPHYAINCP)mutyv.h \ 397 $(SOPHYAINCP)ctimer.h \ 398 $(SOPHYAINCP)zthread.h dlftypes.h \ 399 nobjmgr.h pi2dvec.h pistdimgapp.h \ 400 $(SOPHYAINCP)pisysdep.h \ 401 $(SOPHYAINCP)piapplx.h \ 402 $(SOPHYAINCP)piapplgen.h \ 403 $(SOPHYAINCP)pimsghandler.h \ 404 $(SOPHYAINCP)picontainerx.h \ 405 $(SOPHYAINCP)picontainergen.h \ 406 $(SOPHYAINCP)piwdgx.h \ 407 $(SOPHYAINCP)piwdggen.h \ 408 $(SOPHYAINCP)picolist.h \ 409 $(SOPHYAINCP)pimenubarx.h \ 410 $(SOPHYAINCP)pimenubargen.h \ 411 $(SOPHYAINCP)pimenux.h \ 412 $(SOPHYAINCP)pimenugen.h \ 413 $(SOPHYAINCP)picons.h \ 414 $(SOPHYAINCP)pistdwdgx.h \ 415 $(SOPHYAINCP)pistdwdggen.h \ 416 $(SOPHYAINCP)pibwdgx.h \ 417 $(SOPHYAINCP)pibwdggen.h \ 418 $(SOPHYAINCP)picmap.h \ 419 $(SOPHYAINCP)picmapx.h \ 420 $(SOPHYAINCP)picmapgen.h \ 421 $(SOPHYAINCP)pigraphx.h \ 422 $(SOPHYAINCP)pigraphgen.h \ 423 $(SOPHYAINCP)pifontx.h \ 424 $(SOPHYAINCP)pifontgen.h \ 425 $(SOPHYAINCP)pigrcoord.h \ 426 $(SOPHYAINCP)pilineatt.h \ 427 $(SOPHYAINCP)pigraphuc.h \ 428 $(SOPHYAINCP)pievthandler.h \ 429 $(SOPHYAINCP)psfile.h \ 430 $(SOPHYAINCP)pigraphps.h \ 431 $(SOPHYAINCP)piwindowx.h \ 432 $(SOPHYAINCP)piwindowgen.h \ 433 $(SOPHYAINCP)pioptmenux.h \ 434 $(SOPHYAINCP)pioptmenugen.h \ 435 $(SOPHYAINCP)pifilechox.h \ 436 $(SOPHYAINCP)pifilechogen.h \ 437 $(SOPHYAINCP)piperiodx.h \ 438 $(SOPHYAINCP)periodic.h \ 439 $(SOPHYAINCP)piimage.h \ 440 $(SOPHYAINCP)parradapter.h \ 441 $(SOPHYAINCP)lut.h \ 442 $(SOPHYAINCP)pieldrw.h \ 443 $(SOPHYAINCP)pidrawer.h \ 444 $(SOPHYAINCP)pigratt.h \ 445 $(SOPHYAINCP)piaxes.h \ 446 $(SOPHYAINCP)pipixmapx.h \ 447 $(SOPHYAINCP)pipixmapgen.h \ 448 $(SOPHYAINCP)picmapview.h \ 449 $(SOPHYAINCP)pi3dwdg.h \ 450 $(SOPHYAINCP)pi3ddrw.h \ 451 $(SOPHYAINCP)pigraph3d.h pisiadw.h \ 452 $(SOPHYAINCP)pilistx.h \ 453 $(SOPHYAINCP)pilistgen.h \ 454 $(SOPHYAINCP)pistzwin.h \ 455 $(SOPHYAINCP)pitherm.h \ 456 $(SOPHYAINCP)resusage.h \ 457 $(SOPHYAINCP)piscdrawwdg.h \ 458 $(SOPHYAINCP)ntupintf.h \ 459 $(SOPHYAINCP)ntuple.h nomgadapter.h \ 460 $(SOPHYAINCP)generalfit.h \ 461 $(SOPHYAINCP)tvector.h \ 462 $(SOPHYAINCP)tmatrix.h \ 463 $(SOPHYAINCP)tarray.h \ 464 $(SOPHYAINCP)basarr.h \ 465 $(SOPHYAINCP)ndatablock.h \ 466 $(SOPHYAINCP)utilarr.h \ 467 $(SOPHYAINCP)generaldata.h \ 468 $(SOPHYAINCP)poly.h \ 469 $(SOPHYAINCP)peida.h \ 470 $(SOPHYAINCP)utils.h \ 471 $(SOPHYAINCP)perrors.h \ 472 $(SOPHYAINCP)fmath.h servnobjm.h 473 $(CXXCOMPILE) -o $@ $< 474 475 $(SOPHYAOBJP)nobjmgr.o: nobjmgr.cc \ 476 $(SOPHYAINCP)sopnamsp.h \ 477 $(SOPHYAINCP)strutil.h \ 478 $(SOPHYAINCP)datatypes.h \ 479 $(SOPHYAINCP)machdefs.h nobjmgr.h \ 480 $(SOPHYAINCP)anydataobj.h \ 481 $(SOPHYAINCP)ppersist.h \ 482 $(SOPHYAINCP)pexceptions.h \ 483 $(SOPHYAINCP)gnumd5.h \ 484 $(SOPHYAINCP)ppfbinstream.h \ 485 $(SOPHYAINCP)rawstream.h \ 486 $(SOPHYAINCP)ppfnametag.h \ 487 $(SOPHYAINCP)dvlist.h \ 488 $(SOPHYAINCP)objfio.h \ 489 $(SOPHYAINCP)mutyv.h dlftypes.h \ 490 servnobjm.h $(SOPHYAINCP)pdlmgr.h \ 491 nomgadapter.h $(SOPHYAINCP)pidrawer.h \ 492 $(SOPHYAINCP)pibwdggen.h \ 493 $(SOPHYAINCP)pisysdep.h \ 494 $(SOPHYAINCP)piwdgx.h \ 495 $(SOPHYAINCP)piwdggen.h \ 496 $(SOPHYAINCP)pimsghandler.h \ 497 $(SOPHYAINCP)picolist.h \ 498 $(SOPHYAINCP)picmap.h \ 499 $(SOPHYAINCP)picmapx.h \ 500 $(SOPHYAINCP)picmapgen.h \ 501 $(SOPHYAINCP)pigraphx.h \ 502 $(SOPHYAINCP)pigraphgen.h \ 503 $(SOPHYAINCP)pifontx.h \ 504 $(SOPHYAINCP)pifontgen.h \ 505 $(SOPHYAINCP)pigrcoord.h \ 506 $(SOPHYAINCP)pilineatt.h \ 507 $(SOPHYAINCP)pigraphuc.h \ 508 $(SOPHYAINCP)pievthandler.h \ 509 $(SOPHYAINCP)psfile.h \ 510 $(SOPHYAINCP)pigratt.h \ 511 $(SOPHYAINCP)piaxes.h \ 512 $(SOPHYAINCP)parradapter.h \ 513 $(SOPHYAINCP)lut.h \ 514 $(SOPHYAINCP)ntupintf.h \ 515 $(SOPHYAINCP)generalfit.h \ 516 $(SOPHYAINCP)tvector.h \ 517 $(SOPHYAINCP)tmatrix.h \ 518 $(SOPHYAINCP)tarray.h \ 519 $(SOPHYAINCP)basarr.h \ 520 $(SOPHYAINCP)ndatablock.h \ 521 $(SOPHYAINCP)utilarr.h \ 522 $(SOPHYAINCP)generaldata.h \ 523 $(SOPHYAINCP)poly.h \ 524 $(SOPHYAINCP)peida.h \ 525 $(SOPHYAINCP)utils.h \ 526 $(SOPHYAINCP)perrors.h \ 527 $(SOPHYAINCP)fmath.h pistdimgapp.h \ 528 $(SOPHYAINCP)piapplx.h \ 529 $(SOPHYAINCP)piapplgen.h \ 530 $(SOPHYAINCP)picontainerx.h \ 531 $(SOPHYAINCP)picontainergen.h \ 532 $(SOPHYAINCP)pimenubarx.h \ 533 $(SOPHYAINCP)pimenubargen.h \ 534 $(SOPHYAINCP)pimenux.h \ 535 $(SOPHYAINCP)pimenugen.h \ 536 $(SOPHYAINCP)picons.h \ 537 $(SOPHYAINCP)pistdwdgx.h \ 538 $(SOPHYAINCP)pistdwdggen.h \ 539 $(SOPHYAINCP)pibwdgx.h \ 540 $(SOPHYAINCP)pigraphps.h \ 541 $(SOPHYAINCP)piwindowx.h \ 542 $(SOPHYAINCP)piwindowgen.h \ 543 $(SOPHYAINCP)pioptmenux.h \ 544 $(SOPHYAINCP)pioptmenugen.h \ 545 $(SOPHYAINCP)pifilechox.h \ 546 $(SOPHYAINCP)pifilechogen.h \ 547 $(SOPHYAINCP)piperiodx.h \ 548 $(SOPHYAINCP)periodic.h \ 549 $(SOPHYAINCP)piimage.h \ 550 $(SOPHYAINCP)pieldrw.h \ 551 $(SOPHYAINCP)pipixmapx.h \ 552 $(SOPHYAINCP)pipixmapgen.h \ 553 $(SOPHYAINCP)picmapview.h \ 554 $(SOPHYAINCP)pi3dwdg.h \ 555 $(SOPHYAINCP)pi3ddrw.h \ 556 $(SOPHYAINCP)pigraph3d.h piacmd.h \ 557 $(SOPHYAINCP)commander.h \ 558 $(SOPHYAINCP)ctimer.h \ 559 $(SOPHYAINCP)zthread.h pisiadw.h \ 560 $(SOPHYAINCP)pilistx.h \ 561 $(SOPHYAINCP)pilistgen.h \ 562 $(SOPHYAINCP)pistzwin.h \ 563 $(SOPHYAINCP)pitherm.h \ 564 $(SOPHYAINCP)resusage.h \ 565 $(SOPHYAINCP)fitsautoreader.h \ 566 $(SOPHYAINCP)fitsfile.h \ 567 $(SOPHYAINCP)FitsIO/fitsio.h \ 568 $(SOPHYAINCP)FitsIO/longnam.h \ 569 $(SOPHYAINCP)fitstarray.h \ 570 $(SOPHYAINCP)fitsspherehealpix.h \ 571 $(SOPHYAINCP)spherehealpix.h \ 572 $(SOPHYAINCP)sphericalmap.h \ 573 $(SOPHYAINCP)smathconst.h \ 574 $(SOPHYAINCP)pixelmap.h \ 575 $(SOPHYAINCP)spherepos.h \ 576 $(SOPHYAINCP)unitvector.h \ 577 $(SOPHYAINCP)vector3d.h \ 578 $(SOPHYAINCP)longlat.h \ 579 $(SOPHYAINCP)utilgeom.h \ 580 $(SOPHYAINCP)HEALPixUtils.h \ 581 $(SOPHYAINCP)fitsntuple.h \ 582 $(SOPHYAINCP)ntuple.h \ 583 $(SOPHYAINCP)fitsxntuple.h \ 584 $(SOPHYAINCP)xntuple.h \ 585 $(SOPHYAINCP)fitslocalmap.h \ 586 $(SOPHYAINCP)localmap.h \ 587 $(SOPHYAINCP)fbtntintf.h pitvmaad.h \ 588 $(SOPHYAINCP)piyfxdrw.h \ 589 $(SOPHYAINCP)pisurfdr.h pipodrw.h \ 590 $(SOPHYAINCP)histos2.h \ 591 $(SOPHYAINCP)histos.h pintuple.h \ 592 pintup3d.h pigfd1.h pigfd2.h 593 $(CXXCOMPILE) -o $@ $< 594 595 $(SOPHYAOBJP)nomgadapter.o: nomgadapter.cc \ 596 $(SOPHYAINCP)sopnamsp.h \ 597 $(SOPHYAINCP)machdefs.h nomgadapter.h \ 598 $(SOPHYAINCP)ppersist.h \ 599 $(SOPHYAINCP)pexceptions.h \ 600 $(SOPHYAINCP)gnumd5.h \ 601 $(SOPHYAINCP)ppfbinstream.h \ 602 $(SOPHYAINCP)rawstream.h \ 603 $(SOPHYAINCP)ppfnametag.h \ 604 $(SOPHYAINCP)anydataobj.h \ 605 $(SOPHYAINCP)pidrawer.h \ 606 $(SOPHYAINCP)pibwdggen.h \ 607 $(SOPHYAINCP)pisysdep.h \ 608 $(SOPHYAINCP)piwdgx.h \ 609 $(SOPHYAINCP)piwdggen.h \ 610 $(SOPHYAINCP)pimsghandler.h \ 611 $(SOPHYAINCP)picolist.h \ 612 $(SOPHYAINCP)picmap.h \ 613 $(SOPHYAINCP)picmapx.h \ 614 $(SOPHYAINCP)picmapgen.h \ 615 $(SOPHYAINCP)pigraphx.h \ 616 $(SOPHYAINCP)pigraphgen.h \ 617 $(SOPHYAINCP)pifontx.h \ 618 $(SOPHYAINCP)pifontgen.h \ 619 $(SOPHYAINCP)pigrcoord.h \ 620 $(SOPHYAINCP)pilineatt.h \ 621 $(SOPHYAINCP)pigraphuc.h \ 622 $(SOPHYAINCP)pievthandler.h \ 623 $(SOPHYAINCP)psfile.h \ 624 $(SOPHYAINCP)pigratt.h \ 625 $(SOPHYAINCP)piaxes.h \ 626 $(SOPHYAINCP)parradapter.h \ 627 $(SOPHYAINCP)lut.h \ 628 $(SOPHYAINCP)ntupintf.h \ 629 $(SOPHYAINCP)generalfit.h \ 630 $(SOPHYAINCP)tvector.h \ 631 $(SOPHYAINCP)tmatrix.h \ 632 $(SOPHYAINCP)tarray.h \ 633 $(SOPHYAINCP)basarr.h \ 634 $(SOPHYAINCP)mutyv.h \ 635 $(SOPHYAINCP)dvlist.h \ 636 $(SOPHYAINCP)objfio.h \ 637 $(SOPHYAINCP)ndatablock.h \ 638 $(SOPHYAINCP)utilarr.h \ 639 $(SOPHYAINCP)generaldata.h \ 640 $(SOPHYAINCP)poly.h \ 641 $(SOPHYAINCP)peida.h \ 642 $(SOPHYAINCP)utils.h \ 643 $(SOPHYAINCP)perrors.h \ 644 $(SOPHYAINCP)fmath.h 645 $(CXXCOMPILE) -o $@ $< 646 647 $(SOPHYAOBJP)nomgfdadapter.o: nomgfdadapter.cc \ 648 $(SOPHYAINCP)sopnamsp.h \ 649 $(SOPHYAINCP)machdefs.h nomgfdadapter.h \ 650 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 651 $(SOPHYAINCP)pexceptions.h \ 652 $(SOPHYAINCP)gnumd5.h \ 653 $(SOPHYAINCP)ppfbinstream.h \ 654 $(SOPHYAINCP)rawstream.h \ 655 $(SOPHYAINCP)ppfnametag.h \ 656 $(SOPHYAINCP)anydataobj.h \ 657 $(SOPHYAINCP)pidrawer.h \ 658 $(SOPHYAINCP)pibwdggen.h \ 659 $(SOPHYAINCP)pisysdep.h \ 660 $(SOPHYAINCP)piwdgx.h \ 661 $(SOPHYAINCP)piwdggen.h \ 662 $(SOPHYAINCP)pimsghandler.h \ 663 $(SOPHYAINCP)picolist.h \ 664 $(SOPHYAINCP)picmap.h \ 665 $(SOPHYAINCP)picmapx.h \ 666 $(SOPHYAINCP)picmapgen.h \ 667 $(SOPHYAINCP)pigraphx.h \ 668 $(SOPHYAINCP)pigraphgen.h \ 669 $(SOPHYAINCP)pifontx.h \ 670 $(SOPHYAINCP)pifontgen.h \ 671 $(SOPHYAINCP)pigrcoord.h \ 672 $(SOPHYAINCP)pilineatt.h \ 673 $(SOPHYAINCP)pigraphuc.h \ 674 $(SOPHYAINCP)pievthandler.h \ 675 $(SOPHYAINCP)psfile.h \ 676 $(SOPHYAINCP)pigratt.h \ 677 $(SOPHYAINCP)piaxes.h \ 678 $(SOPHYAINCP)parradapter.h \ 679 $(SOPHYAINCP)lut.h \ 680 $(SOPHYAINCP)ntupintf.h \ 681 $(SOPHYAINCP)generalfit.h \ 682 $(SOPHYAINCP)tvector.h \ 683 $(SOPHYAINCP)tmatrix.h \ 684 $(SOPHYAINCP)tarray.h \ 685 $(SOPHYAINCP)basarr.h \ 686 $(SOPHYAINCP)mutyv.h \ 687 $(SOPHYAINCP)dvlist.h \ 688 $(SOPHYAINCP)objfio.h \ 689 $(SOPHYAINCP)ndatablock.h \ 690 $(SOPHYAINCP)utilarr.h \ 691 $(SOPHYAINCP)generaldata.h \ 692 $(SOPHYAINCP)poly.h \ 693 $(SOPHYAINCP)peida.h \ 694 $(SOPHYAINCP)utils.h \ 695 $(SOPHYAINCP)perrors.h \ 696 $(SOPHYAINCP)fmath.h pipodrw.h \ 697 $(SOPHYAINCP)histos2.h \ 698 $(SOPHYAINCP)histos.h \ 699 $(SOPHYAINCP)objfitter.h \ 700 $(SOPHYAINCP)cimage.h \ 701 $(SOPHYAINCP)fioarr.h \ 702 $(SOPHYAINCP)hisprof.h 703 $(CXXCOMPILE) -o $@ $< 704 705 $(SOPHYAOBJP)nomhistadapter.o: nomhistadapter.cc \ 706 $(SOPHYAINCP)sopnamsp.h \ 707 $(SOPHYAINCP)machdefs.h nomhistadapter.h \ 708 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 709 $(SOPHYAINCP)pexceptions.h \ 710 $(SOPHYAINCP)gnumd5.h \ 711 $(SOPHYAINCP)ppfbinstream.h \ 712 $(SOPHYAINCP)rawstream.h \ 713 $(SOPHYAINCP)ppfnametag.h \ 714 $(SOPHYAINCP)anydataobj.h \ 715 $(SOPHYAINCP)pidrawer.h \ 716 $(SOPHYAINCP)pibwdggen.h \ 717 $(SOPHYAINCP)pisysdep.h \ 718 $(SOPHYAINCP)piwdgx.h \ 719 $(SOPHYAINCP)piwdggen.h \ 720 $(SOPHYAINCP)pimsghandler.h \ 721 $(SOPHYAINCP)picolist.h \ 722 $(SOPHYAINCP)picmap.h \ 723 $(SOPHYAINCP)picmapx.h \ 724 $(SOPHYAINCP)picmapgen.h \ 725 $(SOPHYAINCP)pigraphx.h \ 726 $(SOPHYAINCP)pigraphgen.h \ 727 $(SOPHYAINCP)pifontx.h \ 728 $(SOPHYAINCP)pifontgen.h \ 729 $(SOPHYAINCP)pigrcoord.h \ 730 $(SOPHYAINCP)pilineatt.h \ 731 $(SOPHYAINCP)pigraphuc.h \ 732 $(SOPHYAINCP)pievthandler.h \ 733 $(SOPHYAINCP)psfile.h \ 734 $(SOPHYAINCP)pigratt.h \ 735 $(SOPHYAINCP)piaxes.h \ 736 $(SOPHYAINCP)parradapter.h \ 737 $(SOPHYAINCP)lut.h \ 738 $(SOPHYAINCP)ntupintf.h \ 739 $(SOPHYAINCP)generalfit.h \ 740 $(SOPHYAINCP)tvector.h \ 741 $(SOPHYAINCP)tmatrix.h \ 742 $(SOPHYAINCP)tarray.h \ 743 $(SOPHYAINCP)basarr.h \ 744 $(SOPHYAINCP)mutyv.h \ 745 $(SOPHYAINCP)dvlist.h \ 746 $(SOPHYAINCP)objfio.h \ 747 $(SOPHYAINCP)ndatablock.h \ 748 $(SOPHYAINCP)utilarr.h \ 749 $(SOPHYAINCP)generaldata.h \ 750 $(SOPHYAINCP)poly.h \ 751 $(SOPHYAINCP)peida.h \ 752 $(SOPHYAINCP)utils.h \ 753 $(SOPHYAINCP)perrors.h \ 754 $(SOPHYAINCP)fmath.h \ 755 $(SOPHYAINCP)histos.h \ 756 $(SOPHYAINCP)histos2.h \ 757 $(SOPHYAINCP)hisprof.h \ 758 $(SOPHYAINCP)histerr.h \ 759 $(SOPHYAINCP)ntuple.h \ 760 $(SOPHYAINCP)xntuple.h \ 761 $(SOPHYAINCP)basedtable.h \ 762 $(SOPHYAINCP)segdatablock.h pihisto.h \ 763 pihisto2d.h $(SOPHYAINCP)pimenux.h \ 764 $(SOPHYAINCP)pimenugen.h \ 765 $(SOPHYAINCP)pimenubarx.h \ 766 $(SOPHYAINCP)pimenubargen.h \ 767 $(SOPHYAINCP)pioptmenux.h \ 768 $(SOPHYAINCP)pioptmenugen.h \ 769 $(SOPHYAINCP)pistdwdgx.h \ 770 $(SOPHYAINCP)pistdwdggen.h \ 771 $(SOPHYAINCP)piscdrawwdg.h \ 772 $(SOPHYAINCP)pibwdgx.h \ 773 $(SOPHYAINCP)pigraphps.h \ 774 $(SOPHYAINCP)piwindowx.h \ 775 $(SOPHYAINCP)piwindowgen.h \ 776 $(SOPHYAINCP)picontainerx.h \ 777 $(SOPHYAINCP)picontainergen.h \ 778 $(SOPHYAINCP)pieldrw.h pipodrw.h \ 779 servnobjm.h nobjmgr.h dlftypes.h \ 780 $(SOPHYAINCP)pdlmgr.h \ 781 $(SOPHYAINCP)objfitter.h \ 782 $(SOPHYAINCP)cimage.h \ 783 $(SOPHYAINCP)fioarr.h \ 784 $(SOPHYAINCP)fitsntuple.h \ 785 $(SOPHYAINCP)fitsfile.h \ 786 $(SOPHYAINCP)FitsIO/fitsio.h \ 787 $(SOPHYAINCP)FitsIO/longnam.h \ 788 $(SOPHYAINCP)fitsxntuple.h \ 789 $(SOPHYAINCP)datatable.h \ 790 $(SOPHYAINCP)swppfdtable.h \ 791 $(SOPHYAINCP)swsegdb.h \ 792 $(SOPHYAINCP)ppfswapper.h \ 793 $(SOPHYAINCP)ppftpointerio.h 794 $(CXXCOMPILE) -o $@ $< 795 796 $(SOPHYAOBJP)nomimagadapter.o: nomimagadapter.cc \ 797 $(SOPHYAINCP)sopnamsp.h \ 798 $(SOPHYAINCP)machdefs.h \ 799 $(SOPHYAINCP)datatype.h nomimagadapter.h \ 800 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 801 $(SOPHYAINCP)pexceptions.h \ 802 $(SOPHYAINCP)gnumd5.h \ 803 $(SOPHYAINCP)ppfbinstream.h \ 804 $(SOPHYAINCP)rawstream.h \ 805 $(SOPHYAINCP)ppfnametag.h \ 806 $(SOPHYAINCP)anydataobj.h \ 807 $(SOPHYAINCP)pidrawer.h \ 808 $(SOPHYAINCP)pibwdggen.h \ 809 $(SOPHYAINCP)pisysdep.h \ 810 $(SOPHYAINCP)piwdgx.h \ 811 $(SOPHYAINCP)piwdggen.h \ 812 $(SOPHYAINCP)pimsghandler.h \ 813 $(SOPHYAINCP)picolist.h \ 814 $(SOPHYAINCP)picmap.h \ 815 $(SOPHYAINCP)picmapx.h \ 816 $(SOPHYAINCP)picmapgen.h \ 817 $(SOPHYAINCP)pigraphx.h \ 818 $(SOPHYAINCP)pigraphgen.h \ 819 $(SOPHYAINCP)pifontx.h \ 820 $(SOPHYAINCP)pifontgen.h \ 821 $(SOPHYAINCP)pigrcoord.h \ 822 $(SOPHYAINCP)pilineatt.h \ 823 $(SOPHYAINCP)pigraphuc.h \ 824 $(SOPHYAINCP)pievthandler.h \ 825 $(SOPHYAINCP)psfile.h \ 826 $(SOPHYAINCP)pigratt.h \ 827 $(SOPHYAINCP)piaxes.h \ 828 $(SOPHYAINCP)parradapter.h \ 829 $(SOPHYAINCP)lut.h \ 830 $(SOPHYAINCP)ntupintf.h \ 831 $(SOPHYAINCP)generalfit.h \ 832 $(SOPHYAINCP)tvector.h \ 833 $(SOPHYAINCP)tmatrix.h \ 834 $(SOPHYAINCP)tarray.h \ 835 $(SOPHYAINCP)basarr.h \ 836 $(SOPHYAINCP)mutyv.h \ 837 $(SOPHYAINCP)dvlist.h \ 838 $(SOPHYAINCP)objfio.h \ 839 $(SOPHYAINCP)ndatablock.h \ 840 $(SOPHYAINCP)utilarr.h \ 841 $(SOPHYAINCP)generaldata.h \ 842 $(SOPHYAINCP)poly.h \ 843 $(SOPHYAINCP)peida.h \ 844 $(SOPHYAINCP)utils.h \ 845 $(SOPHYAINCP)perrors.h \ 846 $(SOPHYAINCP)fmath.h \ 847 $(SOPHYAINCP)cimage.h \ 848 $(SOPHYAINCP)fioarr.h pimgadapter.h \ 849 $(SOPHYAINCP)objfitter.h \ 850 $(SOPHYAINCP)histos.h \ 851 $(SOPHYAINCP)histos2.h \ 852 $(SOPHYAINCP)hisprof.h \ 853 $(SOPHYAINCP)fitstarray.h \ 854 $(SOPHYAINCP)fitsfile.h \ 855 $(SOPHYAINCP)FitsIO/fitsio.h \ 856 $(SOPHYAINCP)FitsIO/longnam.h 857 $(CXXCOMPILE) -o $@ $< 858 859 $(SOPHYAOBJP)nomskymapadapter.o: nomskymapadapter.cc \ 860 $(SOPHYAINCP)sopnamsp.h \ 861 $(SOPHYAINCP)machdefs.h \ 862 $(SOPHYAINCP)datatype.h nomskymapadapter.h \ 863 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 864 $(SOPHYAINCP)pexceptions.h \ 865 $(SOPHYAINCP)gnumd5.h \ 866 $(SOPHYAINCP)ppfbinstream.h \ 867 $(SOPHYAINCP)rawstream.h \ 868 $(SOPHYAINCP)ppfnametag.h \ 869 $(SOPHYAINCP)anydataobj.h \ 870 $(SOPHYAINCP)pidrawer.h \ 871 $(SOPHYAINCP)pibwdggen.h \ 872 $(SOPHYAINCP)pisysdep.h \ 873 $(SOPHYAINCP)piwdgx.h \ 874 $(SOPHYAINCP)piwdggen.h \ 875 $(SOPHYAINCP)pimsghandler.h \ 876 $(SOPHYAINCP)picolist.h \ 877 $(SOPHYAINCP)picmap.h \ 878 $(SOPHYAINCP)picmapx.h \ 879 $(SOPHYAINCP)picmapgen.h \ 880 $(SOPHYAINCP)pigraphx.h \ 881 $(SOPHYAINCP)pigraphgen.h \ 882 $(SOPHYAINCP)pifontx.h \ 883 $(SOPHYAINCP)pifontgen.h \ 884 $(SOPHYAINCP)pigrcoord.h \ 885 $(SOPHYAINCP)pilineatt.h \ 886 $(SOPHYAINCP)pigraphuc.h \ 887 $(SOPHYAINCP)pievthandler.h \ 888 $(SOPHYAINCP)psfile.h \ 889 $(SOPHYAINCP)pigratt.h \ 890 $(SOPHYAINCP)piaxes.h \ 891 $(SOPHYAINCP)parradapter.h \ 892 $(SOPHYAINCP)lut.h \ 893 $(SOPHYAINCP)ntupintf.h \ 894 $(SOPHYAINCP)generalfit.h \ 895 $(SOPHYAINCP)tvector.h \ 896 $(SOPHYAINCP)tmatrix.h \ 897 $(SOPHYAINCP)tarray.h \ 898 $(SOPHYAINCP)basarr.h \ 899 $(SOPHYAINCP)mutyv.h \ 900 $(SOPHYAINCP)dvlist.h \ 901 $(SOPHYAINCP)objfio.h \ 902 $(SOPHYAINCP)ndatablock.h \ 903 $(SOPHYAINCP)utilarr.h \ 904 $(SOPHYAINCP)generaldata.h \ 905 $(SOPHYAINCP)poly.h \ 906 $(SOPHYAINCP)peida.h \ 907 $(SOPHYAINCP)utils.h \ 908 $(SOPHYAINCP)perrors.h \ 909 $(SOPHYAINCP)fmath.h \ 910 $(SOPHYAINCP)pixelmap.h \ 911 $(SOPHYAINCP)spherepos.h \ 912 $(SOPHYAINCP)unitvector.h \ 913 $(SOPHYAINCP)vector3d.h \ 914 $(SOPHYAINCP)longlat.h \ 915 $(SOPHYAINCP)utilgeom.h \ 916 $(SOPHYAINCP)skymap.h \ 917 $(SOPHYAINCP)spherethetaphi.h \ 918 $(SOPHYAINCP)sphericalmap.h \ 919 $(SOPHYAINCP)smathconst.h \ 920 $(SOPHYAINCP)spherehealpix.h \ 921 $(SOPHYAINCP)HEALPixUtils.h \ 922 $(SOPHYAINCP)localmap.h \ 923 $(SOPHYAINCP)sphereecp.h \ 924 $(SOPHYAINCP)fiospherethetaphi.h \ 925 $(SOPHYAINCP)fiospherehealpix.h \ 926 $(SOPHYAINCP)fiolocalmap.h \ 927 $(SOPHYAINCP)fiosphereecp.h pitvmaad.h \ 928 $(SOPHYAINCP)complexios.h \ 929 $(SOPHYAINCP)fitsspherehealpix.h \ 930 $(SOPHYAINCP)fitsfile.h \ 931 $(SOPHYAINCP)FitsIO/fitsio.h \ 932 $(SOPHYAINCP)FitsIO/longnam.h \ 933 $(SOPHYAINCP)fitslocalmap.h 934 $(CXXCOMPILE) -o $@ $< 935 936 $(SOPHYAOBJP)nomspecrespadapter.o: nomspecrespadapter.cc \ 937 $(SOPHYAINCP)sopnamsp.h \ 938 $(SOPHYAINCP)machdefs.h \ 939 nomspecrespadapter.h nomgadapter.h \ 940 $(SOPHYAINCP)ppersist.h \ 941 $(SOPHYAINCP)pexceptions.h \ 942 $(SOPHYAINCP)gnumd5.h \ 943 $(SOPHYAINCP)ppfbinstream.h \ 944 $(SOPHYAINCP)rawstream.h \ 945 $(SOPHYAINCP)ppfnametag.h \ 946 $(SOPHYAINCP)anydataobj.h \ 947 $(SOPHYAINCP)pidrawer.h \ 948 $(SOPHYAINCP)pibwdggen.h \ 949 $(SOPHYAINCP)pisysdep.h \ 950 $(SOPHYAINCP)piwdgx.h \ 951 $(SOPHYAINCP)piwdggen.h \ 952 $(SOPHYAINCP)pimsghandler.h \ 953 $(SOPHYAINCP)picolist.h \ 954 $(SOPHYAINCP)picmap.h \ 955 $(SOPHYAINCP)picmapx.h \ 956 $(SOPHYAINCP)picmapgen.h \ 957 $(SOPHYAINCP)pigraphx.h \ 958 $(SOPHYAINCP)pigraphgen.h \ 959 $(SOPHYAINCP)pifontx.h \ 960 $(SOPHYAINCP)pifontgen.h \ 961 $(SOPHYAINCP)pigrcoord.h \ 962 $(SOPHYAINCP)pilineatt.h \ 963 $(SOPHYAINCP)pigraphuc.h \ 964 $(SOPHYAINCP)pievthandler.h \ 965 $(SOPHYAINCP)psfile.h \ 966 $(SOPHYAINCP)pigratt.h \ 967 $(SOPHYAINCP)piaxes.h \ 968 $(SOPHYAINCP)parradapter.h \ 969 $(SOPHYAINCP)lut.h \ 970 $(SOPHYAINCP)ntupintf.h \ 971 $(SOPHYAINCP)generalfit.h \ 972 $(SOPHYAINCP)tvector.h \ 973 $(SOPHYAINCP)tmatrix.h \ 974 $(SOPHYAINCP)tarray.h \ 975 $(SOPHYAINCP)basarr.h \ 976 $(SOPHYAINCP)mutyv.h \ 977 $(SOPHYAINCP)dvlist.h \ 978 $(SOPHYAINCP)objfio.h \ 979 $(SOPHYAINCP)ndatablock.h \ 980 $(SOPHYAINCP)utilarr.h \ 981 $(SOPHYAINCP)generaldata.h \ 982 $(SOPHYAINCP)poly.h \ 983 $(SOPHYAINCP)peida.h \ 984 $(SOPHYAINCP)utils.h \ 985 $(SOPHYAINCP)perrors.h \ 986 $(SOPHYAINCP)fmath.h \ 987 $(SOPHYAINCP)specresp.h \ 988 $(SOPHYAINCP)specrespvector.h \ 989 $(SOPHYAINCP)gaussfilt.h 990 $(CXXCOMPILE) -o $@ $< 991 992 $(SOPHYAOBJP)nomtarradapter.o: nomtarradapter.cc \ 993 $(SOPHYAINCP)sopnamsp.h \ 994 $(SOPHYAINCP)machdefs.h \ 995 $(SOPHYAINCP)datatype.h nomtarradapter.h \ 996 nomgadapter.h $(SOPHYAINCP)ppersist.h \ 997 $(SOPHYAINCP)pexceptions.h \ 998 $(SOPHYAINCP)gnumd5.h \ 999 $(SOPHYAINCP)ppfbinstream.h \ 1000 $(SOPHYAINCP)rawstream.h \ 1001 $(SOPHYAINCP)ppfnametag.h \ 1002 $(SOPHYAINCP)anydataobj.h \ 1003 $(SOPHYAINCP)pidrawer.h \ 1004 $(SOPHYAINCP)pibwdggen.h \ 1005 $(SOPHYAINCP)pisysdep.h \ 1006 $(SOPHYAINCP)piwdgx.h \ 1007 $(SOPHYAINCP)piwdggen.h \ 1008 $(SOPHYAINCP)pimsghandler.h \ 1009 $(SOPHYAINCP)picolist.h \ 1010 $(SOPHYAINCP)picmap.h \ 1011 $(SOPHYAINCP)picmapx.h \ 1012 $(SOPHYAINCP)picmapgen.h \ 1013 $(SOPHYAINCP)pigraphx.h \ 1014 $(SOPHYAINCP)pigraphgen.h \ 1015 $(SOPHYAINCP)pifontx.h \ 1016 $(SOPHYAINCP)pifontgen.h \ 1017 $(SOPHYAINCP)pigrcoord.h \ 1018 $(SOPHYAINCP)pilineatt.h \ 1019 $(SOPHYAINCP)pigraphuc.h \ 1020 $(SOPHYAINCP)pievthandler.h \ 1021 $(SOPHYAINCP)psfile.h \ 1022 $(SOPHYAINCP)pigratt.h \ 1023 $(SOPHYAINCP)piaxes.h \ 1024 $(SOPHYAINCP)parradapter.h \ 1025 $(SOPHYAINCP)lut.h \ 1026 $(SOPHYAINCP)ntupintf.h \ 1027 $(SOPHYAINCP)generalfit.h \ 1028 $(SOPHYAINCP)tvector.h \ 1029 $(SOPHYAINCP)tmatrix.h \ 1030 $(SOPHYAINCP)tarray.h \ 1031 $(SOPHYAINCP)basarr.h \ 1032 $(SOPHYAINCP)mutyv.h \ 1033 $(SOPHYAINCP)dvlist.h \ 1034 $(SOPHYAINCP)objfio.h \ 1035 $(SOPHYAINCP)ndatablock.h \ 1036 $(SOPHYAINCP)utilarr.h \ 1037 $(SOPHYAINCP)generaldata.h \ 1038 $(SOPHYAINCP)poly.h \ 1039 $(SOPHYAINCP)peida.h \ 1040 $(SOPHYAINCP)utils.h \ 1041 $(SOPHYAINCP)perrors.h \ 1042 $(SOPHYAINCP)fmath.h pitvmaad.h \ 1043 $(SOPHYAINCP)piyfxdrw.h \ 1044 $(SOPHYAINCP)fioarr.h \ 1045 $(SOPHYAINCP)fitstarray.h \ 1046 $(SOPHYAINCP)fitsfile.h \ 1047 $(SOPHYAINCP)FitsIO/fitsio.h \ 1048 $(SOPHYAINCP)FitsIO/longnam.h 1049 $(CXXCOMPILE) -o $@ $< 1050 1051 $(SOPHYAOBJP)nomtmatvecadapter.o: nomtmatvecadapter.cc \ 1052 $(SOPHYAINCP)sopnamsp.h \ 1053 $(SOPHYAINCP)machdefs.h \ 1054 $(SOPHYAINCP)datatype.h \ 1055 $(SOPHYAINCP)tvector.h \ 1056 $(SOPHYAINCP)tmatrix.h \ 1057 $(SOPHYAINCP)tarray.h \ 1058 $(SOPHYAINCP)basarr.h \ 1059 $(SOPHYAINCP)anydataobj.h \ 1060 $(SOPHYAINCP)mutyv.h \ 1061 $(SOPHYAINCP)dvlist.h \ 1062 $(SOPHYAINCP)objfio.h \ 1063 $(SOPHYAINCP)ppersist.h \ 1064 $(SOPHYAINCP)pexceptions.h \ 1065 $(SOPHYAINCP)gnumd5.h \ 1066 $(SOPHYAINCP)ppfbinstream.h \ 1067 $(SOPHYAINCP)rawstream.h \ 1068 $(SOPHYAINCP)ppfnametag.h \ 1069 $(SOPHYAINCP)ndatablock.h \ 1070 $(SOPHYAINCP)utilarr.h \ 1071 $(SOPHYAINCP)objfitter.h \ 1072 $(SOPHYAINCP)cimage.h \ 1073 $(SOPHYAINCP)fioarr.h \ 1074 $(SOPHYAINCP)histos.h \ 1075 $(SOPHYAINCP)peida.h \ 1076 $(SOPHYAINCP)utils.h \ 1077 $(SOPHYAINCP)perrors.h \ 1078 $(SOPHYAINCP)fmath.h \ 1079 $(SOPHYAINCP)histos2.h \ 1080 $(SOPHYAINCP)hisprof.h \ 1081 $(SOPHYAINCP)generalfit.h \ 1082 $(SOPHYAINCP)generaldata.h \ 1083 $(SOPHYAINCP)ntupintf.h \ 1084 $(SOPHYAINCP)poly.h nomtmatvecadapter.h \ 1085 nomgadapter.h $(SOPHYAINCP)pidrawer.h \ 1086 $(SOPHYAINCP)pibwdggen.h \ 1087 $(SOPHYAINCP)pisysdep.h \ 1088 $(SOPHYAINCP)piwdgx.h \ 1089 $(SOPHYAINCP)piwdggen.h \ 1090 $(SOPHYAINCP)pimsghandler.h \ 1091 $(SOPHYAINCP)picolist.h \ 1092 $(SOPHYAINCP)picmap.h \ 1093 $(SOPHYAINCP)picmapx.h \ 1094 $(SOPHYAINCP)picmapgen.h \ 1095 $(SOPHYAINCP)pigraphx.h \ 1096 $(SOPHYAINCP)pigraphgen.h \ 1097 $(SOPHYAINCP)pifontx.h \ 1098 $(SOPHYAINCP)pifontgen.h \ 1099 $(SOPHYAINCP)pigrcoord.h \ 1100 $(SOPHYAINCP)pilineatt.h \ 1101 $(SOPHYAINCP)pigraphuc.h \ 1102 $(SOPHYAINCP)pievthandler.h \ 1103 $(SOPHYAINCP)psfile.h \ 1104 $(SOPHYAINCP)pigratt.h \ 1105 $(SOPHYAINCP)piaxes.h \ 1106 $(SOPHYAINCP)parradapter.h \ 1107 $(SOPHYAINCP)lut.h \ 1108 $(SOPHYAINCP)piyfxdrw.h pitvmaad.h \ 1109 $(SOPHYAINCP)fitstarray.h \ 1110 $(SOPHYAINCP)fitsfile.h \ 1111 $(SOPHYAINCP)FitsIO/fitsio.h \ 1112 $(SOPHYAINCP)FitsIO/longnam.h 1113 $(CXXCOMPILE) -o $@ $< 1114 1115 $(SOPHYAOBJP)pawexecut.o: pawexecut.cc \ 1116 $(SOPHYAINCP)sopnamsp.h \ 1117 $(SOPHYAINCP)strutil.h \ 1118 $(SOPHYAINCP)strutilxx.h \ 1119 $(SOPHYAINCP)machdefs.h \ 1120 $(SOPHYAINCP)histos.h \ 1121 $(SOPHYAINCP)objfio.h \ 1122 $(SOPHYAINCP)anydataobj.h \ 1123 $(SOPHYAINCP)ppersist.h \ 1124 $(SOPHYAINCP)pexceptions.h \ 1125 $(SOPHYAINCP)gnumd5.h \ 1126 $(SOPHYAINCP)ppfbinstream.h \ 1127 $(SOPHYAINCP)rawstream.h \ 1128 $(SOPHYAINCP)ppfnametag.h \ 1129 $(SOPHYAINCP)peida.h \ 1130 $(SOPHYAINCP)utils.h \ 1131 $(SOPHYAINCP)perrors.h \ 1132 $(SOPHYAINCP)fmath.h \ 1133 $(SOPHYAINCP)tvector.h \ 1134 $(SOPHYAINCP)tmatrix.h \ 1135 $(SOPHYAINCP)tarray.h \ 1136 $(SOPHYAINCP)basarr.h \ 1137 $(SOPHYAINCP)mutyv.h \ 1138 $(SOPHYAINCP)dvlist.h \ 1139 $(SOPHYAINCP)ndatablock.h \ 1140 $(SOPHYAINCP)utilarr.h \ 1141 $(SOPHYAINCP)histos2.h \ 1142 $(SOPHYAINCP)hisprof.h \ 1143 $(SOPHYAINCP)histerr.h \ 1144 $(SOPHYAINCP)ntuple.h \ 1145 $(SOPHYAINCP)ntupintf.h pawexecut.h \ 1146 piacmd.h $(SOPHYAINCP)commander.h \ 1147 $(SOPHYAINCP)pdlmgr.h \ 1148 $(SOPHYAINCP)ctimer.h \ 1149 $(SOPHYAINCP)zthread.h dlftypes.h \ 1150 nobjmgr.h servnobjm.h nomgadapter.h \ 1151 $(SOPHYAINCP)pidrawer.h \ 1152 $(SOPHYAINCP)pibwdggen.h \ 1153 $(SOPHYAINCP)pisysdep.h \ 1154 $(SOPHYAINCP)piwdgx.h \ 1155 $(SOPHYAINCP)piwdggen.h \ 1156 $(SOPHYAINCP)pimsghandler.h \ 1157 $(SOPHYAINCP)picolist.h \ 1158 $(SOPHYAINCP)picmap.h \ 1159 $(SOPHYAINCP)picmapx.h \ 1160 $(SOPHYAINCP)picmapgen.h \ 1161 $(SOPHYAINCP)pigraphx.h \ 1162 $(SOPHYAINCP)pigraphgen.h \ 1163 $(SOPHYAINCP)pifontx.h \ 1164 $(SOPHYAINCP)pifontgen.h \ 1165 $(SOPHYAINCP)pigrcoord.h \ 1166 $(SOPHYAINCP)pilineatt.h \ 1167 $(SOPHYAINCP)pigraphuc.h \ 1168 $(SOPHYAINCP)pievthandler.h \ 1169 $(SOPHYAINCP)psfile.h \ 1170 $(SOPHYAINCP)pigratt.h \ 1171 $(SOPHYAINCP)piaxes.h \ 1172 $(SOPHYAINCP)parradapter.h \ 1173 $(SOPHYAINCP)lut.h \ 1174 $(SOPHYAINCP)generalfit.h \ 1175 $(SOPHYAINCP)generaldata.h \ 1176 $(SOPHYAINCP)poly.h pistdimgapp.h \ 1177 $(SOPHYAINCP)piapplx.h \ 1178 $(SOPHYAINCP)piapplgen.h \ 1179 $(SOPHYAINCP)picontainerx.h \ 1180 $(SOPHYAINCP)picontainergen.h \ 1181 $(SOPHYAINCP)pimenubarx.h \ 1182 $(SOPHYAINCP)pimenubargen.h \ 1183 $(SOPHYAINCP)pimenux.h \ 1184 $(SOPHYAINCP)pimenugen.h \ 1185 $(SOPHYAINCP)picons.h \ 1186 $(SOPHYAINCP)pistdwdgx.h \ 1187 $(SOPHYAINCP)pistdwdggen.h \ 1188 $(SOPHYAINCP)pibwdgx.h \ 1189 $(SOPHYAINCP)pigraphps.h \ 1190 $(SOPHYAINCP)piwindowx.h \ 1191 $(SOPHYAINCP)piwindowgen.h \ 1192 $(SOPHYAINCP)pioptmenux.h \ 1193 $(SOPHYAINCP)pioptmenugen.h \ 1194 $(SOPHYAINCP)pifilechox.h \ 1195 $(SOPHYAINCP)pifilechogen.h \ 1196 $(SOPHYAINCP)piperiodx.h \ 1197 $(SOPHYAINCP)periodic.h \ 1198 $(SOPHYAINCP)piimage.h \ 1199 $(SOPHYAINCP)pieldrw.h \ 1200 $(SOPHYAINCP)pipixmapx.h \ 1201 $(SOPHYAINCP)pipixmapgen.h \ 1202 $(SOPHYAINCP)picmapview.h \ 1203 $(SOPHYAINCP)pi3dwdg.h \ 1204 $(SOPHYAINCP)pi3ddrw.h \ 1205 $(SOPHYAINCP)pigraph3d.h pisiadw.h \ 1206 $(SOPHYAINCP)pilistx.h \ 1207 $(SOPHYAINCP)pilistgen.h \ 1208 $(SOPHYAINCP)pistzwin.h \ 1209 $(SOPHYAINCP)pitherm.h \ 1210 $(SOPHYAINCP)resusage.h pihisto.h 1211 $(CXXCOMPILE) -o $@ $< 1212 1213 $(SOPHYAOBJP)pi2dvec.o: pi2dvec.cc \ 1214 $(SOPHYAINCP)sopnamsp.h \ 1215 $(SOPHYAINCP)machdefs.h \ 1216 $(SOPHYAINCP)histos.h \ 1217 $(SOPHYAINCP)objfio.h \ 1218 $(SOPHYAINCP)anydataobj.h \ 1219 $(SOPHYAINCP)ppersist.h \ 1220 $(SOPHYAINCP)pexceptions.h \ 1221 $(SOPHYAINCP)gnumd5.h \ 1222 $(SOPHYAINCP)ppfbinstream.h \ 1223 $(SOPHYAINCP)rawstream.h \ 1224 $(SOPHYAINCP)ppfnametag.h \ 1225 $(SOPHYAINCP)peida.h \ 1226 $(SOPHYAINCP)utils.h \ 1227 $(SOPHYAINCP)perrors.h \ 1228 $(SOPHYAINCP)fmath.h \ 1229 $(SOPHYAINCP)tvector.h \ 1230 $(SOPHYAINCP)tmatrix.h \ 1231 $(SOPHYAINCP)tarray.h \ 1232 $(SOPHYAINCP)basarr.h \ 1233 $(SOPHYAINCP)mutyv.h \ 1234 $(SOPHYAINCP)dvlist.h \ 1235 $(SOPHYAINCP)ndatablock.h \ 1236 $(SOPHYAINCP)utilarr.h \ 1237 $(SOPHYAINCP)ntuple.h \ 1238 $(SOPHYAINCP)ntupintf.h \ 1239 $(SOPHYAINCP)nbtri.h pi2dvec.h \ 1240 pistdimgapp.h $(SOPHYAINCP)pisysdep.h \ 1241 $(SOPHYAINCP)piapplx.h \ 1242 $(SOPHYAINCP)piapplgen.h \ 1243 $(SOPHYAINCP)pimsghandler.h \ 1244 $(SOPHYAINCP)picontainerx.h \ 1245 $(SOPHYAINCP)picontainergen.h \ 1246 $(SOPHYAINCP)piwdgx.h \ 1247 $(SOPHYAINCP)piwdggen.h \ 1248 $(SOPHYAINCP)picolist.h \ 1249 $(SOPHYAINCP)pimenubarx.h \ 1250 $(SOPHYAINCP)pimenubargen.h \ 1251 $(SOPHYAINCP)pimenux.h \ 1252 $(SOPHYAINCP)pimenugen.h \ 1253 $(SOPHYAINCP)picons.h \ 1254 $(SOPHYAINCP)pistdwdgx.h \ 1255 $(SOPHYAINCP)pistdwdggen.h \ 1256 $(SOPHYAINCP)pibwdgx.h \ 1257 $(SOPHYAINCP)pibwdggen.h \ 1258 $(SOPHYAINCP)picmap.h \ 1259 $(SOPHYAINCP)picmapx.h \ 1260 $(SOPHYAINCP)picmapgen.h \ 1261 $(SOPHYAINCP)pigraphx.h \ 1262 $(SOPHYAINCP)pigraphgen.h \ 1263 $(SOPHYAINCP)pifontx.h \ 1264 $(SOPHYAINCP)pifontgen.h \ 1265 $(SOPHYAINCP)pigrcoord.h \ 1266 $(SOPHYAINCP)pilineatt.h \ 1267 $(SOPHYAINCP)pigraphuc.h \ 1268 $(SOPHYAINCP)pievthandler.h \ 1269 $(SOPHYAINCP)psfile.h \ 1270 $(SOPHYAINCP)pigraphps.h \ 1271 $(SOPHYAINCP)piwindowx.h \ 1272 $(SOPHYAINCP)piwindowgen.h \ 1273 $(SOPHYAINCP)pioptmenux.h \ 1274 $(SOPHYAINCP)pioptmenugen.h \ 1275 $(SOPHYAINCP)pifilechox.h \ 1276 $(SOPHYAINCP)pifilechogen.h \ 1277 $(SOPHYAINCP)piperiodx.h \ 1278 $(SOPHYAINCP)periodic.h \ 1279 $(SOPHYAINCP)piimage.h \ 1280 $(SOPHYAINCP)parradapter.h \ 1281 $(SOPHYAINCP)lut.h \ 1282 $(SOPHYAINCP)pieldrw.h \ 1283 $(SOPHYAINCP)pidrawer.h \ 1284 $(SOPHYAINCP)pigratt.h \ 1285 $(SOPHYAINCP)piaxes.h \ 1286 $(SOPHYAINCP)pipixmapx.h \ 1287 $(SOPHYAINCP)pipixmapgen.h \ 1288 $(SOPHYAINCP)picmapview.h \ 1289 $(SOPHYAINCP)pi3dwdg.h \ 1290 $(SOPHYAINCP)pi3ddrw.h \ 1291 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 1292 dlftypes.h piacmd.h \ 1293 $(SOPHYAINCP)commander.h \ 1294 $(SOPHYAINCP)pdlmgr.h \ 1295 $(SOPHYAINCP)ctimer.h \ 1296 $(SOPHYAINCP)zthread.h pisiadw.h \ 1297 $(SOPHYAINCP)pilistx.h \ 1298 $(SOPHYAINCP)pilistgen.h \ 1299 $(SOPHYAINCP)pistzwin.h \ 1300 $(SOPHYAINCP)pitherm.h \ 1301 $(SOPHYAINCP)resusage.h \ 1302 $(SOPHYAINCP)piscdrawwdg.h 1303 $(CXXCOMPILE) -o $@ $< 1304 1305 $(SOPHYAOBJP)piacmd.o: piacmd.cc $(SOPHYAINCP)sopnamsp.h \ 1306 piacmd.h $(SOPHYAINCP)machdefs.h \ 1307 $(SOPHYAINCP)commander.h \ 1308 $(SOPHYAINCP)pdlmgr.h \ 1309 $(SOPHYAINCP)dvlist.h \ 1310 $(SOPHYAINCP)objfio.h \ 1311 $(SOPHYAINCP)anydataobj.h \ 1312 $(SOPHYAINCP)ppersist.h \ 1313 $(SOPHYAINCP)pexceptions.h \ 1314 $(SOPHYAINCP)gnumd5.h \ 1315 $(SOPHYAINCP)ppfbinstream.h \ 1316 $(SOPHYAINCP)rawstream.h \ 1317 $(SOPHYAINCP)ppfnametag.h \ 1318 $(SOPHYAINCP)mutyv.h \ 1319 $(SOPHYAINCP)ctimer.h \ 1320 $(SOPHYAINCP)zthread.h dlftypes.h \ 1321 basexecut.h $(SOPHYAINCP)strutil.h \ 1322 $(SOPHYAINCP)strutilxx.h \ 1323 $(SOPHYAINCP)srandgen.h pistdimgapp.h \ 1324 $(SOPHYAINCP)pisysdep.h \ 1325 $(SOPHYAINCP)piapplx.h \ 1326 $(SOPHYAINCP)piapplgen.h \ 1327 $(SOPHYAINCP)pimsghandler.h \ 1328 $(SOPHYAINCP)picontainerx.h \ 1329 $(SOPHYAINCP)picontainergen.h \ 1330 $(SOPHYAINCP)piwdgx.h \ 1331 $(SOPHYAINCP)piwdggen.h \ 1332 $(SOPHYAINCP)picolist.h \ 1333 $(SOPHYAINCP)pimenubarx.h \ 1334 $(SOPHYAINCP)pimenubargen.h \ 1335 $(SOPHYAINCP)pimenux.h \ 1336 $(SOPHYAINCP)pimenugen.h \ 1337 $(SOPHYAINCP)picons.h \ 1338 $(SOPHYAINCP)pistdwdgx.h \ 1339 $(SOPHYAINCP)pistdwdggen.h \ 1340 $(SOPHYAINCP)pibwdgx.h \ 1341 $(SOPHYAINCP)pibwdggen.h \ 1342 $(SOPHYAINCP)picmap.h \ 1343 $(SOPHYAINCP)picmapx.h \ 1344 $(SOPHYAINCP)picmapgen.h \ 1345 $(SOPHYAINCP)pigraphx.h \ 1346 $(SOPHYAINCP)pigraphgen.h \ 1347 $(SOPHYAINCP)pifontx.h \ 1348 $(SOPHYAINCP)pifontgen.h \ 1349 $(SOPHYAINCP)pigrcoord.h \ 1350 $(SOPHYAINCP)pilineatt.h \ 1351 $(SOPHYAINCP)pigraphuc.h \ 1352 $(SOPHYAINCP)pievthandler.h \ 1353 $(SOPHYAINCP)psfile.h \ 1354 $(SOPHYAINCP)pigraphps.h \ 1355 $(SOPHYAINCP)piwindowx.h \ 1356 $(SOPHYAINCP)piwindowgen.h \ 1357 $(SOPHYAINCP)pioptmenux.h \ 1358 $(SOPHYAINCP)pioptmenugen.h \ 1359 $(SOPHYAINCP)pifilechox.h \ 1360 $(SOPHYAINCP)pifilechogen.h \ 1361 $(SOPHYAINCP)piperiodx.h \ 1362 $(SOPHYAINCP)periodic.h \ 1363 $(SOPHYAINCP)piimage.h \ 1364 $(SOPHYAINCP)parradapter.h \ 1365 $(SOPHYAINCP)lut.h \ 1366 $(SOPHYAINCP)pieldrw.h \ 1367 $(SOPHYAINCP)pidrawer.h \ 1368 $(SOPHYAINCP)pigratt.h \ 1369 $(SOPHYAINCP)piaxes.h \ 1370 $(SOPHYAINCP)pipixmapx.h \ 1371 $(SOPHYAINCP)pipixmapgen.h \ 1372 $(SOPHYAINCP)picmapview.h \ 1373 $(SOPHYAINCP)pi3dwdg.h \ 1374 $(SOPHYAINCP)pi3ddrw.h \ 1375 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 1376 pisiadw.h $(SOPHYAINCP)pilistx.h \ 1377 $(SOPHYAINCP)pilistgen.h \ 1378 $(SOPHYAINCP)pistzwin.h \ 1379 $(SOPHYAINCP)pitherm.h \ 1380 $(SOPHYAINCP)resusage.h piafitting.h \ 1381 nomgadapter.h $(SOPHYAINCP)ntupintf.h \ 1382 $(SOPHYAINCP)generalfit.h \ 1383 $(SOPHYAINCP)tvector.h \ 1384 $(SOPHYAINCP)tmatrix.h \ 1385 $(SOPHYAINCP)tarray.h \ 1386 $(SOPHYAINCP)basarr.h \ 1387 $(SOPHYAINCP)ndatablock.h \ 1388 $(SOPHYAINCP)utilarr.h \ 1389 $(SOPHYAINCP)generaldata.h \ 1390 $(SOPHYAINCP)poly.h \ 1391 $(SOPHYAINCP)peida.h \ 1392 $(SOPHYAINCP)utils.h \ 1393 $(SOPHYAINCP)perrors.h \ 1394 $(SOPHYAINCP)fmath.h pawexecut.h \ 1395 cxxexecutor.h cxxexecwin.h contmodex.h flowmodex.h 1396 $(CXXCOMPILE) -o $@ $< 1397 1398 $(SOPHYAOBJP)piafitting.o: piafitting.cc \ 1399 $(SOPHYAINCP)sopnamsp.h \ 1400 $(SOPHYAINCP)strutil.h \ 1401 $(SOPHYAINCP)nbtri.h \ 1402 $(SOPHYAINCP)machdefs.h \ 1403 $(SOPHYAINCP)generalfit.h \ 1404 $(SOPHYAINCP)pexceptions.h \ 1405 $(SOPHYAINCP)tvector.h \ 1406 $(SOPHYAINCP)tmatrix.h \ 1407 $(SOPHYAINCP)tarray.h \ 1408 $(SOPHYAINCP)basarr.h \ 1409 $(SOPHYAINCP)anydataobj.h \ 1410 $(SOPHYAINCP)mutyv.h \ 1411 $(SOPHYAINCP)dvlist.h \ 1412 $(SOPHYAINCP)objfio.h \ 1413 $(SOPHYAINCP)ppersist.h \ 1414 $(SOPHYAINCP)gnumd5.h \ 1415 $(SOPHYAINCP)ppfbinstream.h \ 1416 $(SOPHYAINCP)rawstream.h \ 1417 $(SOPHYAINCP)ppfnametag.h \ 1418 $(SOPHYAINCP)ndatablock.h \ 1419 $(SOPHYAINCP)utilarr.h \ 1420 $(SOPHYAINCP)generaldata.h \ 1421 $(SOPHYAINCP)ntupintf.h \ 1422 $(SOPHYAINCP)poly.h \ 1423 $(SOPHYAINCP)peida.h \ 1424 $(SOPHYAINCP)utils.h \ 1425 $(SOPHYAINCP)perrors.h \ 1426 $(SOPHYAINCP)fmath.h \ 1427 $(SOPHYAINCP)fct1dfit.h \ 1428 $(SOPHYAINCP)fct2dfit.h \ 1429 $(SOPHYAINCP)ntuple.h \ 1430 $(SOPHYAINCP)cimage.h \ 1431 $(SOPHYAINCP)fioarr.h \ 1432 $(SOPHYAINCP)histos.h \ 1433 $(SOPHYAINCP)histos2.h \ 1434 $(SOPHYAINCP)hisprof.h \ 1435 $(SOPHYAINCP)objfitter.h piafitting.h \ 1436 nomgadapter.h $(SOPHYAINCP)pidrawer.h \ 1437 $(SOPHYAINCP)pibwdggen.h \ 1438 $(SOPHYAINCP)pisysdep.h \ 1439 $(SOPHYAINCP)piwdgx.h \ 1440 $(SOPHYAINCP)piwdggen.h \ 1441 $(SOPHYAINCP)pimsghandler.h \ 1442 $(SOPHYAINCP)picolist.h \ 1443 $(SOPHYAINCP)picmap.h \ 1444 $(SOPHYAINCP)picmapx.h \ 1445 $(SOPHYAINCP)picmapgen.h \ 1446 $(SOPHYAINCP)pigraphx.h \ 1447 $(SOPHYAINCP)pigraphgen.h \ 1448 $(SOPHYAINCP)pifontx.h \ 1449 $(SOPHYAINCP)pifontgen.h \ 1450 $(SOPHYAINCP)pigrcoord.h \ 1451 $(SOPHYAINCP)pilineatt.h \ 1452 $(SOPHYAINCP)pigraphuc.h \ 1453 $(SOPHYAINCP)pievthandler.h \ 1454 $(SOPHYAINCP)psfile.h \ 1455 $(SOPHYAINCP)pigratt.h \ 1456 $(SOPHYAINCP)piaxes.h \ 1457 $(SOPHYAINCP)parradapter.h \ 1458 $(SOPHYAINCP)lut.h \ 1459 $(SOPHYAINCP)pdlmgr.h dlftypes.h piacmd.h \ 1460 $(SOPHYAINCP)commander.h \ 1461 $(SOPHYAINCP)ctimer.h \ 1462 $(SOPHYAINCP)zthread.h nobjmgr.h \ 1463 pistdimgapp.h $(SOPHYAINCP)piapplx.h \ 1464 $(SOPHYAINCP)piapplgen.h \ 1465 $(SOPHYAINCP)picontainerx.h \ 1466 $(SOPHYAINCP)picontainergen.h \ 1467 $(SOPHYAINCP)pimenubarx.h \ 1468 $(SOPHYAINCP)pimenubargen.h \ 1469 $(SOPHYAINCP)pimenux.h \ 1470 $(SOPHYAINCP)pimenugen.h \ 1471 $(SOPHYAINCP)picons.h \ 1472 $(SOPHYAINCP)pistdwdgx.h \ 1473 $(SOPHYAINCP)pistdwdggen.h \ 1474 $(SOPHYAINCP)pibwdgx.h \ 1475 $(SOPHYAINCP)pigraphps.h \ 1476 $(SOPHYAINCP)piwindowx.h \ 1477 $(SOPHYAINCP)piwindowgen.h \ 1478 $(SOPHYAINCP)pioptmenux.h \ 1479 $(SOPHYAINCP)pioptmenugen.h \ 1480 $(SOPHYAINCP)pifilechox.h \ 1481 $(SOPHYAINCP)pifilechogen.h \ 1482 $(SOPHYAINCP)piperiodx.h \ 1483 $(SOPHYAINCP)periodic.h \ 1484 $(SOPHYAINCP)piimage.h \ 1485 $(SOPHYAINCP)pieldrw.h \ 1486 $(SOPHYAINCP)pipixmapx.h \ 1487 $(SOPHYAINCP)pipixmapgen.h \ 1488 $(SOPHYAINCP)picmapview.h \ 1489 $(SOPHYAINCP)pi3dwdg.h \ 1490 $(SOPHYAINCP)pi3ddrw.h \ 1491 $(SOPHYAINCP)pigraph3d.h pisiadw.h \ 1492 $(SOPHYAINCP)pilistx.h \ 1493 $(SOPHYAINCP)pilistgen.h \ 1494 $(SOPHYAINCP)pistzwin.h \ 1495 $(SOPHYAINCP)pitherm.h \ 1496 $(SOPHYAINCP)resusage.h nomhistadapter.h \ 1497 $(SOPHYAINCP)histerr.h \ 1498 $(SOPHYAINCP)xntuple.h \ 1499 $(SOPHYAINCP)basedtable.h \ 1500 $(SOPHYAINCP)segdatablock.h \ 1501 nomgfdadapter.h nomimagadapter.h nomtmatvecadapter.h 1502 $(CXXCOMPILE) -o $@ $< 1503 1504 $(SOPHYAOBJP)pigfd1.o: pigfd1.cc $(SOPHYAINCP)sopnamsp.h \ 1505 pigfd1.h $(SOPHYAINCP)generaldata.h \ 1506 $(SOPHYAINCP)objfio.h \ 1507 $(SOPHYAINCP)machdefs.h \ 1508 $(SOPHYAINCP)anydataobj.h \ 1509 $(SOPHYAINCP)ppersist.h \ 1510 $(SOPHYAINCP)pexceptions.h \ 1511 $(SOPHYAINCP)gnumd5.h \ 1512 $(SOPHYAINCP)ppfbinstream.h \ 1513 $(SOPHYAINCP)rawstream.h \ 1514 $(SOPHYAINCP)ppfnametag.h \ 1515 $(SOPHYAINCP)ntupintf.h \ 1516 $(SOPHYAINCP)poly.h \ 1517 $(SOPHYAINCP)peida.h \ 1518 $(SOPHYAINCP)utils.h \ 1519 $(SOPHYAINCP)perrors.h \ 1520 $(SOPHYAINCP)fmath.h \ 1521 $(SOPHYAINCP)tvector.h \ 1522 $(SOPHYAINCP)tmatrix.h \ 1523 $(SOPHYAINCP)tarray.h \ 1524 $(SOPHYAINCP)basarr.h \ 1525 $(SOPHYAINCP)mutyv.h \ 1526 $(SOPHYAINCP)dvlist.h \ 1527 $(SOPHYAINCP)ndatablock.h \ 1528 $(SOPHYAINCP)utilarr.h \ 1529 $(SOPHYAINCP)pidrawer.h \ 1530 $(SOPHYAINCP)pibwdggen.h \ 1531 $(SOPHYAINCP)pisysdep.h \ 1532 $(SOPHYAINCP)piwdgx.h \ 1533 $(SOPHYAINCP)piwdggen.h \ 1534 $(SOPHYAINCP)pimsghandler.h \ 1535 $(SOPHYAINCP)picolist.h \ 1536 $(SOPHYAINCP)picmap.h \ 1537 $(SOPHYAINCP)picmapx.h \ 1538 $(SOPHYAINCP)picmapgen.h \ 1539 $(SOPHYAINCP)pigraphx.h \ 1540 $(SOPHYAINCP)pigraphgen.h \ 1541 $(SOPHYAINCP)pifontx.h \ 1542 $(SOPHYAINCP)pifontgen.h \ 1543 $(SOPHYAINCP)pigrcoord.h \ 1544 $(SOPHYAINCP)pilineatt.h \ 1545 $(SOPHYAINCP)pigraphuc.h \ 1546 $(SOPHYAINCP)pievthandler.h \ 1547 $(SOPHYAINCP)psfile.h \ 1548 $(SOPHYAINCP)pigratt.h \ 1549 $(SOPHYAINCP)piaxes.h 1550 $(CXXCOMPILE) -o $@ $< 1551 1552 $(SOPHYAOBJP)pigfd2.o: pigfd2.cc $(SOPHYAINCP)sopnamsp.h \ 1553 pigfd2.h $(SOPHYAINCP)generaldata.h \ 1554 $(SOPHYAINCP)objfio.h \ 1555 $(SOPHYAINCP)machdefs.h \ 1556 $(SOPHYAINCP)anydataobj.h \ 1557 $(SOPHYAINCP)ppersist.h \ 1558 $(SOPHYAINCP)pexceptions.h \ 1559 $(SOPHYAINCP)gnumd5.h \ 1560 $(SOPHYAINCP)ppfbinstream.h \ 1561 $(SOPHYAINCP)rawstream.h \ 1562 $(SOPHYAINCP)ppfnametag.h \ 1563 $(SOPHYAINCP)ntupintf.h \ 1564 $(SOPHYAINCP)poly.h \ 1565 $(SOPHYAINCP)peida.h \ 1566 $(SOPHYAINCP)utils.h \ 1567 $(SOPHYAINCP)perrors.h \ 1568 $(SOPHYAINCP)fmath.h \ 1569 $(SOPHYAINCP)tvector.h \ 1570 $(SOPHYAINCP)tmatrix.h \ 1571 $(SOPHYAINCP)tarray.h \ 1572 $(SOPHYAINCP)basarr.h \ 1573 $(SOPHYAINCP)mutyv.h \ 1574 $(SOPHYAINCP)dvlist.h \ 1575 $(SOPHYAINCP)ndatablock.h \ 1576 $(SOPHYAINCP)utilarr.h \ 1577 $(SOPHYAINCP)pi3ddrw.h \ 1578 $(SOPHYAINCP)pisysdep.h \ 1579 $(SOPHYAINCP)pidrawer.h \ 1580 $(SOPHYAINCP)pibwdggen.h \ 1581 $(SOPHYAINCP)piwdgx.h \ 1582 $(SOPHYAINCP)piwdggen.h \ 1583 $(SOPHYAINCP)pimsghandler.h \ 1584 $(SOPHYAINCP)picolist.h \ 1585 $(SOPHYAINCP)picmap.h \ 1586 $(SOPHYAINCP)picmapx.h \ 1587 $(SOPHYAINCP)picmapgen.h \ 1588 $(SOPHYAINCP)pigraphx.h \ 1589 $(SOPHYAINCP)pigraphgen.h \ 1590 $(SOPHYAINCP)pifontx.h \ 1591 $(SOPHYAINCP)pifontgen.h \ 1592 $(SOPHYAINCP)pigrcoord.h \ 1593 $(SOPHYAINCP)pilineatt.h \ 1594 $(SOPHYAINCP)pigraphuc.h \ 1595 $(SOPHYAINCP)pievthandler.h \ 1596 $(SOPHYAINCP)psfile.h \ 1597 $(SOPHYAINCP)pigratt.h \ 1598 $(SOPHYAINCP)piaxes.h \ 1599 $(SOPHYAINCP)pieldrw.h \ 1600 $(SOPHYAINCP)pigraph3d.h 1601 $(CXXCOMPILE) -o $@ $< 1602 1603 $(SOPHYAOBJP)pihisto2d.o: pihisto2d.cc \ 1604 $(SOPHYAINCP)pisysdep.h \ 1605 $(SOPHYAINCP)machdefs.h \ 1606 $(SOPHYAINCP)piapplx.h \ 1607 $(SOPHYAINCP)piapplgen.h \ 1608 $(SOPHYAINCP)pimsghandler.h \ 1609 $(SOPHYAINCP)picontainerx.h \ 1610 $(SOPHYAINCP)picontainergen.h \ 1611 $(SOPHYAINCP)piwdgx.h \ 1612 $(SOPHYAINCP)piwdggen.h \ 1613 $(SOPHYAINCP)picolist.h \ 1614 $(SOPHYAINCP)pimenubarx.h \ 1615 $(SOPHYAINCP)pimenubargen.h \ 1616 $(SOPHYAINCP)pimenux.h \ 1617 $(SOPHYAINCP)pimenugen.h \ 1618 $(SOPHYAINCP)picons.h \ 1619 $(SOPHYAINCP)pistdwdgx.h \ 1620 $(SOPHYAINCP)pistdwdggen.h \ 1621 $(SOPHYAINCP)pibwdgx.h \ 1622 $(SOPHYAINCP)pibwdggen.h \ 1623 $(SOPHYAINCP)picmap.h \ 1624 $(SOPHYAINCP)picmapx.h \ 1625 $(SOPHYAINCP)picmapgen.h \ 1626 $(SOPHYAINCP)pigraphx.h \ 1627 $(SOPHYAINCP)pigraphgen.h \ 1628 $(SOPHYAINCP)pifontx.h \ 1629 $(SOPHYAINCP)pifontgen.h \ 1630 $(SOPHYAINCP)pigrcoord.h \ 1631 $(SOPHYAINCP)pilineatt.h \ 1632 $(SOPHYAINCP)pigraphuc.h \ 1633 $(SOPHYAINCP)pievthandler.h \ 1634 $(SOPHYAINCP)psfile.h \ 1635 $(SOPHYAINCP)pigraphps.h \ 1636 $(SOPHYAINCP)sopnamsp.h pihisto2d.h \ 1637 $(SOPHYAINCP)pioptmenux.h \ 1638 $(SOPHYAINCP)pioptmenugen.h \ 1639 $(SOPHYAINCP)histos2.h \ 1640 $(SOPHYAINCP)peida.h \ 1641 $(SOPHYAINCP)utils.h \ 1642 $(SOPHYAINCP)perrors.h \ 1643 $(SOPHYAINCP)pexceptions.h \ 1644 $(SOPHYAINCP)fmath.h \ 1645 $(SOPHYAINCP)histos.h \ 1646 $(SOPHYAINCP)objfio.h \ 1647 $(SOPHYAINCP)anydataobj.h \ 1648 $(SOPHYAINCP)ppersist.h \ 1649 $(SOPHYAINCP)gnumd5.h \ 1650 $(SOPHYAINCP)ppfbinstream.h \ 1651 $(SOPHYAINCP)rawstream.h \ 1652 $(SOPHYAINCP)ppfnametag.h \ 1653 $(SOPHYAINCP)tvector.h \ 1654 $(SOPHYAINCP)tmatrix.h \ 1655 $(SOPHYAINCP)tarray.h \ 1656 $(SOPHYAINCP)basarr.h \ 1657 $(SOPHYAINCP)mutyv.h \ 1658 $(SOPHYAINCP)dvlist.h \ 1659 $(SOPHYAINCP)ndatablock.h \ 1660 $(SOPHYAINCP)utilarr.h \ 1661 $(SOPHYAINCP)pidrawer.h \ 1662 $(SOPHYAINCP)pigratt.h \ 1663 $(SOPHYAINCP)piaxes.h \ 1664 $(SOPHYAINCP)piscdrawwdg.h \ 1665 $(SOPHYAINCP)piwindowx.h \ 1666 $(SOPHYAINCP)piwindowgen.h \ 1667 $(SOPHYAINCP)pieldrw.h \ 1668 $(SOPHYAINCP)nbrandom.h \ 1669 $(SOPHYAINCP)srandgen.h 1670 $(CXXCOMPILE) -o $@ $< 1671 1672 $(SOPHYAOBJP)pihisto.o: pihisto.cc \ 1673 $(SOPHYAINCP)sopnamsp.h pihisto.h \ 1674 $(SOPHYAINCP)histos.h \ 1675 $(SOPHYAINCP)objfio.h \ 1676 $(SOPHYAINCP)machdefs.h \ 1677 $(SOPHYAINCP)anydataobj.h \ 1678 $(SOPHYAINCP)ppersist.h \ 1679 $(SOPHYAINCP)pexceptions.h \ 1680 $(SOPHYAINCP)gnumd5.h \ 1681 $(SOPHYAINCP)ppfbinstream.h \ 1682 $(SOPHYAINCP)rawstream.h \ 1683 $(SOPHYAINCP)ppfnametag.h \ 1684 $(SOPHYAINCP)peida.h \ 1685 $(SOPHYAINCP)utils.h \ 1686 $(SOPHYAINCP)perrors.h \ 1687 $(SOPHYAINCP)fmath.h \ 1688 $(SOPHYAINCP)tvector.h \ 1689 $(SOPHYAINCP)tmatrix.h \ 1690 $(SOPHYAINCP)tarray.h \ 1691 $(SOPHYAINCP)basarr.h \ 1692 $(SOPHYAINCP)mutyv.h \ 1693 $(SOPHYAINCP)dvlist.h \ 1694 $(SOPHYAINCP)ndatablock.h \ 1695 $(SOPHYAINCP)utilarr.h \ 1696 $(SOPHYAINCP)pidrawer.h \ 1697 $(SOPHYAINCP)pibwdggen.h \ 1698 $(SOPHYAINCP)pisysdep.h \ 1699 $(SOPHYAINCP)piwdgx.h \ 1700 $(SOPHYAINCP)piwdggen.h \ 1701 $(SOPHYAINCP)pimsghandler.h \ 1702 $(SOPHYAINCP)picolist.h \ 1703 $(SOPHYAINCP)picmap.h \ 1704 $(SOPHYAINCP)picmapx.h \ 1705 $(SOPHYAINCP)picmapgen.h \ 1706 $(SOPHYAINCP)pigraphx.h \ 1707 $(SOPHYAINCP)pigraphgen.h \ 1708 $(SOPHYAINCP)pifontx.h \ 1709 $(SOPHYAINCP)pifontgen.h \ 1710 $(SOPHYAINCP)pigrcoord.h \ 1711 $(SOPHYAINCP)pilineatt.h \ 1712 $(SOPHYAINCP)pigraphuc.h \ 1713 $(SOPHYAINCP)pievthandler.h \ 1714 $(SOPHYAINCP)psfile.h \ 1715 $(SOPHYAINCP)pigratt.h \ 1716 $(SOPHYAINCP)piaxes.h \ 1717 $(SOPHYAINCP)hisprof.h 1718 $(CXXCOMPILE) -o $@ $< 1719 1720 $(SOPHYAOBJP)piinit.o: piinit.cc $(SOPHYAINCP)sopnamsp.h \ 1721 $(SOPHYAINCP)machdefs.h piinit.h \ 1722 $(SOPHYAINCP)sambainit.h \ 1723 $(SOPHYAINCP)skymapinit.h \ 1724 $(SOPHYAINCP)sophyainit.h \ 1725 $(SOPHYAINCP)ntoolsinit.h \ 1726 $(SOPHYAINCP)tarrinit.h pistdimgapp.h \ 1727 $(SOPHYAINCP)pisysdep.h \ 1728 $(SOPHYAINCP)piapplx.h \ 1729 $(SOPHYAINCP)piapplgen.h \ 1730 $(SOPHYAINCP)pimsghandler.h \ 1731 $(SOPHYAINCP)picontainerx.h \ 1732 $(SOPHYAINCP)picontainergen.h \ 1733 $(SOPHYAINCP)piwdgx.h \ 1734 $(SOPHYAINCP)piwdggen.h \ 1735 $(SOPHYAINCP)picolist.h \ 1736 $(SOPHYAINCP)pimenubarx.h \ 1737 $(SOPHYAINCP)pimenubargen.h \ 1738 $(SOPHYAINCP)pimenux.h \ 1739 $(SOPHYAINCP)pimenugen.h \ 1740 $(SOPHYAINCP)picons.h \ 1741 $(SOPHYAINCP)pistdwdgx.h \ 1742 $(SOPHYAINCP)pistdwdggen.h \ 1743 $(SOPHYAINCP)pibwdgx.h \ 1744 $(SOPHYAINCP)pibwdggen.h \ 1745 $(SOPHYAINCP)picmap.h \ 1746 $(SOPHYAINCP)picmapx.h \ 1747 $(SOPHYAINCP)picmapgen.h \ 1748 $(SOPHYAINCP)pigraphx.h \ 1749 $(SOPHYAINCP)pigraphgen.h \ 1750 $(SOPHYAINCP)pifontx.h \ 1751 $(SOPHYAINCP)pifontgen.h \ 1752 $(SOPHYAINCP)pigrcoord.h \ 1753 $(SOPHYAINCP)pilineatt.h \ 1754 $(SOPHYAINCP)pigraphuc.h \ 1755 $(SOPHYAINCP)pievthandler.h \ 1756 $(SOPHYAINCP)psfile.h \ 1757 $(SOPHYAINCP)pigraphps.h \ 1758 $(SOPHYAINCP)piwindowx.h \ 1759 $(SOPHYAINCP)piwindowgen.h \ 1760 $(SOPHYAINCP)pioptmenux.h \ 1761 $(SOPHYAINCP)pioptmenugen.h \ 1762 $(SOPHYAINCP)pifilechox.h \ 1763 $(SOPHYAINCP)pifilechogen.h \ 1764 $(SOPHYAINCP)piperiodx.h \ 1765 $(SOPHYAINCP)periodic.h \ 1766 $(SOPHYAINCP)piimage.h \ 1767 $(SOPHYAINCP)parradapter.h \ 1768 $(SOPHYAINCP)lut.h \ 1769 $(SOPHYAINCP)pieldrw.h \ 1770 $(SOPHYAINCP)pidrawer.h \ 1771 $(SOPHYAINCP)pigratt.h \ 1772 $(SOPHYAINCP)piaxes.h \ 1773 $(SOPHYAINCP)pipixmapx.h \ 1774 $(SOPHYAINCP)pipixmapgen.h \ 1775 $(SOPHYAINCP)picmapview.h \ 1776 $(SOPHYAINCP)pi3dwdg.h \ 1777 $(SOPHYAINCP)pi3ddrw.h \ 1778 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 1779 $(SOPHYAINCP)anydataobj.h \ 1780 $(SOPHYAINCP)ppersist.h \ 1781 $(SOPHYAINCP)pexceptions.h \ 1782 $(SOPHYAINCP)gnumd5.h \ 1783 $(SOPHYAINCP)ppfbinstream.h \ 1784 $(SOPHYAINCP)rawstream.h \ 1785 $(SOPHYAINCP)ppfnametag.h \ 1786 $(SOPHYAINCP)dvlist.h \ 1787 $(SOPHYAINCP)objfio.h \ 1788 $(SOPHYAINCP)mutyv.h dlftypes.h piacmd.h \ 1789 $(SOPHYAINCP)commander.h \ 1790 $(SOPHYAINCP)pdlmgr.h \ 1791 $(SOPHYAINCP)ctimer.h \ 1792 $(SOPHYAINCP)zthread.h pisiadw.h \ 1793 $(SOPHYAINCP)pilistx.h \ 1794 $(SOPHYAINCP)pilistgen.h \ 1795 $(SOPHYAINCP)pistzwin.h \ 1796 $(SOPHYAINCP)pitherm.h \ 1797 $(SOPHYAINCP)resusage.h servnobjm.h \ 1798 nomhistadapter.h nomgadapter.h \ 1799 $(SOPHYAINCP)ntupintf.h \ 1800 $(SOPHYAINCP)generalfit.h \ 1801 $(SOPHYAINCP)tvector.h \ 1802 $(SOPHYAINCP)tmatrix.h \ 1803 $(SOPHYAINCP)tarray.h \ 1804 $(SOPHYAINCP)basarr.h \ 1805 $(SOPHYAINCP)ndatablock.h \ 1806 $(SOPHYAINCP)utilarr.h \ 1807 $(SOPHYAINCP)generaldata.h \ 1808 $(SOPHYAINCP)poly.h \ 1809 $(SOPHYAINCP)peida.h \ 1810 $(SOPHYAINCP)utils.h \ 1811 $(SOPHYAINCP)perrors.h \ 1812 $(SOPHYAINCP)fmath.h \ 1813 $(SOPHYAINCP)histos.h \ 1814 $(SOPHYAINCP)histos2.h \ 1815 $(SOPHYAINCP)hisprof.h \ 1816 $(SOPHYAINCP)histerr.h \ 1817 $(SOPHYAINCP)ntuple.h \ 1818 $(SOPHYAINCP)xntuple.h \ 1819 $(SOPHYAINCP)basedtable.h \ 1820 $(SOPHYAINCP)segdatablock.h \ 1821 nomgfdadapter.h nomimagadapter.h \ 1822 $(SOPHYAINCP)cimage.h \ 1823 $(SOPHYAINCP)fioarr.h nomtmatvecadapter.h \ 1824 nomtarradapter.h $(SOPHYAINCP)datatable.h \ 1825 $(SOPHYAINCP)swppfdtable.h \ 1826 $(SOPHYAINCP)swsegdb.h \ 1827 $(SOPHYAINCP)ppfswapper.h \ 1828 $(SOPHYAINCP)ppftpointerio.h \ 1829 nomskymapadapter.h $(SOPHYAINCP)pixelmap.h \ 1830 $(SOPHYAINCP)spherepos.h \ 1831 $(SOPHYAINCP)unitvector.h \ 1832 $(SOPHYAINCP)vector3d.h \ 1833 $(SOPHYAINCP)longlat.h \ 1834 $(SOPHYAINCP)utilgeom.h \ 1835 $(SOPHYAINCP)spherethetaphi.h \ 1836 $(SOPHYAINCP)sphericalmap.h \ 1837 $(SOPHYAINCP)smathconst.h \ 1838 $(SOPHYAINCP)spherehealpix.h \ 1839 $(SOPHYAINCP)HEALPixUtils.h \ 1840 $(SOPHYAINCP)localmap.h \ 1841 $(SOPHYAINCP)sphereecp.h \ 1842 $(SOPHYAINCP)specrespvector.h \ 1843 $(SOPHYAINCP)specresp.h \ 1844 $(SOPHYAINCP)gaussfilt.h \ 1845 nomspecrespadapter.h 1846 $(CXXCOMPILE) -o $@ $< 1847 1848 $(SOPHYAOBJP)pintup3d.o: pintup3d.cc \ 1849 $(SOPHYAINCP)sopnamsp.h pintup3d.h \ 1850 $(SOPHYAINCP)ntupintf.h \ 1851 $(SOPHYAINCP)machdefs.h \ 1852 $(SOPHYAINCP)pi3ddrw.h \ 1853 $(SOPHYAINCP)pisysdep.h \ 1854 $(SOPHYAINCP)pidrawer.h \ 1855 $(SOPHYAINCP)pibwdggen.h \ 1856 $(SOPHYAINCP)piwdgx.h \ 1857 $(SOPHYAINCP)piwdggen.h \ 1858 $(SOPHYAINCP)pimsghandler.h \ 1859 $(SOPHYAINCP)picolist.h \ 1860 $(SOPHYAINCP)picmap.h \ 1861 $(SOPHYAINCP)picmapx.h \ 1862 $(SOPHYAINCP)picmapgen.h \ 1863 $(SOPHYAINCP)pigraphx.h \ 1864 $(SOPHYAINCP)pigraphgen.h \ 1865 $(SOPHYAINCP)pifontx.h \ 1866 $(SOPHYAINCP)pifontgen.h \ 1867 $(SOPHYAINCP)pigrcoord.h \ 1868 $(SOPHYAINCP)pilineatt.h \ 1869 $(SOPHYAINCP)pigraphuc.h \ 1870 $(SOPHYAINCP)pievthandler.h \ 1871 $(SOPHYAINCP)psfile.h \ 1872 $(SOPHYAINCP)pigratt.h \ 1873 $(SOPHYAINCP)piaxes.h \ 1874 $(SOPHYAINCP)pieldrw.h \ 1875 $(SOPHYAINCP)pigraph3d.h 1876 $(CXXCOMPILE) -o $@ $< 1877 1878 $(SOPHYAOBJP)pintuple.o: pintuple.cc \ 1879 $(SOPHYAINCP)sopnamsp.h pintuple.h \ 1880 $(SOPHYAINCP)ntupintf.h \ 1881 $(SOPHYAINCP)machdefs.h \ 1882 $(SOPHYAINCP)pidrawer.h \ 1883 $(SOPHYAINCP)pibwdggen.h \ 1884 $(SOPHYAINCP)pisysdep.h \ 1885 $(SOPHYAINCP)piwdgx.h \ 1886 $(SOPHYAINCP)piwdggen.h \ 1887 $(SOPHYAINCP)pimsghandler.h \ 1888 $(SOPHYAINCP)picolist.h \ 1889 $(SOPHYAINCP)picmap.h \ 1890 $(SOPHYAINCP)picmapx.h \ 1891 $(SOPHYAINCP)picmapgen.h \ 1892 $(SOPHYAINCP)pigraphx.h \ 1893 $(SOPHYAINCP)pigraphgen.h \ 1894 $(SOPHYAINCP)pifontx.h \ 1895 $(SOPHYAINCP)pifontgen.h \ 1896 $(SOPHYAINCP)pigrcoord.h \ 1897 $(SOPHYAINCP)pilineatt.h \ 1898 $(SOPHYAINCP)pigraphuc.h \ 1899 $(SOPHYAINCP)pievthandler.h \ 1900 $(SOPHYAINCP)psfile.h \ 1901 $(SOPHYAINCP)pigratt.h \ 1902 $(SOPHYAINCP)piaxes.h 1903 $(CXXCOMPILE) -o $@ $< 1904 1905 $(SOPHYAOBJP)pipodrw.o: pipodrw.cc \ 1906 $(SOPHYAINCP)sopnamsp.h pipodrw.h \ 1907 $(SOPHYAINCP)machdefs.h \ 1908 $(SOPHYAINCP)pidrawer.h \ 1909 $(SOPHYAINCP)pibwdggen.h \ 1910 $(SOPHYAINCP)pisysdep.h \ 1911 $(SOPHYAINCP)piwdgx.h \ 1912 $(SOPHYAINCP)piwdggen.h \ 1913 $(SOPHYAINCP)pimsghandler.h \ 1914 $(SOPHYAINCP)picolist.h \ 1915 $(SOPHYAINCP)picmap.h \ 1916 $(SOPHYAINCP)picmapx.h \ 1917 $(SOPHYAINCP)picmapgen.h \ 1918 $(SOPHYAINCP)pigraphx.h \ 1919 $(SOPHYAINCP)pigraphgen.h \ 1920 $(SOPHYAINCP)pifontx.h \ 1921 $(SOPHYAINCP)pifontgen.h \ 1922 $(SOPHYAINCP)pigrcoord.h \ 1923 $(SOPHYAINCP)pilineatt.h \ 1924 $(SOPHYAINCP)pigraphuc.h \ 1925 $(SOPHYAINCP)pievthandler.h \ 1926 $(SOPHYAINCP)psfile.h \ 1927 $(SOPHYAINCP)pigratt.h \ 1928 $(SOPHYAINCP)piaxes.h \ 1929 $(SOPHYAINCP)parradapter.h \ 1930 $(SOPHYAINCP)lut.h \ 1931 $(SOPHYAINCP)histos2.h \ 1932 $(SOPHYAINCP)peida.h \ 1933 $(SOPHYAINCP)utils.h \ 1934 $(SOPHYAINCP)perrors.h \ 1935 $(SOPHYAINCP)pexceptions.h \ 1936 $(SOPHYAINCP)fmath.h \ 1937 $(SOPHYAINCP)histos.h \ 1938 $(SOPHYAINCP)objfio.h \ 1939 $(SOPHYAINCP)anydataobj.h \ 1940 $(SOPHYAINCP)ppersist.h \ 1941 $(SOPHYAINCP)gnumd5.h \ 1942 $(SOPHYAINCP)ppfbinstream.h \ 1943 $(SOPHYAINCP)rawstream.h \ 1944 $(SOPHYAINCP)ppfnametag.h \ 1945 $(SOPHYAINCP)tvector.h \ 1946 $(SOPHYAINCP)tmatrix.h \ 1947 $(SOPHYAINCP)tarray.h \ 1948 $(SOPHYAINCP)basarr.h \ 1949 $(SOPHYAINCP)mutyv.h \ 1950 $(SOPHYAINCP)dvlist.h \ 1951 $(SOPHYAINCP)ndatablock.h \ 1952 $(SOPHYAINCP)utilarr.h \ 1953 $(SOPHYAINCP)generalfit.h \ 1954 $(SOPHYAINCP)generaldata.h \ 1955 $(SOPHYAINCP)ntupintf.h \ 1956 $(SOPHYAINCP)poly.h 1957 $(CXXCOMPILE) -o $@ $< 1958 1959 $(SOPHYAOBJP)pisiadw.o: pisiadw.cc \ 1960 $(SOPHYAINCP)sopnamsp.h \ 1961 $(SOPHYAINCP)machdefs.h \ 1962 $(SOPHYAINCP)perrors.h \ 1963 $(SOPHYAINCP)pexceptions.h \ 1964 $(SOPHYAINCP)ctimer.h \ 1965 $(SOPHYAINCP)nbmath.h \ 1966 $(SOPHYAINCP)smathconst.h pistdimgapp.h \ 1967 $(SOPHYAINCP)pisysdep.h \ 1968 $(SOPHYAINCP)piapplx.h \ 1969 $(SOPHYAINCP)piapplgen.h \ 1970 $(SOPHYAINCP)pimsghandler.h \ 1971 $(SOPHYAINCP)picontainerx.h \ 1972 $(SOPHYAINCP)picontainergen.h \ 1973 $(SOPHYAINCP)piwdgx.h \ 1974 $(SOPHYAINCP)piwdggen.h \ 1975 $(SOPHYAINCP)picolist.h \ 1976 $(SOPHYAINCP)pimenubarx.h \ 1977 $(SOPHYAINCP)pimenubargen.h \ 1978 $(SOPHYAINCP)pimenux.h \ 1979 $(SOPHYAINCP)pimenugen.h \ 1980 $(SOPHYAINCP)picons.h \ 1981 $(SOPHYAINCP)pistdwdgx.h \ 1982 $(SOPHYAINCP)pistdwdggen.h \ 1983 $(SOPHYAINCP)pibwdgx.h \ 1984 $(SOPHYAINCP)pibwdggen.h \ 1985 $(SOPHYAINCP)picmap.h \ 1986 $(SOPHYAINCP)picmapx.h \ 1987 $(SOPHYAINCP)picmapgen.h \ 1988 $(SOPHYAINCP)pigraphx.h \ 1989 $(SOPHYAINCP)pigraphgen.h \ 1990 $(SOPHYAINCP)pifontx.h \ 1991 $(SOPHYAINCP)pifontgen.h \ 1992 $(SOPHYAINCP)pigrcoord.h \ 1993 $(SOPHYAINCP)pilineatt.h \ 1994 $(SOPHYAINCP)pigraphuc.h \ 1995 $(SOPHYAINCP)pievthandler.h \ 1996 $(SOPHYAINCP)psfile.h \ 1997 $(SOPHYAINCP)pigraphps.h \ 1998 $(SOPHYAINCP)piwindowx.h \ 1999 $(SOPHYAINCP)piwindowgen.h \ 2000 $(SOPHYAINCP)pioptmenux.h \ 2001 $(SOPHYAINCP)pioptmenugen.h \ 2002 $(SOPHYAINCP)pifilechox.h \ 2003 $(SOPHYAINCP)pifilechogen.h \ 2004 $(SOPHYAINCP)piperiodx.h \ 2005 $(SOPHYAINCP)periodic.h \ 2006 $(SOPHYAINCP)piimage.h \ 2007 $(SOPHYAINCP)parradapter.h \ 2008 $(SOPHYAINCP)lut.h \ 2009 $(SOPHYAINCP)pieldrw.h \ 2010 $(SOPHYAINCP)pidrawer.h \ 2011 $(SOPHYAINCP)pigratt.h \ 2012 $(SOPHYAINCP)piaxes.h \ 2013 $(SOPHYAINCP)pipixmapx.h \ 2014 $(SOPHYAINCP)pipixmapgen.h \ 2015 $(SOPHYAINCP)picmapview.h \ 2016 $(SOPHYAINCP)pi3dwdg.h \ 2017 $(SOPHYAINCP)pi3ddrw.h \ 2018 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 2019 $(SOPHYAINCP)anydataobj.h \ 2020 $(SOPHYAINCP)ppersist.h \ 2021 $(SOPHYAINCP)gnumd5.h \ 2022 $(SOPHYAINCP)ppfbinstream.h \ 2023 $(SOPHYAINCP)rawstream.h \ 2024 $(SOPHYAINCP)ppfnametag.h \ 2025 $(SOPHYAINCP)dvlist.h \ 2026 $(SOPHYAINCP)objfio.h \ 2027 $(SOPHYAINCP)mutyv.h dlftypes.h piacmd.h \ 2028 $(SOPHYAINCP)commander.h \ 2029 $(SOPHYAINCP)pdlmgr.h \ 2030 $(SOPHYAINCP)zthread.h pisiadw.h \ 2031 $(SOPHYAINCP)pilistx.h \ 2032 $(SOPHYAINCP)pilistgen.h \ 2033 $(SOPHYAINCP)pistzwin.h \ 2034 $(SOPHYAINCP)pitherm.h \ 2035 $(SOPHYAINCP)resusage.h servnobjm.h 2036 $(CXXCOMPILE) -o $@ $< 2037 2038 $(SOPHYAOBJP)pistdimgapp.o: pistdimgapp.cc \ 2039 $(SOPHYAINCP)sopnamsp.h \ 2040 $(SOPHYAINCP)machdefs.h \ 2041 $(SOPHYAINCP)strutil.h \ 2042 $(SOPHYAINCP)timing.h \ 2043 $(SOPHYAINCP)perrors.h \ 2044 $(SOPHYAINCP)pexceptions.h \ 2045 $(SOPHYAINCP)ctimer.h \ 2046 $(SOPHYAINCP)psighand.h \ 2047 $(SOPHYAINCP)cimage.h \ 2048 $(SOPHYAINCP)tmatrix.h \ 2049 $(SOPHYAINCP)tarray.h \ 2050 $(SOPHYAINCP)basarr.h \ 2051 $(SOPHYAINCP)anydataobj.h \ 2052 $(SOPHYAINCP)mutyv.h \ 2053 $(SOPHYAINCP)dvlist.h \ 2054 $(SOPHYAINCP)objfio.h \ 2055 $(SOPHYAINCP)ppersist.h \ 2056 $(SOPHYAINCP)gnumd5.h \ 2057 $(SOPHYAINCP)ppfbinstream.h \ 2058 $(SOPHYAINCP)rawstream.h \ 2059 $(SOPHYAINCP)ppfnametag.h \ 2060 $(SOPHYAINCP)ndatablock.h \ 2061 $(SOPHYAINCP)utilarr.h \ 2062 $(SOPHYAINCP)fioarr.h \ 2063 $(SOPHYAINCP)tvector.h pistdimgapp.h \ 2064 $(SOPHYAINCP)pisysdep.h \ 2065 $(SOPHYAINCP)piapplx.h \ 2066 $(SOPHYAINCP)piapplgen.h \ 2067 $(SOPHYAINCP)pimsghandler.h \ 2068 $(SOPHYAINCP)picontainerx.h \ 2069 $(SOPHYAINCP)picontainergen.h \ 2070 $(SOPHYAINCP)piwdgx.h \ 2071 $(SOPHYAINCP)piwdggen.h \ 2072 $(SOPHYAINCP)picolist.h \ 2073 $(SOPHYAINCP)pimenubarx.h \ 2074 $(SOPHYAINCP)pimenubargen.h \ 2075 $(SOPHYAINCP)pimenux.h \ 2076 $(SOPHYAINCP)pimenugen.h \ 2077 $(SOPHYAINCP)picons.h \ 2078 $(SOPHYAINCP)pistdwdgx.h \ 2079 $(SOPHYAINCP)pistdwdggen.h \ 2080 $(SOPHYAINCP)pibwdgx.h \ 2081 $(SOPHYAINCP)pibwdggen.h \ 2082 $(SOPHYAINCP)picmap.h \ 2083 $(SOPHYAINCP)picmapx.h \ 2084 $(SOPHYAINCP)picmapgen.h \ 2085 $(SOPHYAINCP)pigraphx.h \ 2086 $(SOPHYAINCP)pigraphgen.h \ 2087 $(SOPHYAINCP)pifontx.h \ 2088 $(SOPHYAINCP)pifontgen.h \ 2089 $(SOPHYAINCP)pigrcoord.h \ 2090 $(SOPHYAINCP)pilineatt.h \ 2091 $(SOPHYAINCP)pigraphuc.h \ 2092 $(SOPHYAINCP)pievthandler.h \ 2093 $(SOPHYAINCP)psfile.h \ 2094 $(SOPHYAINCP)pigraphps.h \ 2095 $(SOPHYAINCP)piwindowx.h \ 2096 $(SOPHYAINCP)piwindowgen.h \ 2097 $(SOPHYAINCP)pioptmenux.h \ 2098 $(SOPHYAINCP)pioptmenugen.h \ 2099 $(SOPHYAINCP)pifilechox.h \ 2100 $(SOPHYAINCP)pifilechogen.h \ 2101 $(SOPHYAINCP)piperiodx.h \ 2102 $(SOPHYAINCP)periodic.h \ 2103 $(SOPHYAINCP)piimage.h \ 2104 $(SOPHYAINCP)parradapter.h \ 2105 $(SOPHYAINCP)lut.h \ 2106 $(SOPHYAINCP)pieldrw.h \ 2107 $(SOPHYAINCP)pidrawer.h \ 2108 $(SOPHYAINCP)pigratt.h \ 2109 $(SOPHYAINCP)piaxes.h \ 2110 $(SOPHYAINCP)pipixmapx.h \ 2111 $(SOPHYAINCP)pipixmapgen.h \ 2112 $(SOPHYAINCP)picmapview.h \ 2113 $(SOPHYAINCP)pi3dwdg.h \ 2114 $(SOPHYAINCP)pi3ddrw.h \ 2115 $(SOPHYAINCP)pigraph3d.h nobjmgr.h \ 2116 dlftypes.h piacmd.h \ 2117 $(SOPHYAINCP)commander.h \ 2118 $(SOPHYAINCP)pdlmgr.h \ 2119 $(SOPHYAINCP)zthread.h pisiadw.h \ 2120 $(SOPHYAINCP)pilistx.h \ 2121 $(SOPHYAINCP)pilistgen.h \ 2122 $(SOPHYAINCP)pistzwin.h \ 2123 $(SOPHYAINCP)pitherm.h \ 2124 $(SOPHYAINCP)resusage.h servnobjm.h \ 2125 $(SOPHYAINCP)piimgtools.h \ 2126 $(SOPHYAINCP)pidrwtools.h \ 2127 $(SOPHYAINCP)piaxestools.h \ 2128 $(SOPHYAINCP)piscdrawwdg.h piinit.h \ 2129 $(SOPHYAINCP)sambainit.h \ 2130 $(SOPHYAINCP)skymapinit.h \ 2131 $(SOPHYAINCP)sophyainit.h \ 2132 $(SOPHYAINCP)ntoolsinit.h \ 2133 $(SOPHYAINCP)tarrinit.h \ 2134 $(SOPHYAINCP)piversion.h piaversion.h 2135 $(CXXCOMPILE) -o $@ $< 2136 2137 $(SOPHYAOBJP)pitvmaad.o: pitvmaad.cc \ 2138 $(SOPHYAINCP)sopnamsp.h pitvmaad.h \ 2139 $(SOPHYAINCP)machdefs.h \ 2140 $(SOPHYAINCP)parradapter.h \ 2141 $(SOPHYAINCP)lut.h \ 2142 $(SOPHYAINCP)tmatrix.h \ 2143 $(SOPHYAINCP)tarray.h \ 2144 $(SOPHYAINCP)basarr.h \ 2145 $(SOPHYAINCP)anydataobj.h \ 2146 $(SOPHYAINCP)mutyv.h \ 2147 $(SOPHYAINCP)dvlist.h \ 2148 $(SOPHYAINCP)objfio.h \ 2149 $(SOPHYAINCP)ppersist.h \ 2150 $(SOPHYAINCP)pexceptions.h \ 2151 $(SOPHYAINCP)gnumd5.h \ 2152 $(SOPHYAINCP)ppfbinstream.h \ 2153 $(SOPHYAINCP)rawstream.h \ 2154 $(SOPHYAINCP)ppfnametag.h \ 2155 $(SOPHYAINCP)ndatablock.h \ 2156 $(SOPHYAINCP)utilarr.h \ 2157 $(SOPHYAINCP)tvector.h 2158 $(CXXCOMPILE) -o $@ $< 2159 2160 $(SOPHYAOBJP)servnobjm.o: servnobjm.cc \ 2161 $(SOPHYAINCP)sopnamsp.h \ 2162 $(SOPHYAINCP)strutil.h nobjmgr.h \ 2163 $(SOPHYAINCP)machdefs.h \ 2164 $(SOPHYAINCP)anydataobj.h \ 2165 $(SOPHYAINCP)ppersist.h \ 2166 $(SOPHYAINCP)pexceptions.h \ 2167 $(SOPHYAINCP)gnumd5.h \ 2168 $(SOPHYAINCP)ppfbinstream.h \ 2169 $(SOPHYAINCP)rawstream.h \ 2170 $(SOPHYAINCP)ppfnametag.h \ 2171 $(SOPHYAINCP)dvlist.h \ 2172 $(SOPHYAINCP)objfio.h \ 2173 $(SOPHYAINCP)mutyv.h dlftypes.h \ 2174 servnobjm.h $(SOPHYAINCP)pdlmgr.h \ 2175 nomgadapter.h $(SOPHYAINCP)pidrawer.h \ 2176 $(SOPHYAINCP)pibwdggen.h \ 2177 $(SOPHYAINCP)pisysdep.h \ 2178 $(SOPHYAINCP)piwdgx.h \ 2179 $(SOPHYAINCP)piwdggen.h \ 2180 $(SOPHYAINCP)pimsghandler.h \ 2181 $(SOPHYAINCP)picolist.h \ 2182 $(SOPHYAINCP)picmap.h \ 2183 $(SOPHYAINCP)picmapx.h \ 2184 $(SOPHYAINCP)picmapgen.h \ 2185 $(SOPHYAINCP)pigraphx.h \ 2186 $(SOPHYAINCP)pigraphgen.h \ 2187 $(SOPHYAINCP)pifontx.h \ 2188 $(SOPHYAINCP)pifontgen.h \ 2189 $(SOPHYAINCP)pigrcoord.h \ 2190 $(SOPHYAINCP)pilineatt.h \ 2191 $(SOPHYAINCP)pigraphuc.h \ 2192 $(SOPHYAINCP)pievthandler.h \ 2193 $(SOPHYAINCP)psfile.h \ 2194 $(SOPHYAINCP)pigratt.h \ 2195 $(SOPHYAINCP)piaxes.h \ 2196 $(SOPHYAINCP)parradapter.h \ 2197 $(SOPHYAINCP)lut.h \ 2198 $(SOPHYAINCP)ntupintf.h \ 2199 $(SOPHYAINCP)generalfit.h \ 2200 $(SOPHYAINCP)tvector.h \ 2201 $(SOPHYAINCP)tmatrix.h \ 2202 $(SOPHYAINCP)tarray.h \ 2203 $(SOPHYAINCP)basarr.h \ 2204 $(SOPHYAINCP)ndatablock.h \ 2205 $(SOPHYAINCP)utilarr.h \ 2206 $(SOPHYAINCP)generaldata.h \ 2207 $(SOPHYAINCP)poly.h \ 2208 $(SOPHYAINCP)peida.h \ 2209 $(SOPHYAINCP)utils.h \ 2210 $(SOPHYAINCP)perrors.h \ 2211 $(SOPHYAINCP)fmath.h pistdimgapp.h \ 2212 $(SOPHYAINCP)piapplx.h \ 2213 $(SOPHYAINCP)piapplgen.h \ 2214 $(SOPHYAINCP)picontainerx.h \ 2215 $(SOPHYAINCP)picontainergen.h \ 2216 $(SOPHYAINCP)pimenubarx.h \ 2217 $(SOPHYAINCP)pimenubargen.h \ 2218 $(SOPHYAINCP)pimenux.h \ 2219 $(SOPHYAINCP)pimenugen.h \ 2220 $(SOPHYAINCP)picons.h \ 2221 $(SOPHYAINCP)pistdwdgx.h \ 2222 $(SOPHYAINCP)pistdwdggen.h \ 2223 $(SOPHYAINCP)pibwdgx.h \ 2224 $(SOPHYAINCP)pigraphps.h \ 2225 $(SOPHYAINCP)piwindowx.h \ 2226 $(SOPHYAINCP)piwindowgen.h \ 2227 $(SOPHYAINCP)pioptmenux.h \ 2228 $(SOPHYAINCP)pioptmenugen.h \ 2229 $(SOPHYAINCP)pifilechox.h \ 2230 $(SOPHYAINCP)pifilechogen.h \ 2231 $(SOPHYAINCP)piperiodx.h \ 2232 $(SOPHYAINCP)periodic.h \ 2233 $(SOPHYAINCP)piimage.h \ 2234 $(SOPHYAINCP)pieldrw.h \ 2235 $(SOPHYAINCP)pipixmapx.h \ 2236 $(SOPHYAINCP)pipixmapgen.h \ 2237 $(SOPHYAINCP)picmapview.h \ 2238 $(SOPHYAINCP)pi3dwdg.h \ 2239 $(SOPHYAINCP)pi3ddrw.h \ 2240 $(SOPHYAINCP)pigraph3d.h piacmd.h \ 2241 $(SOPHYAINCP)commander.h \ 2242 $(SOPHYAINCP)ctimer.h \ 2243 $(SOPHYAINCP)zthread.h pisiadw.h \ 2244 $(SOPHYAINCP)pilistx.h \ 2245 $(SOPHYAINCP)pilistgen.h \ 2246 $(SOPHYAINCP)pistzwin.h \ 2247 $(SOPHYAINCP)pitherm.h \ 2248 $(SOPHYAINCP)resusage.h \ 2249 $(SOPHYAINCP)fct1dfit.h \ 2250 $(SOPHYAINCP)fct2dfit.h pitvmaad.h \ 2251 $(SOPHYAINCP)ntuple.h \ 2252 $(SOPHYAINCP)cimage.h \ 2253 $(SOPHYAINCP)fioarr.h \ 2254 $(SOPHYAINCP)histos.h \ 2255 $(SOPHYAINCP)histos2.h \ 2256 $(SOPHYAINCP)hisprof.h \ 2257 $(SOPHYAINCP)piyfxdrw.h \ 2258 $(SOPHYAINCP)pisurfdr.h pintuple.h \ 2259 pintup3d.h pipodrw.h 2260 $(CXXCOMPILE) -o $@ $< 2261 -
trunk/SophyaPI/PIext/objlist.list
r1923 r2743 19 19 pigfd1.o 20 20 pigfd2.o 21 pihisto2d.o 21 22 pihisto.o 22 pihisto2d.o23 23 piinit.o 24 24 pintup3d.o -
trunk/SophyaPI/ProgPI/Makefile
r2674 r2743 1 MODULECXXREPNAME := ProgPI 2 MODULEDECCXXFLAGS := -msg_quiet 3 include ../Mgr/Makefile.h 4 5 ifdef NOSHLIB 6 LIBF = $(LIB)libTArray.a $(LIB)libSysTools.a $(LIB)libNTools.a $(LIB)libSkyMap.a $(LIB)libSamba.a $(LIB)libSkyT.a $(LIB)libFitsIOServer.a $(LIB)libPI.a $(LIB)libPIext.a 7 LIBS = -L$(LIB) -lTArray -lSysTools -lNTools -lSkyMap -lSamba -lSkyT -lFitsIOServer -lPI -lPIext -lm 8 ifeq ($(CXX),cxx) 9 # librairie des instances de templates cxx 10 LIBS := $(LIBS) -lertcxx 11 endif 12 else 13 LIBF = $(SLB)libPI.so $(SLB)libsophya.so $(SLB)libextsophya.so 14 15 ifeq ($(MACHEROS),Darwin) 16 LIBS = -L$(SLB) -lPI -lsophya -lextsophya -L/sw/lib -lXm -L/usr/X11R6/lib -lXt -lX11 -framework Accelerate 17 else 18 ifeq ($(MACHEROS),Linux) 19 LIBS = -L$(SLB) -lPI -lsophya -lextsophya -L/usr/X11R6/lib -lXm -lXp -lXt -lX11 -lm 20 else 21 LIBS = -L$(SLB) -lPI -lsophya -lextsophya -lXm -lXp -lXt -lX11 -lm 22 endif 23 endif 24 25 endif 26 LIBSORA := $(LIBS) 27 LDLIBS := $(LIBS) $(LDLIBS) 28 PROGS = $(EXE)spiapp 29 1 include ../BuildMgr/sophyamake.inc 2 3 PROGS = $(SOPHYAEXEP)spiapp 4 30 5 all: $(PROGS) 31 6 32 7 clean: 33 8 rm -f $(PROGS) 34 rm -f $(OBJ)piapp.o $(OBJ)sopiamodule.o $(OBJ)fitsbtadapter.o $(OBJ)w2ps.o $(OBJ)skymapmodule.o 35 if [ -d $(OBJ)cxxrep_ProgPI ] ; then cd $(OBJ)cxxrep_ProgPI ; rm -f *.o ; fi 36 37 spiapp: $(EXE)spiapp 38 echo echo $@ " done" 39 $(EXE)spiapp: $(OBJ)piapp.o $(OBJ)sopiamodule.o $(OBJ)fitsbtadapter.o $(OBJ)w2ps.o $(OBJ)skymapmodule.o 40 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 41 42 $(OBJ)fitsbtadapter.o: fitsbtadapter.cc \ 43 $(INC)machdefs.h \ 44 $(INC)nobjmgr.h \ 45 $(INC)anydataobj.h \ 46 $(INC)ppersist.h \ 47 $(INC)pexceptions.h \ 48 $(INC)gnumd5.h \ 49 $(INC)dvlist.h \ 50 $(INC)objfio.h \ 51 $(INC)mutyv.h \ 52 $(INC)dlftypes.h \ 53 $(INC)servnobjm.h \ 54 $(INC)pdlmgr.h \ 55 $(INC)nomgadapter.h \ 56 $(INC)pidrawer.h \ 57 $(INC)pibwdggen.h \ 58 $(INC)pisysdep.h \ 59 $(INC)piwdgx.h \ 60 $(INC)piwdggen.h \ 61 $(INC)pimsghandler.h \ 62 $(INC)picolist.h \ 63 $(INC)picmap.h \ 64 $(INC)picmapx.h \ 65 $(INC)picmapgen.h \ 66 $(INC)pigraphx.h \ 67 $(INC)pigraphgen.h \ 68 $(INC)pifontx.h \ 69 $(INC)pifontgen.h \ 70 $(INC)pigraphuc.h \ 71 $(INC)pievthandler.h \ 72 $(INC)psfile.h \ 73 $(INC)parradapter.h \ 74 $(INC)lut.h \ 75 $(INC)ntupintf.h \ 76 $(INC)generalfit.h \ 77 $(INC)tvector.h \ 78 $(INC)tmatrix.h \ 79 $(INC)tarray.h \ 80 $(INC)basarr.h \ 81 $(INC)ndatablock.h \ 82 $(INC)utilarr.h \ 83 $(INC)generaldata.h \ 84 $(INC)poly.h \ 85 $(INC)peida.h \ 86 $(INC)utils.h \ 87 $(INC)perrors.h \ 88 $(INC)fmath.h \ 89 $(INC)pistdimgapp.h \ 90 $(INC)piapplx.h \ 91 $(INC)piapplgen.h \ 92 $(INC)picontainerx.h \ 93 $(INC)picontainergen.h \ 94 $(INC)pimenubarx.h \ 95 $(INC)pimenubargen.h \ 96 $(INC)pimenux.h \ 97 $(INC)pimenugen.h \ 98 $(INC)picons.h \ 99 $(INC)pistdwdgx.h \ 100 $(INC)pistdwdggen.h \ 101 $(INC)pibwdgx.h \ 102 $(INC)pigraphps.h \ 103 $(INC)piwindowx.h \ 104 $(INC)piwindowgen.h \ 105 $(INC)pioptmenux.h \ 106 $(INC)pioptmenugen.h \ 107 $(INC)pifilechox.h \ 108 $(INC)pifilechogen.h \ 109 $(INC)piimage.h \ 110 $(INC)pipixmapx.h \ 111 $(INC)pipixmapgen.h \ 112 $(INC)picmapview.h \ 113 $(INC)pi3ddrw.h \ 114 $(INC)pigraph3d.h \ 115 $(INC)piacmd.h \ 116 $(INC)pisiadw.h \ 117 $(INC)pilistx.h \ 118 $(INC)pilistgen.h \ 119 $(INC)pistzwin.h \ 120 $(INC)piperiodx.h \ 121 $(INC)periodic.h \ 122 $(INC)fbtntintf.h 123 $(OBJ)piapp.o: piapp.cc $(INC)pistdimgapp.h \ 124 $(INC)pisysdep.h \ 125 $(INC)machdefs.h \ 126 $(INC)piapplx.h \ 127 $(INC)piapplgen.h \ 128 $(INC)pimsghandler.h \ 129 $(INC)picontainerx.h \ 130 $(INC)picontainergen.h \ 131 $(INC)piwdgx.h \ 132 $(INC)piwdggen.h \ 133 $(INC)picolist.h \ 134 $(INC)pimenubarx.h \ 135 $(INC)pimenubargen.h \ 136 $(INC)pimenux.h \ 137 $(INC)pimenugen.h \ 138 $(INC)picons.h \ 139 $(INC)pistdwdgx.h \ 140 $(INC)pistdwdggen.h \ 141 $(INC)pibwdgx.h \ 142 $(INC)pibwdggen.h \ 143 $(INC)picmap.h \ 144 $(INC)picmapx.h \ 145 $(INC)picmapgen.h \ 146 $(INC)pigraphx.h \ 147 $(INC)pigraphgen.h \ 148 $(INC)pifontx.h \ 149 $(INC)pifontgen.h \ 150 $(INC)pigraphuc.h \ 151 $(INC)pievthandler.h \ 152 $(INC)psfile.h \ 153 $(INC)pigraphps.h \ 154 $(INC)piwindowx.h \ 155 $(INC)piwindowgen.h \ 156 $(INC)pioptmenux.h \ 157 $(INC)pioptmenugen.h \ 158 $(INC)pifilechox.h \ 159 $(INC)pifilechogen.h \ 160 $(INC)piimage.h \ 161 $(INC)parradapter.h \ 162 $(INC)lut.h \ 163 $(INC)pidrawer.h \ 164 $(INC)pipixmapx.h \ 165 $(INC)pipixmapgen.h \ 166 $(INC)picmapview.h \ 167 $(INC)pi3ddrw.h \ 168 $(INC)pigraph3d.h \ 169 $(INC)nobjmgr.h \ 170 $(INC)anydataobj.h \ 171 $(INC)ppersist.h \ 172 $(INC)pexceptions.h \ 173 $(INC)gnumd5.h \ 174 $(INC)dvlist.h \ 175 $(INC)objfio.h \ 176 $(INC)mutyv.h \ 177 $(INC)dlftypes.h \ 178 $(INC)piacmd.h \ 179 $(INC)pdlmgr.h \ 180 $(INC)pisiadw.h \ 181 $(INC)pilistx.h \ 182 $(INC)pilistgen.h \ 183 $(INC)pistzwin.h \ 184 $(INC)piperiodx.h \ 185 $(INC)periodic.h \ 186 $(INC)piversion.h \ 187 $(INC)piaversion.h \ 188 $(INC)timing.h \ 189 $(INC)skyinit.h \ 190 $(INC)ntoolsinit.h \ 191 $(INC)tarrinit.h \ 192 $(INC)sophyainit.h \ 193 $(INC)xntuple.h \ 194 $(INC)ntupintf.h 195 $(OBJ)rznoisemodule.o: rznoisemodule.cc \ 196 $(INC)machdefs.h \ 197 $(INC)piacmd.h \ 198 $(INC)dlftypes.h \ 199 $(INC)pdlmgr.h \ 200 $(INC)nobjmgr.h \ 201 $(INC)anydataobj.h \ 202 $(INC)ppersist.h \ 203 $(INC)pexceptions.h \ 204 $(INC)gnumd5.h \ 205 $(INC)dvlist.h \ 206 $(INC)objfio.h \ 207 $(INC)mutyv.h \ 208 $(INC)pistdimgapp.h \ 209 $(INC)pisysdep.h \ 210 $(INC)piapplx.h \ 211 $(INC)piapplgen.h \ 212 $(INC)pimsghandler.h \ 213 $(INC)picontainerx.h \ 214 $(INC)picontainergen.h \ 215 $(INC)piwdgx.h \ 216 $(INC)piwdggen.h \ 217 $(INC)picolist.h \ 218 $(INC)pimenubarx.h \ 219 $(INC)pimenubargen.h \ 220 $(INC)pimenux.h \ 221 $(INC)pimenugen.h \ 222 $(INC)picons.h \ 223 $(INC)pistdwdgx.h \ 224 $(INC)pistdwdggen.h \ 225 $(INC)pibwdgx.h \ 226 $(INC)pibwdggen.h \ 227 $(INC)picmap.h \ 228 $(INC)picmapx.h \ 229 $(INC)picmapgen.h \ 230 $(INC)pigraphx.h \ 231 $(INC)pigraphgen.h \ 232 $(INC)pifontx.h \ 233 $(INC)pifontgen.h \ 234 $(INC)pigraphuc.h \ 235 $(INC)pievthandler.h \ 236 $(INC)psfile.h \ 237 $(INC)pigraphps.h \ 238 $(INC)piwindowx.h \ 239 $(INC)piwindowgen.h \ 240 $(INC)pioptmenux.h \ 241 $(INC)pioptmenugen.h \ 242 $(INC)pifilechox.h \ 243 $(INC)pifilechogen.h \ 244 $(INC)piimage.h \ 245 $(INC)parradapter.h \ 246 $(INC)lut.h \ 247 $(INC)pidrawer.h \ 248 $(INC)pipixmapx.h \ 249 $(INC)pipixmapgen.h \ 250 $(INC)picmapview.h \ 251 $(INC)pi3ddrw.h \ 252 $(INC)pigraph3d.h \ 253 $(INC)pisiadw.h \ 254 $(INC)pilistx.h \ 255 $(INC)pilistgen.h \ 256 $(INC)pistzwin.h \ 257 $(INC)piperiodx.h \ 258 $(INC)periodic.h \ 259 $(INC)servnobjm.h \ 260 $(INC)tvector.h \ 261 $(INC)tmatrix.h \ 262 $(INC)tarray.h \ 263 $(INC)basarr.h \ 264 $(INC)ndatablock.h \ 265 $(INC)utilarr.h \ 266 $(INC)pitvmaad.h \ 267 $(INC)fftpserver.h \ 268 $(INC)fftservintf.h \ 269 $(INC)bruit.h \ 270 $(INC)piscdrawwdg.h \ 271 $(INC)ctimer.h 272 $(OBJ)sopiamodule.o: sopiamodule.cc \ 273 $(INC)machdefs.h \ 274 $(INC)piacmd.h \ 275 $(INC)dlftypes.h \ 276 $(INC)pdlmgr.h \ 277 $(INC)nobjmgr.h \ 278 $(INC)anydataobj.h \ 279 $(INC)ppersist.h \ 280 $(INC)pexceptions.h \ 281 $(INC)gnumd5.h \ 282 $(INC)dvlist.h \ 283 $(INC)objfio.h \ 284 $(INC)mutyv.h \ 285 $(INC)pistdimgapp.h \ 286 $(INC)pisysdep.h \ 287 $(INC)piapplx.h \ 288 $(INC)piapplgen.h \ 289 $(INC)pimsghandler.h \ 290 $(INC)picontainerx.h \ 291 $(INC)picontainergen.h \ 292 $(INC)piwdgx.h \ 293 $(INC)piwdggen.h \ 294 $(INC)picolist.h \ 295 $(INC)pimenubarx.h \ 296 $(INC)pimenubargen.h \ 297 $(INC)pimenux.h \ 298 $(INC)pimenugen.h \ 299 $(INC)picons.h \ 300 $(INC)pistdwdgx.h \ 301 $(INC)pistdwdggen.h \ 302 $(INC)pibwdgx.h \ 303 $(INC)pibwdggen.h \ 304 $(INC)picmap.h \ 305 $(INC)picmapx.h \ 306 $(INC)picmapgen.h \ 307 $(INC)pigraphx.h \ 308 $(INC)pigraphgen.h \ 309 $(INC)pifontx.h \ 310 $(INC)pifontgen.h \ 311 $(INC)pigraphuc.h \ 312 $(INC)pievthandler.h \ 313 $(INC)psfile.h \ 314 $(INC)pigraphps.h \ 315 $(INC)piwindowx.h \ 316 $(INC)piwindowgen.h \ 317 $(INC)pioptmenux.h \ 318 $(INC)pioptmenugen.h \ 319 $(INC)pifilechox.h \ 320 $(INC)pifilechogen.h \ 321 $(INC)piimage.h \ 322 $(INC)parradapter.h \ 323 $(INC)lut.h \ 324 $(INC)pidrawer.h \ 325 $(INC)pipixmapx.h \ 326 $(INC)pipixmapgen.h \ 327 $(INC)picmapview.h \ 328 $(INC)pi3ddrw.h \ 329 $(INC)pigraph3d.h \ 330 $(INC)pisiadw.h \ 331 $(INC)pilistx.h \ 332 $(INC)pilistgen.h \ 333 $(INC)pistzwin.h \ 334 $(INC)piperiodx.h \ 335 $(INC)periodic.h \ 336 $(INC)servnobjm.h \ 337 $(INC)tvector.h \ 338 $(INC)tmatrix.h \ 339 $(INC)tarray.h \ 340 $(INC)basarr.h \ 341 $(INC)ndatablock.h \ 342 $(INC)utilarr.h \ 343 $(INC)pitvmaad.h \ 344 $(INC)fftpserver.h \ 345 $(INC)fftservintf.h \ 346 $(INC)bruit.h \ 347 $(INC)piscdrawwdg.h \ 348 $(INC)ctimer.h \ 349 $(INC)nomgadapter.h \ 350 $(INC)ntupintf.h \ 351 $(INC)generalfit.h \ 352 $(INC)generaldata.h \ 353 $(INC)poly.h \ 354 $(INC)peida.h \ 355 $(INC)utils.h \ 356 $(INC)perrors.h \ 357 $(INC)fmath.h 358 $(OBJ)w2ps.o: w2ps.cc $(INC)machdefs.h \ 359 $(INC)piacmd.h \ 360 $(INC)dlftypes.h \ 361 $(INC)pdlmgr.h \ 362 $(INC)nobjmgr.h \ 363 $(INC)anydataobj.h \ 364 $(INC)ppersist.h \ 365 $(INC)pexceptions.h \ 366 $(INC)gnumd5.h \ 367 $(INC)dvlist.h \ 368 $(INC)objfio.h \ 369 $(INC)mutyv.h \ 370 $(INC)pistdimgapp.h \ 371 $(INC)pisysdep.h \ 372 $(INC)piapplx.h \ 373 $(INC)piapplgen.h \ 374 $(INC)pimsghandler.h \ 375 $(INC)picontainerx.h \ 376 $(INC)picontainergen.h \ 377 $(INC)piwdgx.h \ 378 $(INC)piwdggen.h \ 379 $(INC)picolist.h \ 380 $(INC)pimenubarx.h \ 381 $(INC)pimenubargen.h \ 382 $(INC)pimenux.h \ 383 $(INC)pimenugen.h \ 384 $(INC)picons.h \ 385 $(INC)pistdwdgx.h \ 386 $(INC)pistdwdggen.h \ 387 $(INC)pibwdgx.h \ 388 $(INC)pibwdggen.h \ 389 $(INC)picmap.h \ 390 $(INC)picmapx.h \ 391 $(INC)picmapgen.h \ 392 $(INC)pigraphx.h \ 393 $(INC)pigraphgen.h \ 394 $(INC)pifontx.h \ 395 $(INC)pifontgen.h \ 396 $(INC)pigraphuc.h \ 397 $(INC)pievthandler.h \ 398 $(INC)psfile.h \ 399 $(INC)pigraphps.h \ 400 $(INC)piwindowx.h \ 401 $(INC)piwindowgen.h \ 402 $(INC)pioptmenux.h \ 403 $(INC)pioptmenugen.h \ 404 $(INC)pifilechox.h \ 405 $(INC)pifilechogen.h \ 406 $(INC)piimage.h \ 407 $(INC)parradapter.h \ 408 $(INC)lut.h \ 409 $(INC)pidrawer.h \ 410 $(INC)pipixmapx.h \ 411 $(INC)pipixmapgen.h \ 412 $(INC)picmapview.h \ 413 $(INC)pi3ddrw.h \ 414 $(INC)pigraph3d.h \ 415 $(INC)pisiadw.h \ 416 $(INC)pilistx.h \ 417 $(INC)pilistgen.h \ 418 $(INC)pistzwin.h \ 419 $(INC)piperiodx.h \ 420 $(INC)periodic.h 421 skymapmodule.o: skymapmodule.cc \ 422 $(INC)machdefs.h \ 423 $(INC)piacmd.h \ 424 $(INC)dlftypes.h \ 425 $(INC)pdlmgr.h \ 426 $(INC)ctimer.h \ 427 $(INC)nobjmgr.h \ 428 $(INC)anydataobj.h \ 429 $(INC)ppersist.h \ 430 $(INC)pexceptions.h \ 431 $(INC)gnumd5.h \ 432 $(INC)dvlist.h \ 433 $(INC)objfio.h \ 434 $(INC)mutyv.h \ 435 $(INC)pistdimgapp.h \ 436 $(INC)pisysdep.h \ 437 $(INC)piapplx.h \ 438 $(INC)piapplgen.h \ 439 $(INC)pimsghandler.h \ 440 $(INC)picontainerx.h \ 441 $(INC)picontainergen.h \ 442 $(INC)piwdgx.h \ 443 $(INC)piwdggen.h \ 444 $(INC)picolist.h \ 445 $(INC)pimenubarx.h \ 446 $(INC)pimenubargen.h \ 447 $(INC)pimenux.h \ 448 $(INC)pimenugen.h \ 449 $(INC)picons.h \ 450 $(INC)pistdwdgx.h \ 451 $(INC)pistdwdggen.h \ 452 $(INC)pibwdgx.h \ 453 $(INC)pibwdggen.h \ 454 $(INC)picmap.h \ 455 $(INC)picmapx.h \ 456 $(INC)picmapgen.h \ 457 $(INC)pigraphx.h \ 458 $(INC)pigraphgen.h \ 459 $(INC)pifontx.h \ 460 $(INC)pifontgen.h \ 461 $(INC)pigrcoord.h \ 462 $(INC)pilineatt.h \ 463 $(INC)pigraphuc.h \ 464 $(INC)pievthandler.h \ 465 $(INC)psfile.h \ 466 $(INC)pigraphps.h \ 467 $(INC)piwindowx.h \ 468 $(INC)piwindowgen.h \ 469 $(INC)pioptmenux.h \ 470 $(INC)pioptmenugen.h \ 471 $(INC)pifilechox.h \ 472 $(INC)pifilechogen.h \ 473 $(INC)piperiodx.h \ 474 $(INC)periodic.h \ 475 $(INC)piimage.h \ 476 $(INC)parradapter.h \ 477 $(INC)lut.h \ 478 $(INC)pieldrw.h \ 479 $(INC)pidrawer.h \ 480 $(INC)pigratt.h \ 481 $(INC)piaxes.h \ 482 $(INC)pipixmapx.h \ 483 $(INC)pipixmapgen.h \ 484 $(INC)picmapview.h \ 485 $(INC)pi3dwdg.h \ 486 $(INC)pi3ddrw.h \ 487 $(INC)pigraph3d.h \ 488 $(INC)pisiadw.h \ 489 $(INC)pilistx.h \ 490 $(INC)pilistgen.h \ 491 $(INC)pistzwin.h \ 492 $(INC)pitherm.h \ 493 $(INC)resusage.h \ 494 $(INC)servnobjm.h \ 495 $(INC)tvector.h \ 496 $(INC)tmatrix.h \ 497 $(INC)tarray.h \ 498 $(INC)basarr.h \ 499 $(INC)ndatablock.h \ 500 $(INC)utilarr.h \ 501 $(INC)nomgadapter.h \ 502 $(INC)ntupintf.h \ 503 $(INC)generalfit.h \ 504 $(INC)generaldata.h \ 505 $(INC)poly.h \ 506 $(INC)peida.h \ 507 $(INC)utils.h \ 508 $(INC)perrors.h \ 509 $(INC)fmath.h \ 510 $(INC)skymap.h \ 511 $(INC)spherethetaphi.h \ 512 $(INC)sphericalmap.h \ 513 $(INC)smathconst.h \ 514 $(INC)pixelmap.h \ 515 $(INC)spherepos.h \ 516 $(INC)unitvector.h \ 517 $(INC)vector3d.h \ 518 $(INC)longlat.h \ 519 $(INC)utilgeom.h \ 520 $(INC)spherehealpix.h \ 521 $(INC)HEALPixUtils.h \ 522 $(INC)localmap.h \ 523 $(INC)fiospherethetaphi.h \ 524 $(INC)fiospherehealpix.h \ 525 $(INC)fiolocalmap.h \ 526 $(INC)sphericaltransformserver.h \ 527 $(INC)fftservintf.h \ 528 $(INC)fftpserver.h \ 529 $(INC)alm.h \ 530 $(INC)nbrandom.h \ 531 $(INC)srandgen.h \ 532 $(INC)nbmath.h \ 533 $(INC)triangmtx.h \ 534 $(INC)lambdaBuilder.h 9 rm -f $(SOPHYAOBJP)piapp.o $(SOPHYAOBJP)sopiamodule.o $(SOPHYAOBJP)fitsbtadapter.o $(SOPHYAOBJP)w2ps.o $(SOPHYAOBJP)skymapmodule.o 10 11 spiapp: $(SOPHYAEXEP)spiapp 12 echo $@ " done" 13 $(SOPHYAEXEP)spiapp: $(SOPHYAOBJP)piapp.o $(SOPHYAOBJP)sopiamodule.o $(SOPHYAOBJP)fitsbtadapter.o $(SOPHYAOBJP)w2ps.o $(SOPHYAOBJP)skymapmodule.o 14 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 15 16 $(SOPHYAOBJP)fitsbtadapter.o: fitsbtadapter.cc \ 17 $(SOPHYAINCP)sopnamsp.h \ 18 $(SOPHYAINCP)machdefs.h \ 19 $(SOPHYAINCP)nobjmgr.h \ 20 $(SOPHYAINCP)anydataobj.h \ 21 $(SOPHYAINCP)ppersist.h \ 22 $(SOPHYAINCP)pexceptions.h \ 23 $(SOPHYAINCP)gnumd5.h \ 24 $(SOPHYAINCP)ppfbinstream.h \ 25 $(SOPHYAINCP)rawstream.h \ 26 $(SOPHYAINCP)ppfnametag.h \ 27 $(SOPHYAINCP)dvlist.h \ 28 $(SOPHYAINCP)objfio.h \ 29 $(SOPHYAINCP)mutyv.h \ 30 $(SOPHYAINCP)dlftypes.h \ 31 $(SOPHYAINCP)servnobjm.h \ 32 $(SOPHYAINCP)pdlmgr.h \ 33 $(SOPHYAINCP)nomgadapter.h \ 34 $(SOPHYAINCP)pidrawer.h \ 35 $(SOPHYAINCP)pibwdggen.h \ 36 $(SOPHYAINCP)pisysdep.h \ 37 $(SOPHYAINCP)piwdgx.h \ 38 $(SOPHYAINCP)piwdggen.h \ 39 $(SOPHYAINCP)pimsghandler.h \ 40 $(SOPHYAINCP)picolist.h \ 41 $(SOPHYAINCP)picmap.h \ 42 $(SOPHYAINCP)picmapx.h \ 43 $(SOPHYAINCP)picmapgen.h \ 44 $(SOPHYAINCP)pigraphx.h \ 45 $(SOPHYAINCP)pigraphgen.h \ 46 $(SOPHYAINCP)pifontx.h \ 47 $(SOPHYAINCP)pifontgen.h \ 48 $(SOPHYAINCP)pigrcoord.h \ 49 $(SOPHYAINCP)pilineatt.h \ 50 $(SOPHYAINCP)pigraphuc.h \ 51 $(SOPHYAINCP)pievthandler.h \ 52 $(SOPHYAINCP)psfile.h \ 53 $(SOPHYAINCP)pigratt.h \ 54 $(SOPHYAINCP)piaxes.h \ 55 $(SOPHYAINCP)parradapter.h \ 56 $(SOPHYAINCP)lut.h \ 57 $(SOPHYAINCP)ntupintf.h \ 58 $(SOPHYAINCP)generalfit.h \ 59 $(SOPHYAINCP)tvector.h \ 60 $(SOPHYAINCP)tmatrix.h \ 61 $(SOPHYAINCP)tarray.h \ 62 $(SOPHYAINCP)basarr.h \ 63 $(SOPHYAINCP)ndatablock.h \ 64 $(SOPHYAINCP)utilarr.h \ 65 $(SOPHYAINCP)generaldata.h \ 66 $(SOPHYAINCP)poly.h \ 67 $(SOPHYAINCP)peida.h \ 68 $(SOPHYAINCP)utils.h \ 69 $(SOPHYAINCP)perrors.h \ 70 $(SOPHYAINCP)fmath.h \ 71 $(SOPHYAINCP)pistdimgapp.h \ 72 $(SOPHYAINCP)piapplx.h \ 73 $(SOPHYAINCP)piapplgen.h \ 74 $(SOPHYAINCP)picontainerx.h \ 75 $(SOPHYAINCP)picontainergen.h \ 76 $(SOPHYAINCP)pimenubarx.h \ 77 $(SOPHYAINCP)pimenubargen.h \ 78 $(SOPHYAINCP)pimenux.h \ 79 $(SOPHYAINCP)pimenugen.h \ 80 $(SOPHYAINCP)picons.h \ 81 $(SOPHYAINCP)pistdwdgx.h \ 82 $(SOPHYAINCP)pistdwdggen.h \ 83 $(SOPHYAINCP)pibwdgx.h \ 84 $(SOPHYAINCP)pigraphps.h \ 85 $(SOPHYAINCP)piwindowx.h \ 86 $(SOPHYAINCP)piwindowgen.h \ 87 $(SOPHYAINCP)pioptmenux.h \ 88 $(SOPHYAINCP)pioptmenugen.h \ 89 $(SOPHYAINCP)pifilechox.h \ 90 $(SOPHYAINCP)pifilechogen.h \ 91 $(SOPHYAINCP)piperiodx.h \ 92 $(SOPHYAINCP)periodic.h \ 93 $(SOPHYAINCP)piimage.h \ 94 $(SOPHYAINCP)pieldrw.h \ 95 $(SOPHYAINCP)pipixmapx.h \ 96 $(SOPHYAINCP)pipixmapgen.h \ 97 $(SOPHYAINCP)picmapview.h \ 98 $(SOPHYAINCP)pi3dwdg.h \ 99 $(SOPHYAINCP)pi3ddrw.h \ 100 $(SOPHYAINCP)pigraph3d.h \ 101 $(SOPHYAINCP)piacmd.h \ 102 $(SOPHYAINCP)commander.h \ 103 $(SOPHYAINCP)ctimer.h \ 104 $(SOPHYAINCP)zthread.h \ 105 $(SOPHYAINCP)pisiadw.h \ 106 $(SOPHYAINCP)pilistx.h \ 107 $(SOPHYAINCP)pilistgen.h \ 108 $(SOPHYAINCP)pistzwin.h \ 109 $(SOPHYAINCP)pitherm.h \ 110 $(SOPHYAINCP)resusage.h \ 111 $(SOPHYAINCP)fbtntintf.h \ 112 $(SOPHYAINCP)FitsIO/fitsio.h \ 113 $(SOPHYAINCP)FitsIO/longnam.h 114 $(CXXCOMPILE) -o $@ $< 115 116 $(SOPHYAOBJP)piapp.o: piapp.cc $(SOPHYAINCP)sopnamsp.h \ 117 $(SOPHYAINCP)pistdimgapp.h \ 118 $(SOPHYAINCP)pisysdep.h \ 119 $(SOPHYAINCP)machdefs.h \ 120 $(SOPHYAINCP)piapplx.h \ 121 $(SOPHYAINCP)piapplgen.h \ 122 $(SOPHYAINCP)pimsghandler.h \ 123 $(SOPHYAINCP)picontainerx.h \ 124 $(SOPHYAINCP)picontainergen.h \ 125 $(SOPHYAINCP)piwdgx.h \ 126 $(SOPHYAINCP)piwdggen.h \ 127 $(SOPHYAINCP)picolist.h \ 128 $(SOPHYAINCP)pimenubarx.h \ 129 $(SOPHYAINCP)pimenubargen.h \ 130 $(SOPHYAINCP)pimenux.h \ 131 $(SOPHYAINCP)pimenugen.h \ 132 $(SOPHYAINCP)picons.h \ 133 $(SOPHYAINCP)pistdwdgx.h \ 134 $(SOPHYAINCP)pistdwdggen.h \ 135 $(SOPHYAINCP)pibwdgx.h \ 136 $(SOPHYAINCP)pibwdggen.h \ 137 $(SOPHYAINCP)picmap.h \ 138 $(SOPHYAINCP)picmapx.h \ 139 $(SOPHYAINCP)picmapgen.h \ 140 $(SOPHYAINCP)pigraphx.h \ 141 $(SOPHYAINCP)pigraphgen.h \ 142 $(SOPHYAINCP)pifontx.h \ 143 $(SOPHYAINCP)pifontgen.h \ 144 $(SOPHYAINCP)pigrcoord.h \ 145 $(SOPHYAINCP)pilineatt.h \ 146 $(SOPHYAINCP)pigraphuc.h \ 147 $(SOPHYAINCP)pievthandler.h \ 148 $(SOPHYAINCP)psfile.h \ 149 $(SOPHYAINCP)pigraphps.h \ 150 $(SOPHYAINCP)piwindowx.h \ 151 $(SOPHYAINCP)piwindowgen.h \ 152 $(SOPHYAINCP)pioptmenux.h \ 153 $(SOPHYAINCP)pioptmenugen.h \ 154 $(SOPHYAINCP)pifilechox.h \ 155 $(SOPHYAINCP)pifilechogen.h \ 156 $(SOPHYAINCP)piperiodx.h \ 157 $(SOPHYAINCP)periodic.h \ 158 $(SOPHYAINCP)piimage.h \ 159 $(SOPHYAINCP)parradapter.h \ 160 $(SOPHYAINCP)lut.h \ 161 $(SOPHYAINCP)pieldrw.h \ 162 $(SOPHYAINCP)pidrawer.h \ 163 $(SOPHYAINCP)pigratt.h \ 164 $(SOPHYAINCP)piaxes.h \ 165 $(SOPHYAINCP)pipixmapx.h \ 166 $(SOPHYAINCP)pipixmapgen.h \ 167 $(SOPHYAINCP)picmapview.h \ 168 $(SOPHYAINCP)pi3dwdg.h \ 169 $(SOPHYAINCP)pi3ddrw.h \ 170 $(SOPHYAINCP)pigraph3d.h \ 171 $(SOPHYAINCP)nobjmgr.h \ 172 $(SOPHYAINCP)anydataobj.h \ 173 $(SOPHYAINCP)ppersist.h \ 174 $(SOPHYAINCP)pexceptions.h \ 175 $(SOPHYAINCP)gnumd5.h \ 176 $(SOPHYAINCP)ppfbinstream.h \ 177 $(SOPHYAINCP)rawstream.h \ 178 $(SOPHYAINCP)ppfnametag.h \ 179 $(SOPHYAINCP)dvlist.h \ 180 $(SOPHYAINCP)objfio.h \ 181 $(SOPHYAINCP)mutyv.h \ 182 $(SOPHYAINCP)dlftypes.h \ 183 $(SOPHYAINCP)piacmd.h \ 184 $(SOPHYAINCP)commander.h \ 185 $(SOPHYAINCP)pdlmgr.h \ 186 $(SOPHYAINCP)ctimer.h \ 187 $(SOPHYAINCP)zthread.h \ 188 $(SOPHYAINCP)pisiadw.h \ 189 $(SOPHYAINCP)pilistx.h \ 190 $(SOPHYAINCP)pilistgen.h \ 191 $(SOPHYAINCP)pistzwin.h \ 192 $(SOPHYAINCP)pitherm.h \ 193 $(SOPHYAINCP)resusage.h \ 194 $(SOPHYAINCP)piversion.h \ 195 $(SOPHYAINCP)piaversion.h \ 196 $(SOPHYAINCP)timing.h \ 197 $(SOPHYAINCP)skyinit.h \ 198 $(SOPHYAINCP)ntoolsinit.h \ 199 $(SOPHYAINCP)tarrinit.h \ 200 $(SOPHYAINCP)sophyainit.h \ 201 $(SOPHYAINCP)xntuple.h \ 202 $(SOPHYAINCP)ntupintf.h 203 $(CXXCOMPILE) -o $@ $< 204 205 $(SOPHYAOBJP)skymapmodule.o: skymapmodule.cc \ 206 $(SOPHYAINCP)sopnamsp.h \ 207 $(SOPHYAINCP)machdefs.h \ 208 $(SOPHYAINCP)piacmd.h \ 209 $(SOPHYAINCP)commander.h \ 210 $(SOPHYAINCP)pdlmgr.h \ 211 $(SOPHYAINCP)dvlist.h \ 212 $(SOPHYAINCP)objfio.h \ 213 $(SOPHYAINCP)anydataobj.h \ 214 $(SOPHYAINCP)ppersist.h \ 215 $(SOPHYAINCP)pexceptions.h \ 216 $(SOPHYAINCP)gnumd5.h \ 217 $(SOPHYAINCP)ppfbinstream.h \ 218 $(SOPHYAINCP)rawstream.h \ 219 $(SOPHYAINCP)ppfnametag.h \ 220 $(SOPHYAINCP)mutyv.h \ 221 $(SOPHYAINCP)ctimer.h \ 222 $(SOPHYAINCP)zthread.h \ 223 $(SOPHYAINCP)dlftypes.h \ 224 $(SOPHYAINCP)nobjmgr.h \ 225 $(SOPHYAINCP)pistdimgapp.h \ 226 $(SOPHYAINCP)pisysdep.h \ 227 $(SOPHYAINCP)piapplx.h \ 228 $(SOPHYAINCP)piapplgen.h \ 229 $(SOPHYAINCP)pimsghandler.h \ 230 $(SOPHYAINCP)picontainerx.h \ 231 $(SOPHYAINCP)picontainergen.h \ 232 $(SOPHYAINCP)piwdgx.h \ 233 $(SOPHYAINCP)piwdggen.h \ 234 $(SOPHYAINCP)picolist.h \ 235 $(SOPHYAINCP)pimenubarx.h \ 236 $(SOPHYAINCP)pimenubargen.h \ 237 $(SOPHYAINCP)pimenux.h \ 238 $(SOPHYAINCP)pimenugen.h \ 239 $(SOPHYAINCP)picons.h \ 240 $(SOPHYAINCP)pistdwdgx.h \ 241 $(SOPHYAINCP)pistdwdggen.h \ 242 $(SOPHYAINCP)pibwdgx.h \ 243 $(SOPHYAINCP)pibwdggen.h \ 244 $(SOPHYAINCP)picmap.h \ 245 $(SOPHYAINCP)picmapx.h \ 246 $(SOPHYAINCP)picmapgen.h \ 247 $(SOPHYAINCP)pigraphx.h \ 248 $(SOPHYAINCP)pigraphgen.h \ 249 $(SOPHYAINCP)pifontx.h \ 250 $(SOPHYAINCP)pifontgen.h \ 251 $(SOPHYAINCP)pigrcoord.h \ 252 $(SOPHYAINCP)pilineatt.h \ 253 $(SOPHYAINCP)pigraphuc.h \ 254 $(SOPHYAINCP)pievthandler.h \ 255 $(SOPHYAINCP)psfile.h \ 256 $(SOPHYAINCP)pigraphps.h \ 257 $(SOPHYAINCP)piwindowx.h \ 258 $(SOPHYAINCP)piwindowgen.h \ 259 $(SOPHYAINCP)pioptmenux.h \ 260 $(SOPHYAINCP)pioptmenugen.h \ 261 $(SOPHYAINCP)pifilechox.h \ 262 $(SOPHYAINCP)pifilechogen.h \ 263 $(SOPHYAINCP)piperiodx.h \ 264 $(SOPHYAINCP)periodic.h \ 265 $(SOPHYAINCP)piimage.h \ 266 $(SOPHYAINCP)parradapter.h \ 267 $(SOPHYAINCP)lut.h \ 268 $(SOPHYAINCP)pieldrw.h \ 269 $(SOPHYAINCP)pidrawer.h \ 270 $(SOPHYAINCP)pigratt.h \ 271 $(SOPHYAINCP)piaxes.h \ 272 $(SOPHYAINCP)pipixmapx.h \ 273 $(SOPHYAINCP)pipixmapgen.h \ 274 $(SOPHYAINCP)picmapview.h \ 275 $(SOPHYAINCP)pi3dwdg.h \ 276 $(SOPHYAINCP)pi3ddrw.h \ 277 $(SOPHYAINCP)pigraph3d.h \ 278 $(SOPHYAINCP)pisiadw.h \ 279 $(SOPHYAINCP)pilistx.h \ 280 $(SOPHYAINCP)pilistgen.h \ 281 $(SOPHYAINCP)pistzwin.h \ 282 $(SOPHYAINCP)pitherm.h \ 283 $(SOPHYAINCP)resusage.h \ 284 $(SOPHYAINCP)servnobjm.h \ 285 $(SOPHYAINCP)nomgadapter.h \ 286 $(SOPHYAINCP)ntupintf.h \ 287 $(SOPHYAINCP)generalfit.h \ 288 $(SOPHYAINCP)tvector.h \ 289 $(SOPHYAINCP)tmatrix.h \ 290 $(SOPHYAINCP)tarray.h \ 291 $(SOPHYAINCP)basarr.h \ 292 $(SOPHYAINCP)ndatablock.h \ 293 $(SOPHYAINCP)utilarr.h \ 294 $(SOPHYAINCP)generaldata.h \ 295 $(SOPHYAINCP)poly.h \ 296 $(SOPHYAINCP)peida.h \ 297 $(SOPHYAINCP)utils.h \ 298 $(SOPHYAINCP)perrors.h \ 299 $(SOPHYAINCP)fmath.h \ 300 $(SOPHYAINCP)ntuple.h \ 301 $(SOPHYAINCP)slinparbuff.h \ 302 $(SOPHYAINCP)localmap.h \ 303 $(SOPHYAINCP)pixelmap.h \ 304 $(SOPHYAINCP)spherepos.h \ 305 $(SOPHYAINCP)unitvector.h \ 306 $(SOPHYAINCP)vector3d.h \ 307 $(SOPHYAINCP)longlat.h \ 308 $(SOPHYAINCP)utilgeom.h \ 309 $(SOPHYAINCP)sphericalmap.h \ 310 $(SOPHYAINCP)smathconst.h \ 311 $(SOPHYAINCP)spherehealpix.h \ 312 $(SOPHYAINCP)HEALPixUtils.h \ 313 $(SOPHYAINCP)spherethetaphi.h \ 314 $(SOPHYAINCP)sphericaltransformserver.h \ 315 $(SOPHYAINCP)fftservintf.h \ 316 $(SOPHYAINCP)fftpserver.h \ 317 $(SOPHYAINCP)alm.h \ 318 $(SOPHYAINCP)nbrandom.h \ 319 $(SOPHYAINCP)srandgen.h \ 320 $(SOPHYAINCP)nbmath.h \ 321 $(SOPHYAINCP)triangmtx.h \ 322 $(SOPHYAINCP)lambdaBuilder.h 323 $(CXXCOMPILE) -o $@ $< 324 325 $(SOPHYAOBJP)sopiamodule.o: sopiamodule.cc \ 326 $(SOPHYAINCP)sopnamsp.h \ 327 $(SOPHYAINCP)machdefs.h \ 328 $(SOPHYAINCP)piacmd.h \ 329 $(SOPHYAINCP)commander.h \ 330 $(SOPHYAINCP)pdlmgr.h \ 331 $(SOPHYAINCP)dvlist.h \ 332 $(SOPHYAINCP)objfio.h \ 333 $(SOPHYAINCP)anydataobj.h \ 334 $(SOPHYAINCP)ppersist.h \ 335 $(SOPHYAINCP)pexceptions.h \ 336 $(SOPHYAINCP)gnumd5.h \ 337 $(SOPHYAINCP)ppfbinstream.h \ 338 $(SOPHYAINCP)rawstream.h \ 339 $(SOPHYAINCP)ppfnametag.h \ 340 $(SOPHYAINCP)mutyv.h \ 341 $(SOPHYAINCP)ctimer.h \ 342 $(SOPHYAINCP)zthread.h \ 343 $(SOPHYAINCP)dlftypes.h \ 344 $(SOPHYAINCP)nobjmgr.h \ 345 $(SOPHYAINCP)pistdimgapp.h \ 346 $(SOPHYAINCP)pisysdep.h \ 347 $(SOPHYAINCP)piapplx.h \ 348 $(SOPHYAINCP)piapplgen.h \ 349 $(SOPHYAINCP)pimsghandler.h \ 350 $(SOPHYAINCP)picontainerx.h \ 351 $(SOPHYAINCP)picontainergen.h \ 352 $(SOPHYAINCP)piwdgx.h \ 353 $(SOPHYAINCP)piwdggen.h \ 354 $(SOPHYAINCP)picolist.h \ 355 $(SOPHYAINCP)pimenubarx.h \ 356 $(SOPHYAINCP)pimenubargen.h \ 357 $(SOPHYAINCP)pimenux.h \ 358 $(SOPHYAINCP)pimenugen.h \ 359 $(SOPHYAINCP)picons.h \ 360 $(SOPHYAINCP)pistdwdgx.h \ 361 $(SOPHYAINCP)pistdwdggen.h \ 362 $(SOPHYAINCP)pibwdgx.h \ 363 $(SOPHYAINCP)pibwdggen.h \ 364 $(SOPHYAINCP)picmap.h \ 365 $(SOPHYAINCP)picmapx.h \ 366 $(SOPHYAINCP)picmapgen.h \ 367 $(SOPHYAINCP)pigraphx.h \ 368 $(SOPHYAINCP)pigraphgen.h \ 369 $(SOPHYAINCP)pifontx.h \ 370 $(SOPHYAINCP)pifontgen.h \ 371 $(SOPHYAINCP)pigrcoord.h \ 372 $(SOPHYAINCP)pilineatt.h \ 373 $(SOPHYAINCP)pigraphuc.h \ 374 $(SOPHYAINCP)pievthandler.h \ 375 $(SOPHYAINCP)psfile.h \ 376 $(SOPHYAINCP)pigraphps.h \ 377 $(SOPHYAINCP)piwindowx.h \ 378 $(SOPHYAINCP)piwindowgen.h \ 379 $(SOPHYAINCP)pioptmenux.h \ 380 $(SOPHYAINCP)pioptmenugen.h \ 381 $(SOPHYAINCP)pifilechox.h \ 382 $(SOPHYAINCP)pifilechogen.h \ 383 $(SOPHYAINCP)piperiodx.h \ 384 $(SOPHYAINCP)periodic.h \ 385 $(SOPHYAINCP)piimage.h \ 386 $(SOPHYAINCP)parradapter.h \ 387 $(SOPHYAINCP)lut.h \ 388 $(SOPHYAINCP)pieldrw.h \ 389 $(SOPHYAINCP)pidrawer.h \ 390 $(SOPHYAINCP)pigratt.h \ 391 $(SOPHYAINCP)piaxes.h \ 392 $(SOPHYAINCP)pipixmapx.h \ 393 $(SOPHYAINCP)pipixmapgen.h \ 394 $(SOPHYAINCP)picmapview.h \ 395 $(SOPHYAINCP)pi3dwdg.h \ 396 $(SOPHYAINCP)pi3ddrw.h \ 397 $(SOPHYAINCP)pigraph3d.h \ 398 $(SOPHYAINCP)pisiadw.h \ 399 $(SOPHYAINCP)pilistx.h \ 400 $(SOPHYAINCP)pilistgen.h \ 401 $(SOPHYAINCP)pistzwin.h \ 402 $(SOPHYAINCP)pitherm.h \ 403 $(SOPHYAINCP)resusage.h \ 404 $(SOPHYAINCP)servnobjm.h \ 405 $(SOPHYAINCP)tvector.h \ 406 $(SOPHYAINCP)tmatrix.h \ 407 $(SOPHYAINCP)tarray.h \ 408 $(SOPHYAINCP)basarr.h \ 409 $(SOPHYAINCP)ndatablock.h \ 410 $(SOPHYAINCP)utilarr.h \ 411 $(SOPHYAINCP)pitvmaad.h \ 412 $(SOPHYAINCP)fftpserver.h \ 413 $(SOPHYAINCP)fftservintf.h \ 414 $(SOPHYAINCP)bruit.h \ 415 $(SOPHYAINCP)piscdrawwdg.h \ 416 $(SOPHYAINCP)nomgadapter.h \ 417 $(SOPHYAINCP)ntupintf.h \ 418 $(SOPHYAINCP)generalfit.h \ 419 $(SOPHYAINCP)generaldata.h \ 420 $(SOPHYAINCP)poly.h \ 421 $(SOPHYAINCP)peida.h \ 422 $(SOPHYAINCP)utils.h \ 423 $(SOPHYAINCP)perrors.h \ 424 $(SOPHYAINCP)fmath.h \ 425 $(SOPHYAINCP)nomskymapadapter.h \ 426 $(SOPHYAINCP)pixelmap.h \ 427 $(SOPHYAINCP)spherepos.h \ 428 $(SOPHYAINCP)unitvector.h \ 429 $(SOPHYAINCP)vector3d.h \ 430 $(SOPHYAINCP)longlat.h \ 431 $(SOPHYAINCP)utilgeom.h 432 $(CXXCOMPILE) -o $@ $< 433 434 $(SOPHYAOBJP)w2ps.o: w2ps.cc $(SOPHYAINCP)sopnamsp.h \ 435 $(SOPHYAINCP)machdefs.h \ 436 $(SOPHYAINCP)piacmd.h \ 437 $(SOPHYAINCP)commander.h \ 438 $(SOPHYAINCP)pdlmgr.h \ 439 $(SOPHYAINCP)dvlist.h \ 440 $(SOPHYAINCP)objfio.h \ 441 $(SOPHYAINCP)anydataobj.h \ 442 $(SOPHYAINCP)ppersist.h \ 443 $(SOPHYAINCP)pexceptions.h \ 444 $(SOPHYAINCP)gnumd5.h \ 445 $(SOPHYAINCP)ppfbinstream.h \ 446 $(SOPHYAINCP)rawstream.h \ 447 $(SOPHYAINCP)ppfnametag.h \ 448 $(SOPHYAINCP)mutyv.h \ 449 $(SOPHYAINCP)ctimer.h \ 450 $(SOPHYAINCP)zthread.h \ 451 $(SOPHYAINCP)dlftypes.h \ 452 $(SOPHYAINCP)nobjmgr.h \ 453 $(SOPHYAINCP)pistdimgapp.h \ 454 $(SOPHYAINCP)pisysdep.h \ 455 $(SOPHYAINCP)piapplx.h \ 456 $(SOPHYAINCP)piapplgen.h \ 457 $(SOPHYAINCP)pimsghandler.h \ 458 $(SOPHYAINCP)picontainerx.h \ 459 $(SOPHYAINCP)picontainergen.h \ 460 $(SOPHYAINCP)piwdgx.h \ 461 $(SOPHYAINCP)piwdggen.h \ 462 $(SOPHYAINCP)picolist.h \ 463 $(SOPHYAINCP)pimenubarx.h \ 464 $(SOPHYAINCP)pimenubargen.h \ 465 $(SOPHYAINCP)pimenux.h \ 466 $(SOPHYAINCP)pimenugen.h \ 467 $(SOPHYAINCP)picons.h \ 468 $(SOPHYAINCP)pistdwdgx.h \ 469 $(SOPHYAINCP)pistdwdggen.h \ 470 $(SOPHYAINCP)pibwdgx.h \ 471 $(SOPHYAINCP)pibwdggen.h \ 472 $(SOPHYAINCP)picmap.h \ 473 $(SOPHYAINCP)picmapx.h \ 474 $(SOPHYAINCP)picmapgen.h \ 475 $(SOPHYAINCP)pigraphx.h \ 476 $(SOPHYAINCP)pigraphgen.h \ 477 $(SOPHYAINCP)pifontx.h \ 478 $(SOPHYAINCP)pifontgen.h \ 479 $(SOPHYAINCP)pigrcoord.h \ 480 $(SOPHYAINCP)pilineatt.h \ 481 $(SOPHYAINCP)pigraphuc.h \ 482 $(SOPHYAINCP)pievthandler.h \ 483 $(SOPHYAINCP)psfile.h \ 484 $(SOPHYAINCP)pigraphps.h \ 485 $(SOPHYAINCP)piwindowx.h \ 486 $(SOPHYAINCP)piwindowgen.h \ 487 $(SOPHYAINCP)pioptmenux.h \ 488 $(SOPHYAINCP)pioptmenugen.h \ 489 $(SOPHYAINCP)pifilechox.h \ 490 $(SOPHYAINCP)pifilechogen.h \ 491 $(SOPHYAINCP)piperiodx.h \ 492 $(SOPHYAINCP)periodic.h \ 493 $(SOPHYAINCP)piimage.h \ 494 $(SOPHYAINCP)parradapter.h \ 495 $(SOPHYAINCP)lut.h \ 496 $(SOPHYAINCP)pieldrw.h \ 497 $(SOPHYAINCP)pidrawer.h \ 498 $(SOPHYAINCP)pigratt.h \ 499 $(SOPHYAINCP)piaxes.h \ 500 $(SOPHYAINCP)pipixmapx.h \ 501 $(SOPHYAINCP)pipixmapgen.h \ 502 $(SOPHYAINCP)picmapview.h \ 503 $(SOPHYAINCP)pi3dwdg.h \ 504 $(SOPHYAINCP)pi3ddrw.h \ 505 $(SOPHYAINCP)pigraph3d.h \ 506 $(SOPHYAINCP)pisiadw.h \ 507 $(SOPHYAINCP)pilistx.h \ 508 $(SOPHYAINCP)pilistgen.h \ 509 $(SOPHYAINCP)pistzwin.h \ 510 $(SOPHYAINCP)pitherm.h \ 511 $(SOPHYAINCP)resusage.h 512 $(CXXCOMPILE) -o $@ $< 513 -
trunk/SophyaPI/ProgPI/programs
r1524 r2743 1 spiapp piapp.o sopiamodule.o fitsbtadapter.o w2ps.o 1 spiapp piapp.o sopiamodule.o fitsbtadapter.o w2ps.o skymapmodule.o -
trunk/SophyaProg/PMixer/Makefile
r1417 r2743 1 MODULECXXREPNAME := PMixer 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 ifdef ORACLE_HOME 17 LIBSORA := -L$(LIB) -lDb++ $(LIBS) -lErosDb -L$(ORACLE_HOME)/lib -lclntsh 18 endif 19 LDLIBS := $(LIBS) $(LDLIBS) 20 PROGS = $(EXE)skymixer $(EXE)extractRS $(EXE)tgrsr $(EXE)tgsky $(EXE)easyTest $(EXE)Sph2Sph 1 include ../BuildMgr/sophyamake.inc 2 3 PROGS = $(SOPHYAEXEP)skymixer $(SOPHYAEXEP)extractRS $(SOPHYAEXEP)tgrsr $(SOPHYAEXEP)tgsky $(SOPHYAEXEP)easyTest $(SOPHYAEXEP)Sph2Sph 21 4 22 5 all: $(PROGS) 23 6 24 7 clean: 25 8 rm -f $(PROGS) 26 if [ -d $(OBJ)cxxrep_PMixer ] ; then cd $(OBJ)cxxrep_PMixer ; rm -f *.o ; fi 27 28 skymixer: $(EXE)skymixer 29 30 $(EXE)skymixer: $(OBJ)skymixer.o 31 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 32 33 extractRS: $(EXE)extractRS 34 35 $(EXE)extractRS: $(OBJ)extractRS.o 36 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 37 38 tgrsr: $(EXE)tgrsr 39 40 $(EXE)tgrsr: $(OBJ)tgrsr.o 41 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 42 43 tgsky: $(EXE)tgsky 44 45 $(EXE)tgsky: $(OBJ)tgsky.o 46 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 47 48 easyTest: $(EXE)easyTest 49 50 $(EXE)easyTest: $(OBJ)easyTest.o 51 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 52 53 Sph2Sph: $(EXE)Sph2Sph 54 55 $(EXE)Sph2Sph: $(OBJ)Sph2Sph.o 56 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 57 58 $(OBJ)Sph2Sph.o: Sph2Sph.cc pmixer.h \ 59 $(INC)machdefs.h \ 60 $(INC)tmatrix.h \ 61 $(INC)tarray.h \ 62 $(INC)basarr.h \ 63 $(INC)anydataobj.h \ 64 $(INC)mutyv.h \ 65 $(INC)dvlist.h \ 66 $(INC)objfio.h \ 67 $(INC)ppersist.h \ 68 $(INC)pexceptions.h \ 69 $(INC)gnumd5.h \ 70 $(INC)ndatablock.h \ 71 $(INC)utilarr.h \ 72 $(INC)tvector.h \ 73 $(INC)fioarr.h \ 74 $(INC)vector3d.h \ 75 $(INC)longlat.h \ 76 $(INC)utilgeom.h \ 77 $(INC)srandgen.h \ 78 $(INC)timing.h \ 79 $(INC)sambainit.h \ 80 $(INC)skymapinit.h \ 81 $(INC)sophyainit.h \ 82 $(INC)ntoolsinit.h \ 83 $(INC)tarrinit.h \ 84 $(INC)datacards.h \ 85 $(INC)ntuple.h \ 86 $(INC)ntupintf.h \ 87 $(INC)fiospherehealpix.h \ 88 $(INC)sphericalmap.h \ 89 $(INC)smathconst.h \ 90 $(INC)pixelmap.h \ 91 $(INC)spherepos.h \ 92 $(INC)unitvector.h \ 93 $(INC)spherehealpix.h \ 94 $(INC)HEALPixUtils.h \ 95 $(INC)fitsspherehealpix.h \ 96 $(INC)fitsfile.h \ 97 $(INC)fitstarray.h \ 98 $(INC)cimage.h \ 99 $(INC)radspecvector.h \ 100 $(INC)radspec.h \ 101 $(INC)specresp.h \ 102 $(INC)blackbody.h \ 103 $(INC)convtools.h \ 104 $(INC)derivblackbody.h \ 105 $(INC)nupower.h \ 106 $(INC)squarefilt.h \ 107 $(INC)trianglefilt.h \ 108 $(INC)specrespvector.h \ 109 $(INC)gaussfilt.h \ 110 $(INC)bruit.h \ 111 $(INC)mapoperation.h 112 $(OBJ)easyTest.o: easyTest.cc $(INC)blackbody.h \ 113 $(INC)radspec.h \ 114 $(INC)machdefs.h \ 115 $(INC)specresp.h \ 116 $(INC)anydataobj.h \ 117 $(INC)objfio.h \ 118 $(INC)ppersist.h \ 119 $(INC)pexceptions.h \ 120 $(INC)gnumd5.h \ 121 $(INC)convtools.h \ 122 $(INC)radspecvector.h \ 123 $(INC)tvector.h \ 124 $(INC)tmatrix.h \ 125 $(INC)tarray.h \ 126 $(INC)basarr.h \ 127 $(INC)mutyv.h \ 128 $(INC)dvlist.h \ 129 $(INC)ndatablock.h \ 130 $(INC)utilarr.h \ 131 $(INC)specrespvector.h \ 132 $(INC)squarefilt.h \ 133 $(INC)gaussfilt.h \ 134 $(INC)trianglefilt.h 135 $(OBJ)extractRS.o: extractRS.cc pmixer.h \ 136 $(INC)machdefs.h \ 137 $(INC)tmatrix.h \ 138 $(INC)tarray.h \ 139 $(INC)basarr.h \ 140 $(INC)anydataobj.h \ 141 $(INC)mutyv.h \ 142 $(INC)dvlist.h \ 143 $(INC)objfio.h \ 144 $(INC)ppersist.h \ 145 $(INC)pexceptions.h \ 146 $(INC)gnumd5.h \ 147 $(INC)ndatablock.h \ 148 $(INC)utilarr.h \ 149 $(INC)tvector.h \ 150 $(INC)fioarr.h \ 151 $(INC)vector3d.h \ 152 $(INC)longlat.h \ 153 $(INC)utilgeom.h \ 154 $(INC)srandgen.h \ 155 $(INC)timing.h \ 156 $(INC)sambainit.h \ 157 $(INC)skymapinit.h \ 158 $(INC)sophyainit.h \ 159 $(INC)ntoolsinit.h \ 160 $(INC)tarrinit.h \ 161 $(INC)datacards.h \ 162 $(INC)ntuple.h \ 163 $(INC)ntupintf.h \ 164 $(INC)fiospherehealpix.h \ 165 $(INC)sphericalmap.h \ 166 $(INC)smathconst.h \ 167 $(INC)pixelmap.h \ 168 $(INC)spherepos.h \ 169 $(INC)unitvector.h \ 170 $(INC)spherehealpix.h \ 171 $(INC)HEALPixUtils.h \ 172 $(INC)fitsspherehealpix.h \ 173 $(INC)fitsfile.h \ 174 $(INC)fitstarray.h \ 175 $(INC)cimage.h \ 176 $(INC)radspecvector.h \ 177 $(INC)radspec.h \ 178 $(INC)specresp.h \ 179 $(INC)blackbody.h \ 180 $(INC)convtools.h \ 181 $(INC)derivblackbody.h \ 182 $(INC)nupower.h \ 183 $(INC)squarefilt.h \ 184 $(INC)trianglefilt.h \ 185 $(INC)specrespvector.h \ 186 $(INC)gaussfilt.h \ 187 $(INC)bruit.h \ 188 $(INC)mapoperation.h 189 $(OBJ)skymixer.o: skymixer.cc pmixer.h \ 190 $(INC)machdefs.h \ 191 $(INC)tmatrix.h \ 192 $(INC)tarray.h \ 193 $(INC)basarr.h \ 194 $(INC)anydataobj.h \ 195 $(INC)mutyv.h \ 196 $(INC)dvlist.h \ 197 $(INC)objfio.h \ 198 $(INC)ppersist.h \ 199 $(INC)pexceptions.h \ 200 $(INC)gnumd5.h \ 201 $(INC)ndatablock.h \ 202 $(INC)utilarr.h \ 203 $(INC)tvector.h \ 204 $(INC)fioarr.h \ 205 $(INC)vector3d.h \ 206 $(INC)longlat.h \ 207 $(INC)utilgeom.h \ 208 $(INC)srandgen.h \ 209 $(INC)timing.h \ 210 $(INC)sambainit.h \ 211 $(INC)skymapinit.h \ 212 $(INC)sophyainit.h \ 213 $(INC)ntoolsinit.h \ 214 $(INC)tarrinit.h \ 215 $(INC)datacards.h \ 216 $(INC)ntuple.h \ 217 $(INC)ntupintf.h \ 218 $(INC)fiospherehealpix.h \ 219 $(INC)sphericalmap.h \ 220 $(INC)smathconst.h \ 221 $(INC)pixelmap.h \ 222 $(INC)spherepos.h \ 223 $(INC)unitvector.h \ 224 $(INC)spherehealpix.h \ 225 $(INC)HEALPixUtils.h \ 226 $(INC)fitsspherehealpix.h \ 227 $(INC)fitsfile.h \ 228 $(INC)fitstarray.h \ 229 $(INC)cimage.h \ 230 $(INC)radspecvector.h \ 231 $(INC)radspec.h \ 232 $(INC)specresp.h \ 233 $(INC)blackbody.h \ 234 $(INC)convtools.h \ 235 $(INC)derivblackbody.h \ 236 $(INC)nupower.h \ 237 $(INC)squarefilt.h \ 238 $(INC)trianglefilt.h \ 239 $(INC)specrespvector.h \ 240 $(INC)gaussfilt.h \ 241 $(INC)bruit.h \ 242 $(INC)mapoperation.h 243 $(OBJ)tgrsr.o: tgrsr.cc pmixer.h $(INC)machdefs.h \ 244 $(INC)tmatrix.h \ 245 $(INC)tarray.h \ 246 $(INC)basarr.h \ 247 $(INC)anydataobj.h \ 248 $(INC)mutyv.h \ 249 $(INC)dvlist.h \ 250 $(INC)objfio.h \ 251 $(INC)ppersist.h \ 252 $(INC)pexceptions.h \ 253 $(INC)gnumd5.h \ 254 $(INC)ndatablock.h \ 255 $(INC)utilarr.h \ 256 $(INC)tvector.h \ 257 $(INC)fioarr.h \ 258 $(INC)vector3d.h \ 259 $(INC)longlat.h \ 260 $(INC)utilgeom.h \ 261 $(INC)srandgen.h \ 262 $(INC)timing.h \ 263 $(INC)sambainit.h \ 264 $(INC)skymapinit.h \ 265 $(INC)sophyainit.h \ 266 $(INC)ntoolsinit.h \ 267 $(INC)tarrinit.h \ 268 $(INC)datacards.h \ 269 $(INC)ntuple.h \ 270 $(INC)ntupintf.h \ 271 $(INC)fiospherehealpix.h \ 272 $(INC)sphericalmap.h \ 273 $(INC)smathconst.h \ 274 $(INC)pixelmap.h \ 275 $(INC)spherepos.h \ 276 $(INC)unitvector.h \ 277 $(INC)spherehealpix.h \ 278 $(INC)HEALPixUtils.h \ 279 $(INC)fitsspherehealpix.h \ 280 $(INC)fitsfile.h \ 281 $(INC)fitstarray.h \ 282 $(INC)cimage.h \ 283 $(INC)radspecvector.h \ 284 $(INC)radspec.h \ 285 $(INC)specresp.h \ 286 $(INC)blackbody.h \ 287 $(INC)convtools.h \ 288 $(INC)derivblackbody.h \ 289 $(INC)nupower.h \ 290 $(INC)squarefilt.h \ 291 $(INC)trianglefilt.h \ 292 $(INC)specrespvector.h \ 293 $(INC)gaussfilt.h \ 294 $(INC)bruit.h \ 295 $(INC)mapoperation.h 296 $(OBJ)tgsky.o: tgsky.cc pmixer.h $(INC)machdefs.h \ 297 $(INC)tmatrix.h \ 298 $(INC)tarray.h \ 299 $(INC)basarr.h \ 300 $(INC)anydataobj.h \ 301 $(INC)mutyv.h \ 302 $(INC)dvlist.h \ 303 $(INC)objfio.h \ 304 $(INC)ppersist.h \ 305 $(INC)pexceptions.h \ 306 $(INC)gnumd5.h \ 307 $(INC)ndatablock.h \ 308 $(INC)utilarr.h \ 309 $(INC)tvector.h \ 310 $(INC)fioarr.h \ 311 $(INC)vector3d.h \ 312 $(INC)longlat.h \ 313 $(INC)utilgeom.h \ 314 $(INC)srandgen.h \ 315 $(INC)timing.h \ 316 $(INC)sambainit.h \ 317 $(INC)skymapinit.h \ 318 $(INC)sophyainit.h \ 319 $(INC)ntoolsinit.h \ 320 $(INC)tarrinit.h \ 321 $(INC)datacards.h \ 322 $(INC)ntuple.h \ 323 $(INC)ntupintf.h \ 324 $(INC)fiospherehealpix.h \ 325 $(INC)sphericalmap.h \ 326 $(INC)smathconst.h \ 327 $(INC)pixelmap.h \ 328 $(INC)spherepos.h \ 329 $(INC)unitvector.h \ 330 $(INC)spherehealpix.h \ 331 $(INC)HEALPixUtils.h \ 332 $(INC)fitsspherehealpix.h \ 333 $(INC)fitsfile.h \ 334 $(INC)fitstarray.h \ 335 $(INC)cimage.h \ 336 $(INC)radspecvector.h \ 337 $(INC)radspec.h \ 338 $(INC)specresp.h \ 339 $(INC)blackbody.h \ 340 $(INC)convtools.h \ 341 $(INC)derivblackbody.h \ 342 $(INC)nupower.h \ 343 $(INC)squarefilt.h \ 344 $(INC)trianglefilt.h \ 345 $(INC)specrespvector.h \ 346 $(INC)gaussfilt.h \ 347 $(INC)bruit.h \ 348 $(INC)mapoperation.h 9 rm -f $(SOPHYAOBJP)Sph2Sph.o $(SOPHYAOBJP)easyTest.o $(SOPHYAOBJP)tgsky.o $(SOPHYAOBJP)tgrsr.o $(SOPHYAOBJP)extractRS.o $(SOPHYAOBJP)skymixer.o 10 11 skymixer: $(SOPHYAEXEP)skymixer 12 echo $@ " done" 13 $(SOPHYAEXEP)skymixer: $(SOPHYAOBJP)skymixer.o 14 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 15 16 extractRS: $(SOPHYAEXEP)extractRS 17 echo $@ " done" 18 $(SOPHYAEXEP)extractRS: $(SOPHYAOBJP)extractRS.o 19 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 20 21 tgrsr: $(SOPHYAEXEP)tgrsr 22 echo $@ " done" 23 $(SOPHYAEXEP)tgrsr: $(SOPHYAOBJP)tgrsr.o 24 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 25 26 tgsky: $(SOPHYAEXEP)tgsky 27 echo $@ " done" 28 $(SOPHYAEXEP)tgsky: $(SOPHYAOBJP)tgsky.o 29 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 30 31 easyTest: $(SOPHYAEXEP)easyTest 32 echo $@ " done" 33 $(SOPHYAEXEP)easyTest: $(SOPHYAOBJP)easyTest.o 34 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 35 36 Sph2Sph: $(SOPHYAEXEP)Sph2Sph 37 echo $@ " done" 38 $(SOPHYAEXEP)Sph2Sph: $(SOPHYAOBJP)Sph2Sph.o 39 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 40 41 $(SOPHYAOBJP)easyTest.o: easyTest.cc \ 42 $(SOPHYAINCP)sopnamsp.h \ 43 $(SOPHYAINCP)blackbody.h \ 44 $(SOPHYAINCP)radspec.h \ 45 $(SOPHYAINCP)machdefs.h \ 46 $(SOPHYAINCP)specresp.h \ 47 $(SOPHYAINCP)anydataobj.h \ 48 $(SOPHYAINCP)objfio.h \ 49 $(SOPHYAINCP)ppersist.h \ 50 $(SOPHYAINCP)pexceptions.h \ 51 $(SOPHYAINCP)gnumd5.h \ 52 $(SOPHYAINCP)ppfbinstream.h \ 53 $(SOPHYAINCP)rawstream.h \ 54 $(SOPHYAINCP)ppfnametag.h \ 55 $(SOPHYAINCP)convtools.h \ 56 $(SOPHYAINCP)radspecvector.h \ 57 $(SOPHYAINCP)tvector.h \ 58 $(SOPHYAINCP)tmatrix.h \ 59 $(SOPHYAINCP)tarray.h \ 60 $(SOPHYAINCP)basarr.h \ 61 $(SOPHYAINCP)mutyv.h \ 62 $(SOPHYAINCP)dvlist.h \ 63 $(SOPHYAINCP)ndatablock.h \ 64 $(SOPHYAINCP)utilarr.h \ 65 $(SOPHYAINCP)specrespvector.h \ 66 $(SOPHYAINCP)squarefilt.h \ 67 $(SOPHYAINCP)gaussfilt.h \ 68 $(SOPHYAINCP)trianglefilt.h 69 $(CXXCOMPILE) -o $@ $< 70 71 $(SOPHYAOBJP)extractRS.o: extractRS.cc \ 72 $(SOPHYAINCP)sopnamsp.h pmixer.h \ 73 $(SOPHYAINCP)machdefs.h \ 74 $(SOPHYAINCP)tmatrix.h \ 75 $(SOPHYAINCP)tarray.h \ 76 $(SOPHYAINCP)basarr.h \ 77 $(SOPHYAINCP)anydataobj.h \ 78 $(SOPHYAINCP)mutyv.h \ 79 $(SOPHYAINCP)dvlist.h \ 80 $(SOPHYAINCP)objfio.h \ 81 $(SOPHYAINCP)ppersist.h \ 82 $(SOPHYAINCP)pexceptions.h \ 83 $(SOPHYAINCP)gnumd5.h \ 84 $(SOPHYAINCP)ppfbinstream.h \ 85 $(SOPHYAINCP)rawstream.h \ 86 $(SOPHYAINCP)ppfnametag.h \ 87 $(SOPHYAINCP)ndatablock.h \ 88 $(SOPHYAINCP)utilarr.h \ 89 $(SOPHYAINCP)tvector.h \ 90 $(SOPHYAINCP)fioarr.h \ 91 $(SOPHYAINCP)vector3d.h \ 92 $(SOPHYAINCP)longlat.h \ 93 $(SOPHYAINCP)utilgeom.h \ 94 $(SOPHYAINCP)srandgen.h \ 95 $(SOPHYAINCP)timing.h \ 96 $(SOPHYAINCP)sambainit.h \ 97 $(SOPHYAINCP)skymapinit.h \ 98 $(SOPHYAINCP)sophyainit.h \ 99 $(SOPHYAINCP)ntoolsinit.h \ 100 $(SOPHYAINCP)tarrinit.h \ 101 $(SOPHYAINCP)datacards.h \ 102 $(SOPHYAINCP)ntuple.h \ 103 $(SOPHYAINCP)ntupintf.h \ 104 $(SOPHYAINCP)fiospherehealpix.h \ 105 $(SOPHYAINCP)sphericalmap.h \ 106 $(SOPHYAINCP)smathconst.h \ 107 $(SOPHYAINCP)pixelmap.h \ 108 $(SOPHYAINCP)spherepos.h \ 109 $(SOPHYAINCP)unitvector.h \ 110 $(SOPHYAINCP)spherehealpix.h \ 111 $(SOPHYAINCP)HEALPixUtils.h \ 112 $(SOPHYAINCP)fitsspherehealpix.h \ 113 $(SOPHYAINCP)fitsfile.h \ 114 $(SOPHYAINCP)FitsIO/fitsio.h \ 115 $(SOPHYAINCP)FitsIO/longnam.h \ 116 $(SOPHYAINCP)fitstarray.h \ 117 $(SOPHYAINCP)cimage.h \ 118 $(SOPHYAINCP)radspecvector.h \ 119 $(SOPHYAINCP)radspec.h \ 120 $(SOPHYAINCP)specresp.h \ 121 $(SOPHYAINCP)blackbody.h \ 122 $(SOPHYAINCP)convtools.h \ 123 $(SOPHYAINCP)derivblackbody.h \ 124 $(SOPHYAINCP)nupower.h \ 125 $(SOPHYAINCP)squarefilt.h \ 126 $(SOPHYAINCP)trianglefilt.h \ 127 $(SOPHYAINCP)specrespvector.h \ 128 $(SOPHYAINCP)gaussfilt.h \ 129 $(SOPHYAINCP)bruit.h \ 130 $(SOPHYAINCP)mapoperation.h 131 $(CXXCOMPILE) -o $@ $< 132 133 $(SOPHYAOBJP)skymixer.o: skymixer.cc \ 134 $(SOPHYAINCP)sopnamsp.h pmixer.h \ 135 $(SOPHYAINCP)machdefs.h \ 136 $(SOPHYAINCP)tmatrix.h \ 137 $(SOPHYAINCP)tarray.h \ 138 $(SOPHYAINCP)basarr.h \ 139 $(SOPHYAINCP)anydataobj.h \ 140 $(SOPHYAINCP)mutyv.h \ 141 $(SOPHYAINCP)dvlist.h \ 142 $(SOPHYAINCP)objfio.h \ 143 $(SOPHYAINCP)ppersist.h \ 144 $(SOPHYAINCP)pexceptions.h \ 145 $(SOPHYAINCP)gnumd5.h \ 146 $(SOPHYAINCP)ppfbinstream.h \ 147 $(SOPHYAINCP)rawstream.h \ 148 $(SOPHYAINCP)ppfnametag.h \ 149 $(SOPHYAINCP)ndatablock.h \ 150 $(SOPHYAINCP)utilarr.h \ 151 $(SOPHYAINCP)tvector.h \ 152 $(SOPHYAINCP)fioarr.h \ 153 $(SOPHYAINCP)vector3d.h \ 154 $(SOPHYAINCP)longlat.h \ 155 $(SOPHYAINCP)utilgeom.h \ 156 $(SOPHYAINCP)srandgen.h \ 157 $(SOPHYAINCP)timing.h \ 158 $(SOPHYAINCP)sambainit.h \ 159 $(SOPHYAINCP)skymapinit.h \ 160 $(SOPHYAINCP)sophyainit.h \ 161 $(SOPHYAINCP)ntoolsinit.h \ 162 $(SOPHYAINCP)tarrinit.h \ 163 $(SOPHYAINCP)datacards.h \ 164 $(SOPHYAINCP)ntuple.h \ 165 $(SOPHYAINCP)ntupintf.h \ 166 $(SOPHYAINCP)fiospherehealpix.h \ 167 $(SOPHYAINCP)sphericalmap.h \ 168 $(SOPHYAINCP)smathconst.h \ 169 $(SOPHYAINCP)pixelmap.h \ 170 $(SOPHYAINCP)spherepos.h \ 171 $(SOPHYAINCP)unitvector.h \ 172 $(SOPHYAINCP)spherehealpix.h \ 173 $(SOPHYAINCP)HEALPixUtils.h \ 174 $(SOPHYAINCP)fitsspherehealpix.h \ 175 $(SOPHYAINCP)fitsfile.h \ 176 $(SOPHYAINCP)FitsIO/fitsio.h \ 177 $(SOPHYAINCP)FitsIO/longnam.h \ 178 $(SOPHYAINCP)fitstarray.h \ 179 $(SOPHYAINCP)cimage.h \ 180 $(SOPHYAINCP)radspecvector.h \ 181 $(SOPHYAINCP)radspec.h \ 182 $(SOPHYAINCP)specresp.h \ 183 $(SOPHYAINCP)blackbody.h \ 184 $(SOPHYAINCP)convtools.h \ 185 $(SOPHYAINCP)derivblackbody.h \ 186 $(SOPHYAINCP)nupower.h \ 187 $(SOPHYAINCP)squarefilt.h \ 188 $(SOPHYAINCP)trianglefilt.h \ 189 $(SOPHYAINCP)specrespvector.h \ 190 $(SOPHYAINCP)gaussfilt.h \ 191 $(SOPHYAINCP)bruit.h \ 192 $(SOPHYAINCP)mapoperation.h 193 $(CXXCOMPILE) -o $@ $< 194 195 $(SOPHYAOBJP)Sph2Sph.o: Sph2Sph.cc \ 196 $(SOPHYAINCP)sopnamsp.h pmixer.h \ 197 $(SOPHYAINCP)machdefs.h \ 198 $(SOPHYAINCP)tmatrix.h \ 199 $(SOPHYAINCP)tarray.h \ 200 $(SOPHYAINCP)basarr.h \ 201 $(SOPHYAINCP)anydataobj.h \ 202 $(SOPHYAINCP)mutyv.h \ 203 $(SOPHYAINCP)dvlist.h \ 204 $(SOPHYAINCP)objfio.h \ 205 $(SOPHYAINCP)ppersist.h \ 206 $(SOPHYAINCP)pexceptions.h \ 207 $(SOPHYAINCP)gnumd5.h \ 208 $(SOPHYAINCP)ppfbinstream.h \ 209 $(SOPHYAINCP)rawstream.h \ 210 $(SOPHYAINCP)ppfnametag.h \ 211 $(SOPHYAINCP)ndatablock.h \ 212 $(SOPHYAINCP)utilarr.h \ 213 $(SOPHYAINCP)tvector.h \ 214 $(SOPHYAINCP)fioarr.h \ 215 $(SOPHYAINCP)vector3d.h \ 216 $(SOPHYAINCP)longlat.h \ 217 $(SOPHYAINCP)utilgeom.h \ 218 $(SOPHYAINCP)srandgen.h \ 219 $(SOPHYAINCP)timing.h \ 220 $(SOPHYAINCP)sambainit.h \ 221 $(SOPHYAINCP)skymapinit.h \ 222 $(SOPHYAINCP)sophyainit.h \ 223 $(SOPHYAINCP)ntoolsinit.h \ 224 $(SOPHYAINCP)tarrinit.h \ 225 $(SOPHYAINCP)datacards.h \ 226 $(SOPHYAINCP)ntuple.h \ 227 $(SOPHYAINCP)ntupintf.h \ 228 $(SOPHYAINCP)fiospherehealpix.h \ 229 $(SOPHYAINCP)sphericalmap.h \ 230 $(SOPHYAINCP)smathconst.h \ 231 $(SOPHYAINCP)pixelmap.h \ 232 $(SOPHYAINCP)spherepos.h \ 233 $(SOPHYAINCP)unitvector.h \ 234 $(SOPHYAINCP)spherehealpix.h \ 235 $(SOPHYAINCP)HEALPixUtils.h \ 236 $(SOPHYAINCP)fitsspherehealpix.h \ 237 $(SOPHYAINCP)fitsfile.h \ 238 $(SOPHYAINCP)FitsIO/fitsio.h \ 239 $(SOPHYAINCP)FitsIO/longnam.h \ 240 $(SOPHYAINCP)fitstarray.h \ 241 $(SOPHYAINCP)cimage.h \ 242 $(SOPHYAINCP)radspecvector.h \ 243 $(SOPHYAINCP)radspec.h \ 244 $(SOPHYAINCP)specresp.h \ 245 $(SOPHYAINCP)blackbody.h \ 246 $(SOPHYAINCP)convtools.h \ 247 $(SOPHYAINCP)derivblackbody.h \ 248 $(SOPHYAINCP)nupower.h \ 249 $(SOPHYAINCP)squarefilt.h \ 250 $(SOPHYAINCP)trianglefilt.h \ 251 $(SOPHYAINCP)specrespvector.h \ 252 $(SOPHYAINCP)gaussfilt.h \ 253 $(SOPHYAINCP)bruit.h \ 254 $(SOPHYAINCP)mapoperation.h 255 $(CXXCOMPILE) -o $@ $< 256 257 $(SOPHYAOBJP)tgrsr.o: tgrsr.cc $(SOPHYAINCP)sopnamsp.h \ 258 pmixer.h $(SOPHYAINCP)machdefs.h \ 259 $(SOPHYAINCP)tmatrix.h \ 260 $(SOPHYAINCP)tarray.h \ 261 $(SOPHYAINCP)basarr.h \ 262 $(SOPHYAINCP)anydataobj.h \ 263 $(SOPHYAINCP)mutyv.h \ 264 $(SOPHYAINCP)dvlist.h \ 265 $(SOPHYAINCP)objfio.h \ 266 $(SOPHYAINCP)ppersist.h \ 267 $(SOPHYAINCP)pexceptions.h \ 268 $(SOPHYAINCP)gnumd5.h \ 269 $(SOPHYAINCP)ppfbinstream.h \ 270 $(SOPHYAINCP)rawstream.h \ 271 $(SOPHYAINCP)ppfnametag.h \ 272 $(SOPHYAINCP)ndatablock.h \ 273 $(SOPHYAINCP)utilarr.h \ 274 $(SOPHYAINCP)tvector.h \ 275 $(SOPHYAINCP)fioarr.h \ 276 $(SOPHYAINCP)vector3d.h \ 277 $(SOPHYAINCP)longlat.h \ 278 $(SOPHYAINCP)utilgeom.h \ 279 $(SOPHYAINCP)srandgen.h \ 280 $(SOPHYAINCP)timing.h \ 281 $(SOPHYAINCP)sambainit.h \ 282 $(SOPHYAINCP)skymapinit.h \ 283 $(SOPHYAINCP)sophyainit.h \ 284 $(SOPHYAINCP)ntoolsinit.h \ 285 $(SOPHYAINCP)tarrinit.h \ 286 $(SOPHYAINCP)datacards.h \ 287 $(SOPHYAINCP)ntuple.h \ 288 $(SOPHYAINCP)ntupintf.h \ 289 $(SOPHYAINCP)fiospherehealpix.h \ 290 $(SOPHYAINCP)sphericalmap.h \ 291 $(SOPHYAINCP)smathconst.h \ 292 $(SOPHYAINCP)pixelmap.h \ 293 $(SOPHYAINCP)spherepos.h \ 294 $(SOPHYAINCP)unitvector.h \ 295 $(SOPHYAINCP)spherehealpix.h \ 296 $(SOPHYAINCP)HEALPixUtils.h \ 297 $(SOPHYAINCP)fitsspherehealpix.h \ 298 $(SOPHYAINCP)fitsfile.h \ 299 $(SOPHYAINCP)FitsIO/fitsio.h \ 300 $(SOPHYAINCP)FitsIO/longnam.h \ 301 $(SOPHYAINCP)fitstarray.h \ 302 $(SOPHYAINCP)cimage.h \ 303 $(SOPHYAINCP)radspecvector.h \ 304 $(SOPHYAINCP)radspec.h \ 305 $(SOPHYAINCP)specresp.h \ 306 $(SOPHYAINCP)blackbody.h \ 307 $(SOPHYAINCP)convtools.h \ 308 $(SOPHYAINCP)derivblackbody.h \ 309 $(SOPHYAINCP)nupower.h \ 310 $(SOPHYAINCP)squarefilt.h \ 311 $(SOPHYAINCP)trianglefilt.h \ 312 $(SOPHYAINCP)specrespvector.h \ 313 $(SOPHYAINCP)gaussfilt.h \ 314 $(SOPHYAINCP)bruit.h \ 315 $(SOPHYAINCP)mapoperation.h 316 $(CXXCOMPILE) -o $@ $< 317 318 $(SOPHYAOBJP)tgsky.o: tgsky.cc $(SOPHYAINCP)sopnamsp.h \ 319 pmixer.h $(SOPHYAINCP)machdefs.h \ 320 $(SOPHYAINCP)tmatrix.h \ 321 $(SOPHYAINCP)tarray.h \ 322 $(SOPHYAINCP)basarr.h \ 323 $(SOPHYAINCP)anydataobj.h \ 324 $(SOPHYAINCP)mutyv.h \ 325 $(SOPHYAINCP)dvlist.h \ 326 $(SOPHYAINCP)objfio.h \ 327 $(SOPHYAINCP)ppersist.h \ 328 $(SOPHYAINCP)pexceptions.h \ 329 $(SOPHYAINCP)gnumd5.h \ 330 $(SOPHYAINCP)ppfbinstream.h \ 331 $(SOPHYAINCP)rawstream.h \ 332 $(SOPHYAINCP)ppfnametag.h \ 333 $(SOPHYAINCP)ndatablock.h \ 334 $(SOPHYAINCP)utilarr.h \ 335 $(SOPHYAINCP)tvector.h \ 336 $(SOPHYAINCP)fioarr.h \ 337 $(SOPHYAINCP)vector3d.h \ 338 $(SOPHYAINCP)longlat.h \ 339 $(SOPHYAINCP)utilgeom.h \ 340 $(SOPHYAINCP)srandgen.h \ 341 $(SOPHYAINCP)timing.h \ 342 $(SOPHYAINCP)sambainit.h \ 343 $(SOPHYAINCP)skymapinit.h \ 344 $(SOPHYAINCP)sophyainit.h \ 345 $(SOPHYAINCP)ntoolsinit.h \ 346 $(SOPHYAINCP)tarrinit.h \ 347 $(SOPHYAINCP)datacards.h \ 348 $(SOPHYAINCP)ntuple.h \ 349 $(SOPHYAINCP)ntupintf.h \ 350 $(SOPHYAINCP)fiospherehealpix.h \ 351 $(SOPHYAINCP)sphericalmap.h \ 352 $(SOPHYAINCP)smathconst.h \ 353 $(SOPHYAINCP)pixelmap.h \ 354 $(SOPHYAINCP)spherepos.h \ 355 $(SOPHYAINCP)unitvector.h \ 356 $(SOPHYAINCP)spherehealpix.h \ 357 $(SOPHYAINCP)HEALPixUtils.h \ 358 $(SOPHYAINCP)fitsspherehealpix.h \ 359 $(SOPHYAINCP)fitsfile.h \ 360 $(SOPHYAINCP)FitsIO/fitsio.h \ 361 $(SOPHYAINCP)FitsIO/longnam.h \ 362 $(SOPHYAINCP)fitstarray.h \ 363 $(SOPHYAINCP)cimage.h \ 364 $(SOPHYAINCP)radspecvector.h \ 365 $(SOPHYAINCP)radspec.h \ 366 $(SOPHYAINCP)specresp.h \ 367 $(SOPHYAINCP)blackbody.h \ 368 $(SOPHYAINCP)convtools.h \ 369 $(SOPHYAINCP)derivblackbody.h \ 370 $(SOPHYAINCP)nupower.h \ 371 $(SOPHYAINCP)squarefilt.h \ 372 $(SOPHYAINCP)trianglefilt.h \ 373 $(SOPHYAINCP)specrespvector.h \ 374 $(SOPHYAINCP)gaussfilt.h \ 375 $(SOPHYAINCP)bruit.h \ 376 $(SOPHYAINCP)mapoperation.h 377 $(CXXCOMPILE) -o $@ $< 378 -
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 -
trunk/SophyaProg/PrgUtil/Makefile
r1599 r2743 1 MODULECXXREPNAME := PrgUtil 2 include ../Mgr/Makefile.h 1 include ../BuildMgr/sophyamake.inc 3 2 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)runcxx $(EXE)scanppf $(EXE)scanfits 18 PROBJS = $(OBJ)runcxx.o $(OBJ)scanppf.o $(OBJ)scanfits.o 19 3 PROGS = $(SOPHYAEXEP)runcxx $(SOPHYAEXEP)scanppf $(SOPHYAEXEP)scanfits 4 20 5 all: $(PROGS) 21 6 22 7 clean: 23 8 rm -f $(PROGS) 24 rm -f $(PROBJS) 25 if [ -d $(OBJ)cxxrep_PrgUtil ] ; then cd $(OBJ)cxxrep_PrgUtil ; rm -f *.o ; fi 26 27 runcxx: $(EXE)runcxx 28 @ echo runcxx done 29 $(EXE)runcxx: $(OBJ)runcxx.o 30 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 31 32 scanppf: $(EXE)scanppf 33 @ echo scanppf done 34 $(EXE)scanppf: $(OBJ)scanppf.o 35 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 36 37 scanfits: $(EXE)scanfits 38 @ echo scanfits done 39 $(EXE)scanfits: $(OBJ)scanfits.o 40 $(LINK.cc) $^ $(LOADLIBES) $(LDLIBS) -o $@ 41 42 $(OBJ)runcxx.o: runcxx.cc $(INC)sambainit.h \ 43 $(INC)skymapinit.h \ 44 $(INC)sophyainit.h \ 45 $(INC)machdefs.h \ 46 $(INC)ntoolsinit.h \ 47 $(INC)tarrinit.h \ 48 $(INC)skyinit.h \ 49 $(INC)pexceptions.h \ 50 $(INC)cxxcmplnk.h \ 51 $(INC)pdlmgr.h \ 52 $(INC)timing.h 53 $(OBJ)scanfits.o: scanfits.cc $(INC)histinit.h \ 54 $(INC)ntoolsinit.h \ 55 $(INC)tarrinit.h \ 56 $(INC)sophyainit.h \ 57 $(INC)machdefs.h \ 58 $(INC)dvlist.h \ 59 $(INC)objfio.h \ 60 $(INC)anydataobj.h \ 61 $(INC)ppersist.h \ 62 $(INC)pexceptions.h \ 63 $(INC)gnumd5.h \ 64 $(INC)mutyv.h \ 65 $(INC)ntuple.h \ 66 $(INC)ntupintf.h \ 67 $(INC)xntuple.h \ 68 $(INC)fitsxntuple.h \ 69 $(INC)fitsfile.h \ 70 $(INC)ndatablock.h \ 71 $(INC)fitsntuple.h 72 $(OBJ)scanppf.o: scanppf.cc $(INC)ppersist.h \ 73 $(INC)machdefs.h \ 74 $(INC)pexceptions.h \ 75 $(INC)gnumd5.h \ 76 $(INC)anydataobj.h \ 77 $(INC)sambainit.h \ 78 $(INC)skymapinit.h \ 79 $(INC)sophyainit.h \ 80 $(INC)ntoolsinit.h \ 81 $(INC)tarrinit.h 9 rm -f $(SOPHYAOBJP)scanfits.o $(SOPHYAOBJP)scanppf.o $(SOPHYAOBJP)runcxx.o 10 11 runcxx: $(SOPHYAEXEP)runcxx 12 echo $@ " done" 13 $(SOPHYAEXEP)runcxx: $(SOPHYAOBJP)runcxx.o 14 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 15 16 scanppf: $(SOPHYAEXEP)scanppf 17 echo $@ " done" 18 $(SOPHYAEXEP)scanppf: $(SOPHYAOBJP)scanppf.o 19 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 20 21 scanfits: $(SOPHYAEXEP)scanfits 22 echo $@ " done" 23 $(SOPHYAEXEP)scanfits: $(SOPHYAOBJP)scanfits.o 24 $(CXXLINK) -o $@ $? $(SOPHYAEXTSLBLIST) 25 26 $(SOPHYAOBJP)runcxx.o: runcxx.cc $(SOPHYAINCP)sopnamsp.h \ 27 $(SOPHYAINCP)machdefs.h \ 28 $(SOPHYAINCP)tarrinit.h \ 29 $(SOPHYAINCP)sophyainit.h \ 30 $(SOPHYAINCP)array.h \ 31 $(SOPHYAINCP)tarray.h \ 32 $(SOPHYAINCP)basarr.h \ 33 $(SOPHYAINCP)anydataobj.h \ 34 $(SOPHYAINCP)mutyv.h \ 35 $(SOPHYAINCP)dvlist.h \ 36 $(SOPHYAINCP)objfio.h \ 37 $(SOPHYAINCP)ppersist.h \ 38 $(SOPHYAINCP)pexceptions.h \ 39 $(SOPHYAINCP)gnumd5.h \ 40 $(SOPHYAINCP)ppfbinstream.h \ 41 $(SOPHYAINCP)rawstream.h \ 42 $(SOPHYAINCP)ppfnametag.h \ 43 $(SOPHYAINCP)ndatablock.h \ 44 $(SOPHYAINCP)utilarr.h \ 45 $(SOPHYAINCP)tmatrix.h \ 46 $(SOPHYAINCP)tvector.h \ 47 $(SOPHYAINCP)matharr.h \ 48 $(SOPHYAINCP)fioarr.h \ 49 $(SOPHYAINCP)sopemtx.h \ 50 $(SOPHYAINCP)sambainit.h \ 51 $(SOPHYAINCP)skymapinit.h \ 52 $(SOPHYAINCP)ntoolsinit.h \ 53 $(SOPHYAINCP)skyinit.h \ 54 $(SOPHYAINCP)cxxcmplnk.h \ 55 $(SOPHYAINCP)pdlmgr.h \ 56 $(SOPHYAINCP)timing.h 57 $(CXXCOMPILE) -o $@ $< 58 59 $(SOPHYAOBJP)scanfits.o: scanfits.cc \ 60 $(SOPHYAINCP)sopnamsp.h \ 61 $(SOPHYAINCP)histinit.h \ 62 $(SOPHYAINCP)ntoolsinit.h \ 63 $(SOPHYAINCP)tarrinit.h \ 64 $(SOPHYAINCP)sophyainit.h \ 65 $(SOPHYAINCP)machdefs.h \ 66 $(SOPHYAINCP)dvlist.h \ 67 $(SOPHYAINCP)objfio.h \ 68 $(SOPHYAINCP)anydataobj.h \ 69 $(SOPHYAINCP)ppersist.h \ 70 $(SOPHYAINCP)pexceptions.h \ 71 $(SOPHYAINCP)gnumd5.h \ 72 $(SOPHYAINCP)ppfbinstream.h \ 73 $(SOPHYAINCP)rawstream.h \ 74 $(SOPHYAINCP)ppfnametag.h \ 75 $(SOPHYAINCP)mutyv.h \ 76 $(SOPHYAINCP)ntuple.h \ 77 $(SOPHYAINCP)ntupintf.h \ 78 $(SOPHYAINCP)xntuple.h \ 79 $(SOPHYAINCP)fitsxntuple.h \ 80 $(SOPHYAINCP)fitsfile.h \ 81 $(SOPHYAINCP)ndatablock.h \ 82 $(SOPHYAINCP)FitsIO/fitsio.h \ 83 $(SOPHYAINCP)FitsIO/longnam.h \ 84 $(SOPHYAINCP)fitsntuple.h 85 $(CXXCOMPILE) -o $@ $< 86 87 $(SOPHYAOBJP)scanppf.o: scanppf.cc \ 88 $(SOPHYAINCP)sopnamsp.h \ 89 $(SOPHYAINCP)ppersist.h \ 90 $(SOPHYAINCP)machdefs.h \ 91 $(SOPHYAINCP)pexceptions.h \ 92 $(SOPHYAINCP)gnumd5.h \ 93 $(SOPHYAINCP)ppfbinstream.h \ 94 $(SOPHYAINCP)rawstream.h \ 95 $(SOPHYAINCP)ppfnametag.h \ 96 $(SOPHYAINCP)anydataobj.h \ 97 $(SOPHYAINCP)sambainit.h \ 98 $(SOPHYAINCP)skymapinit.h \ 99 $(SOPHYAINCP)sophyainit.h \ 100 $(SOPHYAINCP)ntoolsinit.h \ 101 $(SOPHYAINCP)tarrinit.h \ 102 $(SOPHYAINCP)histinit.h 103 $(CXXCOMPILE) -o $@ $< 104 -
trunk/SophyaProg/Tests/Makefile
r2582 r2743 1 MODULECXXREPNAME := Tests 2 MODULEDECCXXFLAGS := -msg_quiet 3 include $(SOPHYADEVREP)/Include/Makefile.h 4 5 6 ifdef NOSHLIB 7 8 LIBF = $(LIB)libFitsIOServer.a $(LIB)libSamba.a $(LIB)libSkyMap.a $(LIB)libSkyT 9 .a $(LIB)libNTools.a $(LIB)libHiStats.a $(LIB)libTArray.a $(LIB)libSysTools.a 10 LIBS = -L$(LIB) -lFitsIOServer -lSamba -lSkyMap -lSkyT -lNTools -lHiStats -lTArr 11 ay -lSysTools -lm 12 13 ifeq ($(CXX),cxx) 14 # librairie des instances de templates cxx 15 LIBS := $(LIBS) -lrt 16 endif 17 18 else 19 20 LIBF = $(SLB)libsophya.so 21 LIBS = -L$(SLB) -lextsophya -lsophya -lpthread -lm 22 ifeq ($(MACHEROS),OSF1) 23 LIBS := $(LIBS) -lfor 24 endif 25 ifeq ($(MACHEROS),Linux) 26 LIBS := $(LIBS) -ldl 27 endif 28 ifeq ($(MACHEROS),Darwin) 29 LIBS := -L$(LIB) -lLinAlg $(LIBS) -L$(EXTLIBPATH) -framework Accelerate 30 endif 31 32 endif 33 34 # Sur MacOSX, LinAlg+lapack ne peuvent pas etre mis ds un 35 # shared lib (pb symbols globaux) 36 # ifeq ($(MACHEROS),Darwin) 37 # LIBS := -L$(LIB) -lLinAlg $(LIBS) -L$(EXTLIBPATH) -llapack -lblas -lg2c 38 # endif 39 40 LDLIBS := $(LIBS) $(LDLIBS) 41 42 %:%.cc 43 %:%.o 44 %.o:%.cc 45 %.o:%.c 46 %:%.c 47 48 .PRECIOUS: $(EXE)% $(OBJ)%.o 49 50 %:$(EXE)% 51 echo $@ " done" 52 53 $(EXE)%:$(OBJ)%.o 54 $(LINK.cc) -o $@ $< $(LIBS) 55 56 $(OBJ)%.o:%.cc 57 $(COMPILE.cc) $(USERFLAGS) -o $@ $< 58 59 $(EXE)%:$(OBJ)%.cc 60 $(LINK.cc) $(USERFLAGS) -o $@ $< $(LIBS) 61 62 $(EXE)%:$(OBJ)%.c 63 $(LINK.c) $(USERFLAGS) -o $@ $< $(LIBS) 64 65 $(OBJ)%.o:%.c 66 $(COMPILE.c) -c $(CFLAGS) $(USERFLAGS) -o $@ $< 67 68 dump : 69 echo $(LIBS) 70 71 clean : 72 ../Mgr/cleantstprg.csh 73 74 basetests : lpk arrt carrt tfft tobjio tspm zthr 75 1 include ../BuildMgr/sophyamake.inc 2 3 PROGS = $(SOPHYAEXEP)arrt $(SOPHYAEXEP)carrt $(SOPHYAEXEP)lpk $(SOPHYAEXEP)obj_fits $(SOPHYAEXEP)ovharr $(SOPHYAEXEP)pizthr $(SOPHYAEXEP)ppftswap $(SOPHYAEXEP)spar $(SOPHYAEXEP)sphg0 $(SOPHYAEXEP)sph2lm $(SOPHYAEXEP)tcmd $(SOPHYAEXEP)tcxxcmpldynl $(SOPHYAEXEP)tdcr $(SOPHYAEXEP)tdynl $(SOPHYAEXEP)tfft $(SOPHYAEXEP)thash $(SOPHYAEXEP)timg $(SOPHYAEXEP)tmxv $(SOPHYAEXEP)tnt $(SOPHYAEXEP)tobjio2 $(SOPHYAEXEP)tobjio $(SOPHYAEXEP)tpipe $(SOPHYAEXEP)tsimplex $(SOPHYAEXEP)tsphereecp $(SOPHYAEXEP)tspm2 $(SOPHYAEXEP)tspm $(SOPHYAEXEP)tstboloread $(SOPHYAEXEP)tstcolread $(SOPHYAEXEP)tstdtable $(SOPHYAEXEP)tstndblk $(SOPHYAEXEP)tstppfwrapstl $(SOPHYAEXEP)tstsegdb $(SOPHYAEXEP)tsttmat $(SOPHYAEXEP)tsttminv $(SOPHYAEXEP)tsttvec $(SOPHYAEXEP)ttimestamp $(SOPHYAEXEP)zthr 4 5 all: $(PROGS) 6 7 clean: 8 rm -f $(PROGS) 9 rm -f $(SOPHYAOBJP)zthr.o $(SOPHYAOBJP)ttimestamp.o $(SOPHYAOBJP)tsttvec.o $(SOPHYAOBJP)tsttminv.o $(SOPHYAOBJP)tsttmat.o $(SOPHYAOBJP)tstsegdb.o $(SOPHYAOBJP)tstppfwrapstl.o $(SOPHYAOBJP)tstndblk.o $(SOPHYAOBJP)tstdtable.o $(SOPHYAOBJP)tstcolread.o $(SOPHYAOBJP)tstboloread.o $(SOPHYAOBJP)tspm.o $(SOPHYAOBJP)tspm2.o $(SOPHYAOBJP)tsphereecp.o $(SOPHYAOBJP)tsimplex.o $(SOPHYAOBJP)tpipe.o $(SOPHYAOBJP)tobjio.o $(SOPHYAOBJP)tobjio2.o $(SOPHYAOBJP)tnt.o $(SOPHYAOBJP)tmxv.o $(SOPHYAOBJP)timg.o $(SOPHYAOBJP)thash.o $(SOPHYAOBJP)tfft.o $(SOPHYAOBJP)tdynl.o $(SOPHYAOBJP)tdcr.o $(SOPHYAOBJP)tcxxcmpldynl.o $(SOPHYAOBJP)tcmd.o $(SOPHYAOBJP)sph2lm.o $(SOPHYAOBJP)sphg0.o $(SOPHYAOBJP)spar.o $(SOPHYAOBJP)ppftswap.o $(SOPHYAOBJP)pizthr.o $(SOPHYAOBJP)ovharr.o $(SOPHYAOBJP)obj_fits.o $(SOPHYAOBJP)lpk.o $(SOPHYAOBJP)carrt.o $(SOPHYAOBJP)arrt.o 10 11 arrt: $(SOPHYAEXEP)arrt 12 echo $@ " done" 13 $(SOPHYAEXEP)arrt: $(SOPHYAOBJP)arrt.o 14 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 15 16 carrt: $(SOPHYAEXEP)carrt 17 echo $@ " done" 18 $(SOPHYAEXEP)carrt: $(SOPHYAOBJP)carrt.o 19 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 20 21 lpk: $(SOPHYAEXEP)lpk 22 echo $@ " done" 23 $(SOPHYAEXEP)lpk: $(SOPHYAOBJP)lpk.o 24 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 25 26 obj_fits: $(SOPHYAEXEP)obj_fits 27 echo $@ " done" 28 $(SOPHYAEXEP)obj_fits: $(SOPHYAOBJP)obj_fits.o 29 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 30 31 ovharr: $(SOPHYAEXEP)ovharr 32 echo $@ " done" 33 $(SOPHYAEXEP)ovharr: $(SOPHYAOBJP)ovharr.o 34 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 35 36 pizthr: $(SOPHYAEXEP)pizthr 37 echo $@ " done" 38 $(SOPHYAEXEP)pizthr: $(SOPHYAOBJP)pizthr.o 39 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 40 41 ppftswap: $(SOPHYAEXEP)ppftswap 42 echo $@ " done" 43 $(SOPHYAEXEP)ppftswap: $(SOPHYAOBJP)ppftswap.o 44 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 45 46 spar: $(SOPHYAEXEP)spar 47 echo $@ " done" 48 $(SOPHYAEXEP)spar: $(SOPHYAOBJP)spar.o 49 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 50 51 sphg0: $(SOPHYAEXEP)sphg0 52 echo $@ " done" 53 $(SOPHYAEXEP)sphg0: $(SOPHYAOBJP)sphg0.o 54 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 55 56 sph2lm: $(SOPHYAEXEP)sph2lm 57 echo $@ " done" 58 $(SOPHYAEXEP)sph2lm: $(SOPHYAOBJP)sph2lm.o 59 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 60 61 tcmd: $(SOPHYAEXEP)tcmd 62 echo $@ " done" 63 $(SOPHYAEXEP)tcmd: $(SOPHYAOBJP)tcmd.o 64 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 65 66 tcxxcmpldynl: $(SOPHYAEXEP)tcxxcmpldynl 67 echo $@ " done" 68 $(SOPHYAEXEP)tcxxcmpldynl: $(SOPHYAOBJP)tcxxcmpldynl.o 69 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 70 71 tdcr: $(SOPHYAEXEP)tdcr 72 echo $@ " done" 73 $(SOPHYAEXEP)tdcr: $(SOPHYAOBJP)tdcr.o 74 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 75 76 tdynl: $(SOPHYAEXEP)tdynl 77 echo $@ " done" 78 $(SOPHYAEXEP)tdynl: $(SOPHYAOBJP)tdynl.o 79 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 80 81 tfft: $(SOPHYAEXEP)tfft 82 echo $@ " done" 83 $(SOPHYAEXEP)tfft: $(SOPHYAOBJP)tfft.o 84 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 85 86 thash: $(SOPHYAEXEP)thash 87 echo $@ " done" 88 $(SOPHYAEXEP)thash: $(SOPHYAOBJP)thash.o 89 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 90 91 timg: $(SOPHYAEXEP)timg 92 echo $@ " done" 93 $(SOPHYAEXEP)timg: $(SOPHYAOBJP)timg.o 94 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 95 96 tmxv: $(SOPHYAEXEP)tmxv 97 echo $@ " done" 98 $(SOPHYAEXEP)tmxv: $(SOPHYAOBJP)tmxv.o 99 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 100 101 tnt: $(SOPHYAEXEP)tnt 102 echo $@ " done" 103 $(SOPHYAEXEP)tnt: $(SOPHYAOBJP)tnt.o 104 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 105 106 tobjio2: $(SOPHYAEXEP)tobjio2 107 echo $@ " done" 108 $(SOPHYAEXEP)tobjio2: $(SOPHYAOBJP)tobjio2.o 109 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 110 111 tobjio: $(SOPHYAEXEP)tobjio 112 echo $@ " done" 113 $(SOPHYAEXEP)tobjio: $(SOPHYAOBJP)tobjio.o 114 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 115 116 tpipe: $(SOPHYAEXEP)tpipe 117 echo $@ " done" 118 $(SOPHYAEXEP)tpipe: $(SOPHYAOBJP)tpipe.o 119 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 120 121 tsimplex: $(SOPHYAEXEP)tsimplex 122 echo $@ " done" 123 $(SOPHYAEXEP)tsimplex: $(SOPHYAOBJP)tsimplex.o 124 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 125 126 tsphereecp: $(SOPHYAEXEP)tsphereecp 127 echo $@ " done" 128 $(SOPHYAEXEP)tsphereecp: $(SOPHYAOBJP)tsphereecp.o 129 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 130 131 tspm2: $(SOPHYAEXEP)tspm2 132 echo $@ " done" 133 $(SOPHYAEXEP)tspm2: $(SOPHYAOBJP)tspm2.o 134 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 135 136 tspm: $(SOPHYAEXEP)tspm 137 echo $@ " done" 138 $(SOPHYAEXEP)tspm: $(SOPHYAOBJP)tspm.o 139 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 140 141 tstboloread: $(SOPHYAEXEP)tstboloread 142 echo $@ " done" 143 $(SOPHYAEXEP)tstboloread: $(SOPHYAOBJP)tstboloread.o 144 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 145 146 tstcolread: $(SOPHYAEXEP)tstcolread 147 echo $@ " done" 148 $(SOPHYAEXEP)tstcolread: $(SOPHYAOBJP)tstcolread.o 149 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 150 151 tstdtable: $(SOPHYAEXEP)tstdtable 152 echo $@ " done" 153 $(SOPHYAEXEP)tstdtable: $(SOPHYAOBJP)tstdtable.o 154 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 155 156 tstndblk: $(SOPHYAEXEP)tstndblk 157 echo $@ " done" 158 $(SOPHYAEXEP)tstndblk: $(SOPHYAOBJP)tstndblk.o 159 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 160 161 tstppfwrapstl: $(SOPHYAEXEP)tstppfwrapstl 162 echo $@ " done" 163 $(SOPHYAEXEP)tstppfwrapstl: $(SOPHYAOBJP)tstppfwrapstl.o 164 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 165 166 tstsegdb: $(SOPHYAEXEP)tstsegdb 167 echo $@ " done" 168 $(SOPHYAEXEP)tstsegdb: $(SOPHYAOBJP)tstsegdb.o 169 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 170 171 tsttmat: $(SOPHYAEXEP)tsttmat 172 echo $@ " done" 173 $(SOPHYAEXEP)tsttmat: $(SOPHYAOBJP)tsttmat.o 174 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 175 176 tsttminv: $(SOPHYAEXEP)tsttminv 177 echo $@ " done" 178 $(SOPHYAEXEP)tsttminv: $(SOPHYAOBJP)tsttminv.o 179 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 180 181 tsttvec: $(SOPHYAEXEP)tsttvec 182 echo $@ " done" 183 $(SOPHYAEXEP)tsttvec: $(SOPHYAOBJP)tsttvec.o 184 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 185 186 ttimestamp: $(SOPHYAEXEP)ttimestamp 187 echo $@ " done" 188 $(SOPHYAEXEP)ttimestamp: $(SOPHYAOBJP)ttimestamp.o 189 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 190 191 zthr: $(SOPHYAEXEP)zthr 192 echo $@ " done" 193 $(SOPHYAEXEP)zthr: $(SOPHYAOBJP)zthr.o 194 $(CXXLINK) -o $@ $? $(SOPHYAALLSLBLIST) 195 196 $(SOPHYAOBJP)arrt.o: arrt.cc $(SOPHYAINCP)sopnamsp.h \ 197 $(SOPHYAINCP)machdefs.h \ 198 $(SOPHYAINCP)tarrinit.h \ 199 $(SOPHYAINCP)sophyainit.h \ 200 $(SOPHYAINCP)array.h \ 201 $(SOPHYAINCP)tarray.h \ 202 $(SOPHYAINCP)basarr.h \ 203 $(SOPHYAINCP)anydataobj.h \ 204 $(SOPHYAINCP)mutyv.h \ 205 $(SOPHYAINCP)dvlist.h \ 206 $(SOPHYAINCP)objfio.h \ 207 $(SOPHYAINCP)ppersist.h \ 208 $(SOPHYAINCP)pexceptions.h \ 209 $(SOPHYAINCP)gnumd5.h \ 210 $(SOPHYAINCP)ppfbinstream.h \ 211 $(SOPHYAINCP)rawstream.h \ 212 $(SOPHYAINCP)ppfnametag.h \ 213 $(SOPHYAINCP)ndatablock.h \ 214 $(SOPHYAINCP)utilarr.h \ 215 $(SOPHYAINCP)tmatrix.h \ 216 $(SOPHYAINCP)tvector.h \ 217 $(SOPHYAINCP)matharr.h \ 218 $(SOPHYAINCP)fioarr.h \ 219 $(SOPHYAINCP)sopemtx.h \ 220 $(SOPHYAINCP)timing.h 221 $(CXXCOMPILE) -o $@ $< 222 223 $(SOPHYAOBJP)carrt.o: carrt.cc $(SOPHYAINCP)sopnamsp.h \ 224 $(SOPHYAINCP)machdefs.h \ 225 $(SOPHYAINCP)tarrinit.h \ 226 $(SOPHYAINCP)sophyainit.h \ 227 $(SOPHYAINCP)array.h \ 228 $(SOPHYAINCP)tarray.h \ 229 $(SOPHYAINCP)basarr.h \ 230 $(SOPHYAINCP)anydataobj.h \ 231 $(SOPHYAINCP)mutyv.h \ 232 $(SOPHYAINCP)dvlist.h \ 233 $(SOPHYAINCP)objfio.h \ 234 $(SOPHYAINCP)ppersist.h \ 235 $(SOPHYAINCP)pexceptions.h \ 236 $(SOPHYAINCP)gnumd5.h \ 237 $(SOPHYAINCP)ppfbinstream.h \ 238 $(SOPHYAINCP)rawstream.h \ 239 $(SOPHYAINCP)ppfnametag.h \ 240 $(SOPHYAINCP)ndatablock.h \ 241 $(SOPHYAINCP)utilarr.h \ 242 $(SOPHYAINCP)tmatrix.h \ 243 $(SOPHYAINCP)tvector.h \ 244 $(SOPHYAINCP)matharr.h \ 245 $(SOPHYAINCP)fioarr.h \ 246 $(SOPHYAINCP)sopemtx.h \ 247 $(SOPHYAINCP)timing.h 248 $(CXXCOMPILE) -o $@ $< 249 250 $(SOPHYAOBJP)lpk.o: lpk.cc $(SOPHYAINCP)sopnamsp.h \ 251 $(SOPHYAINCP)machdefs.h \ 252 $(SOPHYAINCP)srandgen.h \ 253 $(SOPHYAINCP)tarrinit.h \ 254 $(SOPHYAINCP)sophyainit.h \ 255 $(SOPHYAINCP)array.h \ 256 $(SOPHYAINCP)tarray.h \ 257 $(SOPHYAINCP)basarr.h \ 258 $(SOPHYAINCP)anydataobj.h \ 259 $(SOPHYAINCP)mutyv.h \ 260 $(SOPHYAINCP)dvlist.h \ 261 $(SOPHYAINCP)objfio.h \ 262 $(SOPHYAINCP)ppersist.h \ 263 $(SOPHYAINCP)pexceptions.h \ 264 $(SOPHYAINCP)gnumd5.h \ 265 $(SOPHYAINCP)ppfbinstream.h \ 266 $(SOPHYAINCP)rawstream.h \ 267 $(SOPHYAINCP)ppfnametag.h \ 268 $(SOPHYAINCP)ndatablock.h \ 269 $(SOPHYAINCP)utilarr.h \ 270 $(SOPHYAINCP)tmatrix.h \ 271 $(SOPHYAINCP)tvector.h \ 272 $(SOPHYAINCP)matharr.h \ 273 $(SOPHYAINCP)fioarr.h \ 274 $(SOPHYAINCP)sopemtx.h \ 275 $(SOPHYAINCP)timing.h \ 276 $(SOPHYAINCP)intflapack.h 277 $(CXXCOMPILE) -o $@ $< 278 279 $(SOPHYAOBJP)obj_fits.o: obj_fits.cc \ 280 $(SOPHYAINCP)sopnamsp.h \ 281 $(SOPHYAINCP)histinit.h \ 282 $(SOPHYAINCP)ntoolsinit.h \ 283 $(SOPHYAINCP)tarrinit.h \ 284 $(SOPHYAINCP)sophyainit.h \ 285 $(SOPHYAINCP)machdefs.h \ 286 $(SOPHYAINCP)dvlist.h \ 287 $(SOPHYAINCP)objfio.h \ 288 $(SOPHYAINCP)anydataobj.h \ 289 $(SOPHYAINCP)ppersist.h \ 290 $(SOPHYAINCP)pexceptions.h \ 291 $(SOPHYAINCP)gnumd5.h \ 292 $(SOPHYAINCP)ppfbinstream.h \ 293 $(SOPHYAINCP)rawstream.h \ 294 $(SOPHYAINCP)ppfnametag.h \ 295 $(SOPHYAINCP)mutyv.h \ 296 $(SOPHYAINCP)ntuple.h \ 297 $(SOPHYAINCP)ntupintf.h \ 298 $(SOPHYAINCP)xntuple.h \ 299 $(SOPHYAINCP)fitsxntuple.h \ 300 $(SOPHYAINCP)fitsfile.h \ 301 $(SOPHYAINCP)ndatablock.h \ 302 $(SOPHYAINCP)FitsIO/fitsio.h \ 303 $(SOPHYAINCP)FitsIO/longnam.h \ 304 $(SOPHYAINCP)fitsntuple.h \ 305 $(SOPHYAINCP)fitstarray.h \ 306 $(SOPHYAINCP)tarray.h \ 307 $(SOPHYAINCP)basarr.h \ 308 $(SOPHYAINCP)utilarr.h \ 309 $(SOPHYAINCP)array.h \ 310 $(SOPHYAINCP)tmatrix.h \ 311 $(SOPHYAINCP)tvector.h \ 312 $(SOPHYAINCP)matharr.h \ 313 $(SOPHYAINCP)fioarr.h \ 314 $(SOPHYAINCP)sopemtx.h 315 $(CXXCOMPILE) -o $@ $< 316 317 $(SOPHYAOBJP)ovharr.o: ovharr.cc $(SOPHYAINCP)sopnamsp.h \ 318 $(SOPHYAINCP)machdefs.h \ 319 $(SOPHYAINCP)tarrinit.h \ 320 $(SOPHYAINCP)sophyainit.h \ 321 $(SOPHYAINCP)array.h \ 322 $(SOPHYAINCP)tarray.h \ 323 $(SOPHYAINCP)basarr.h \ 324 $(SOPHYAINCP)anydataobj.h \ 325 $(SOPHYAINCP)mutyv.h \ 326 $(SOPHYAINCP)dvlist.h \ 327 $(SOPHYAINCP)objfio.h \ 328 $(SOPHYAINCP)ppersist.h \ 329 $(SOPHYAINCP)pexceptions.h \ 330 $(SOPHYAINCP)gnumd5.h \ 331 $(SOPHYAINCP)ppfbinstream.h \ 332 $(SOPHYAINCP)rawstream.h \ 333 $(SOPHYAINCP)ppfnametag.h \ 334 $(SOPHYAINCP)ndatablock.h \ 335 $(SOPHYAINCP)utilarr.h \ 336 $(SOPHYAINCP)tmatrix.h \ 337 $(SOPHYAINCP)tvector.h \ 338 $(SOPHYAINCP)matharr.h \ 339 $(SOPHYAINCP)fioarr.h \ 340 $(SOPHYAINCP)sopemtx.h \ 341 $(SOPHYAINCP)ctimer.h \ 342 $(SOPHYAINCP)timing.h \ 343 $(SOPHYAINCP)srandgen.h 344 $(CXXCOMPILE) -o $@ $< 345 346 $(SOPHYAOBJP)pizthr.o: pizthr.cc $(SOPHYAINCP)sopnamsp.h \ 347 $(SOPHYAINCP)machdefs.h \ 348 $(SOPHYAINCP)zthread.h \ 349 $(SOPHYAINCP)pexceptions.h \ 350 $(SOPHYAINCP)pisysdep.h \ 351 $(SOPHYAINCP)piapplx.h \ 352 $(SOPHYAINCP)piapplgen.h \ 353 $(SOPHYAINCP)pimsghandler.h \ 354 $(SOPHYAINCP)picontainerx.h \ 355 $(SOPHYAINCP)picontainergen.h \ 356 $(SOPHYAINCP)piwdgx.h \ 357 $(SOPHYAINCP)piwdggen.h \ 358 $(SOPHYAINCP)picolist.h \ 359 $(SOPHYAINCP)pimenubarx.h \ 360 $(SOPHYAINCP)pimenubargen.h \ 361 $(SOPHYAINCP)pimenux.h \ 362 $(SOPHYAINCP)pimenugen.h \ 363 $(SOPHYAINCP)picons.h \ 364 $(SOPHYAINCP)pistdwdgx.h \ 365 $(SOPHYAINCP)pistdwdggen.h \ 366 $(SOPHYAINCP)pibwdgx.h \ 367 $(SOPHYAINCP)pibwdggen.h \ 368 $(SOPHYAINCP)picmap.h \ 369 $(SOPHYAINCP)picmapx.h \ 370 $(SOPHYAINCP)picmapgen.h \ 371 $(SOPHYAINCP)pigraphx.h \ 372 $(SOPHYAINCP)pigraphgen.h \ 373 $(SOPHYAINCP)pifontx.h \ 374 $(SOPHYAINCP)pifontgen.h \ 375 $(SOPHYAINCP)pigrcoord.h \ 376 $(SOPHYAINCP)pilineatt.h \ 377 $(SOPHYAINCP)pigraphuc.h \ 378 $(SOPHYAINCP)pievthandler.h \ 379 $(SOPHYAINCP)psfile.h \ 380 $(SOPHYAINCP)pigraphps.h \ 381 $(SOPHYAINCP)piwindowx.h \ 382 $(SOPHYAINCP)piwindowgen.h \ 383 $(SOPHYAINCP)piperiodx.h \ 384 $(SOPHYAINCP)periodic.h \ 385 $(SOPHYAINCP)tarrinit.h \ 386 $(SOPHYAINCP)sophyainit.h \ 387 $(SOPHYAINCP)array.h \ 388 $(SOPHYAINCP)tarray.h \ 389 $(SOPHYAINCP)basarr.h \ 390 $(SOPHYAINCP)anydataobj.h \ 391 $(SOPHYAINCP)mutyv.h \ 392 $(SOPHYAINCP)dvlist.h \ 393 $(SOPHYAINCP)objfio.h \ 394 $(SOPHYAINCP)ppersist.h \ 395 $(SOPHYAINCP)gnumd5.h \ 396 $(SOPHYAINCP)ppfbinstream.h \ 397 $(SOPHYAINCP)rawstream.h \ 398 $(SOPHYAINCP)ppfnametag.h \ 399 $(SOPHYAINCP)ndatablock.h \ 400 $(SOPHYAINCP)utilarr.h \ 401 $(SOPHYAINCP)tmatrix.h \ 402 $(SOPHYAINCP)tvector.h \ 403 $(SOPHYAINCP)matharr.h \ 404 $(SOPHYAINCP)fioarr.h \ 405 $(SOPHYAINCP)sopemtx.h \ 406 $(SOPHYAINCP)timing.h 407 $(CXXCOMPILE) -o $@ $< 408 409 $(SOPHYAOBJP)ppftswap.o: ppftswap.cc \ 410 $(SOPHYAINCP)sopnamsp.h \ 411 $(SOPHYAINCP)sophyainit.h \ 412 $(SOPHYAINCP)machdefs.h \ 413 $(SOPHYAINCP)array.h \ 414 $(SOPHYAINCP)tarray.h \ 415 $(SOPHYAINCP)basarr.h \ 416 $(SOPHYAINCP)anydataobj.h \ 417 $(SOPHYAINCP)mutyv.h \ 418 $(SOPHYAINCP)dvlist.h \ 419 $(SOPHYAINCP)objfio.h \ 420 $(SOPHYAINCP)ppersist.h \ 421 $(SOPHYAINCP)pexceptions.h \ 422 $(SOPHYAINCP)gnumd5.h \ 423 $(SOPHYAINCP)ppfbinstream.h \ 424 $(SOPHYAINCP)rawstream.h \ 425 $(SOPHYAINCP)ppfnametag.h \ 426 $(SOPHYAINCP)ndatablock.h \ 427 $(SOPHYAINCP)utilarr.h \ 428 $(SOPHYAINCP)tmatrix.h \ 429 $(SOPHYAINCP)tvector.h \ 430 $(SOPHYAINCP)matharr.h \ 431 $(SOPHYAINCP)fioarr.h \ 432 $(SOPHYAINCP)sopemtx.h \ 433 $(SOPHYAINCP)fiondblock.h \ 434 $(SOPHYAINCP)tarrinit.h 435 $(CXXCOMPILE) -o $@ $< 436 437 $(SOPHYAOBJP)spar.o: spar.cc $(SOPHYAINCP)sopnamsp.h \ 438 $(SOPHYAINCP)machdefs.h \ 439 $(SOPHYAINCP)tarrinit.h \ 440 $(SOPHYAINCP)sophyainit.h \ 441 $(SOPHYAINCP)array.h \ 442 $(SOPHYAINCP)tarray.h \ 443 $(SOPHYAINCP)basarr.h \ 444 $(SOPHYAINCP)anydataobj.h \ 445 $(SOPHYAINCP)mutyv.h \ 446 $(SOPHYAINCP)dvlist.h \ 447 $(SOPHYAINCP)objfio.h \ 448 $(SOPHYAINCP)ppersist.h \ 449 $(SOPHYAINCP)pexceptions.h \ 450 $(SOPHYAINCP)gnumd5.h \ 451 $(SOPHYAINCP)ppfbinstream.h \ 452 $(SOPHYAINCP)rawstream.h \ 453 $(SOPHYAINCP)ppfnametag.h \ 454 $(SOPHYAINCP)ndatablock.h \ 455 $(SOPHYAINCP)utilarr.h \ 456 $(SOPHYAINCP)tmatrix.h \ 457 $(SOPHYAINCP)tvector.h \ 458 $(SOPHYAINCP)matharr.h \ 459 $(SOPHYAINCP)fioarr.h \ 460 $(SOPHYAINCP)sopemtx.h \ 461 $(SOPHYAINCP)timing.h \ 462 $(SOPHYAINCP)resusage.h 463 $(CXXCOMPILE) -o $@ $< 464 465 $(SOPHYAOBJP)sph2lm.o: sph2lm.cc $(SOPHYAINCP)sopnamsp.h \ 466 $(SOPHYAINCP)tarray.h \ 467 $(SOPHYAINCP)machdefs.h \ 468 $(SOPHYAINCP)basarr.h \ 469 $(SOPHYAINCP)anydataobj.h \ 470 $(SOPHYAINCP)mutyv.h \ 471 $(SOPHYAINCP)dvlist.h \ 472 $(SOPHYAINCP)objfio.h \ 473 $(SOPHYAINCP)ppersist.h \ 474 $(SOPHYAINCP)pexceptions.h \ 475 $(SOPHYAINCP)gnumd5.h \ 476 $(SOPHYAINCP)ppfbinstream.h \ 477 $(SOPHYAINCP)rawstream.h \ 478 $(SOPHYAINCP)ppfnametag.h \ 479 $(SOPHYAINCP)ndatablock.h \ 480 $(SOPHYAINCP)utilarr.h \ 481 $(SOPHYAINCP)cimage.h \ 482 $(SOPHYAINCP)tmatrix.h \ 483 $(SOPHYAINCP)fioarr.h \ 484 $(SOPHYAINCP)tvector.h \ 485 $(SOPHYAINCP)skymap.h \ 486 $(SOPHYAINCP)spherethetaphi.h \ 487 $(SOPHYAINCP)sphericalmap.h \ 488 $(SOPHYAINCP)smathconst.h \ 489 $(SOPHYAINCP)pixelmap.h \ 490 $(SOPHYAINCP)spherepos.h \ 491 $(SOPHYAINCP)unitvector.h \ 492 $(SOPHYAINCP)vector3d.h \ 493 $(SOPHYAINCP)longlat.h \ 494 $(SOPHYAINCP)utilgeom.h \ 495 $(SOPHYAINCP)spherehealpix.h \ 496 $(SOPHYAINCP)HEALPixUtils.h \ 497 $(SOPHYAINCP)localmap.h \ 498 $(SOPHYAINCP)sphereecp.h \ 499 $(SOPHYAINCP)fiospherethetaphi.h \ 500 $(SOPHYAINCP)fiospherehealpix.h \ 501 $(SOPHYAINCP)fiolocalmap.h \ 502 $(SOPHYAINCP)fiosphereecp.h \ 503 $(SOPHYAINCP)mapoperation.h \ 504 $(SOPHYAINCP)sambainit.h \ 505 $(SOPHYAINCP)skymapinit.h \ 506 $(SOPHYAINCP)sophyainit.h \ 507 $(SOPHYAINCP)ntoolsinit.h \ 508 $(SOPHYAINCP)tarrinit.h \ 509 $(SOPHYAINCP)fftwserver.h \ 510 $(SOPHYAINCP)fftservintf.h 511 $(CXXCOMPILE) -o $@ $< 512 513 $(SOPHYAOBJP)sphg0.o: sphg0.cc $(SOPHYAINCP)sopnamsp.h \ 514 $(SOPHYAINCP)sambainit.h \ 515 $(SOPHYAINCP)skymapinit.h \ 516 $(SOPHYAINCP)sophyainit.h \ 517 $(SOPHYAINCP)machdefs.h \ 518 $(SOPHYAINCP)ntoolsinit.h \ 519 $(SOPHYAINCP)tarrinit.h \ 520 $(SOPHYAINCP)tod.h \ 521 $(SOPHYAINCP)spherepos.h \ 522 $(SOPHYAINCP)ppersist.h \ 523 $(SOPHYAINCP)pexceptions.h \ 524 $(SOPHYAINCP)gnumd5.h \ 525 $(SOPHYAINCP)ppfbinstream.h \ 526 $(SOPHYAINCP)rawstream.h \ 527 $(SOPHYAINCP)ppfnametag.h \ 528 $(SOPHYAINCP)unitvector.h \ 529 $(SOPHYAINCP)vector3d.h \ 530 $(SOPHYAINCP)longlat.h \ 531 $(SOPHYAINCP)utilgeom.h \ 532 $(SOPHYAINCP)anydataobj.h \ 533 $(SOPHYAINCP)misstime.h \ 534 $(SOPHYAINCP)spherehealpix.h \ 535 $(SOPHYAINCP)sphericalmap.h \ 536 $(SOPHYAINCP)smathconst.h \ 537 $(SOPHYAINCP)pixelmap.h \ 538 $(SOPHYAINCP)dvlist.h \ 539 $(SOPHYAINCP)objfio.h \ 540 $(SOPHYAINCP)mutyv.h \ 541 $(SOPHYAINCP)tvector.h \ 542 $(SOPHYAINCP)tmatrix.h \ 543 $(SOPHYAINCP)tarray.h \ 544 $(SOPHYAINCP)basarr.h \ 545 $(SOPHYAINCP)ndatablock.h \ 546 $(SOPHYAINCP)utilarr.h \ 547 $(SOPHYAINCP)HEALPixUtils.h 548 $(CXXCOMPILE) -o $@ $< 549 550 $(SOPHYAOBJP)tcmd.o: tcmd.cc $(SOPHYAINCP)sopnamsp.h \ 551 $(SOPHYAINCP)machdefs.h \ 552 $(SOPHYAINCP)sophyainit.h \ 553 $(SOPHYAINCP)timing.h \ 554 $(SOPHYAINCP)cexpre.h \ 555 $(SOPHYAINCP)pexceptions.h \ 556 $(SOPHYAINCP)rpneval.h \ 557 $(SOPHYAINCP)commander.h \ 558 $(SOPHYAINCP)pdlmgr.h \ 559 $(SOPHYAINCP)dvlist.h \ 560 $(SOPHYAINCP)objfio.h \ 561 $(SOPHYAINCP)anydataobj.h \ 562 $(SOPHYAINCP)ppersist.h \ 563 $(SOPHYAINCP)gnumd5.h \ 564 $(SOPHYAINCP)ppfbinstream.h \ 565 $(SOPHYAINCP)rawstream.h \ 566 $(SOPHYAINCP)ppfnametag.h \ 567 $(SOPHYAINCP)mutyv.h \ 568 $(SOPHYAINCP)ctimer.h 569 $(CXXCOMPILE) -o $@ $< 570 571 $(SOPHYAOBJP)tcxxcmpldynl.o: tcxxcmpldynl.cc \ 572 $(SOPHYAINCP)sopnamsp.h \ 573 $(SOPHYAINCP)histinit.h \ 574 $(SOPHYAINCP)ntoolsinit.h \ 575 $(SOPHYAINCP)tarrinit.h \ 576 $(SOPHYAINCP)sophyainit.h \ 577 $(SOPHYAINCP)machdefs.h \ 578 $(SOPHYAINCP)array.h \ 579 $(SOPHYAINCP)tarray.h \ 580 $(SOPHYAINCP)basarr.h \ 581 $(SOPHYAINCP)anydataobj.h \ 582 $(SOPHYAINCP)mutyv.h \ 583 $(SOPHYAINCP)dvlist.h \ 584 $(SOPHYAINCP)objfio.h \ 585 $(SOPHYAINCP)ppersist.h \ 586 $(SOPHYAINCP)pexceptions.h \ 587 $(SOPHYAINCP)gnumd5.h \ 588 $(SOPHYAINCP)ppfbinstream.h \ 589 $(SOPHYAINCP)rawstream.h \ 590 $(SOPHYAINCP)ppfnametag.h \ 591 $(SOPHYAINCP)ndatablock.h \ 592 $(SOPHYAINCP)utilarr.h \ 593 $(SOPHYAINCP)tmatrix.h \ 594 $(SOPHYAINCP)tvector.h \ 595 $(SOPHYAINCP)matharr.h \ 596 $(SOPHYAINCP)fioarr.h \ 597 $(SOPHYAINCP)sopemtx.h \ 598 $(SOPHYAINCP)cxxcmplnk.h \ 599 $(SOPHYAINCP)pdlmgr.h \ 600 $(SOPHYAINCP)timing.h 601 $(CXXCOMPILE) -o $@ $< 602 603 $(SOPHYAOBJP)tdcr.o: tdcr.cc $(SOPHYAINCP)sopnamsp.h \ 604 $(SOPHYAINCP)histinit.h \ 605 $(SOPHYAINCP)ntoolsinit.h \ 606 $(SOPHYAINCP)tarrinit.h \ 607 $(SOPHYAINCP)sophyainit.h \ 608 $(SOPHYAINCP)machdefs.h \ 609 $(SOPHYAINCP)histos.h \ 610 $(SOPHYAINCP)objfio.h \ 611 $(SOPHYAINCP)anydataobj.h \ 612 $(SOPHYAINCP)ppersist.h \ 613 $(SOPHYAINCP)pexceptions.h \ 614 $(SOPHYAINCP)gnumd5.h \ 615 $(SOPHYAINCP)ppfbinstream.h \ 616 $(SOPHYAINCP)rawstream.h \ 617 $(SOPHYAINCP)ppfnametag.h \ 618 $(SOPHYAINCP)peida.h \ 619 $(SOPHYAINCP)utils.h \ 620 $(SOPHYAINCP)perrors.h \ 621 $(SOPHYAINCP)fmath.h \ 622 $(SOPHYAINCP)tvector.h \ 623 $(SOPHYAINCP)tmatrix.h \ 624 $(SOPHYAINCP)tarray.h \ 625 $(SOPHYAINCP)basarr.h \ 626 $(SOPHYAINCP)mutyv.h \ 627 $(SOPHYAINCP)dvlist.h \ 628 $(SOPHYAINCP)ndatablock.h \ 629 $(SOPHYAINCP)utilarr.h \ 630 $(SOPHYAINCP)histos2.h \ 631 $(SOPHYAINCP)psighand.h \ 632 $(SOPHYAINCP)nbrandom.h \ 633 $(SOPHYAINCP)srandgen.h 634 $(CXXCOMPILE) -o $@ $< 635 636 $(SOPHYAOBJP)tdynl.o: tdynl.cc $(SOPHYAINCP)sopnamsp.h \ 637 $(SOPHYAINCP)tarrinit.h \ 638 $(SOPHYAINCP)sophyainit.h \ 639 $(SOPHYAINCP)machdefs.h \ 640 $(SOPHYAINCP)array.h \ 641 $(SOPHYAINCP)tarray.h \ 642 $(SOPHYAINCP)basarr.h \ 643 $(SOPHYAINCP)anydataobj.h \ 644 $(SOPHYAINCP)mutyv.h \ 645 $(SOPHYAINCP)dvlist.h \ 646 $(SOPHYAINCP)objfio.h \ 647 $(SOPHYAINCP)ppersist.h \ 648 $(SOPHYAINCP)pexceptions.h \ 649 $(SOPHYAINCP)gnumd5.h \ 650 $(SOPHYAINCP)ppfbinstream.h \ 651 $(SOPHYAINCP)rawstream.h \ 652 $(SOPHYAINCP)ppfnametag.h \ 653 $(SOPHYAINCP)ndatablock.h \ 654 $(SOPHYAINCP)utilarr.h \ 655 $(SOPHYAINCP)tmatrix.h \ 656 $(SOPHYAINCP)tvector.h \ 657 $(SOPHYAINCP)matharr.h \ 658 $(SOPHYAINCP)fioarr.h \ 659 $(SOPHYAINCP)sopemtx.h \ 660 $(SOPHYAINCP)pdlmgr.h \ 661 $(SOPHYAINCP)timing.h 662 $(CXXCOMPILE) -o $@ $< 663 664 $(SOPHYAOBJP)tfft.o: tfft.cc $(SOPHYAINCP)sopnamsp.h \ 665 $(SOPHYAINCP)machdefs.h \ 666 $(SOPHYAINCP)nbrandom.h \ 667 $(SOPHYAINCP)srandgen.h \ 668 $(SOPHYAINCP)matharr.h \ 669 $(SOPHYAINCP)tarray.h \ 670 $(SOPHYAINCP)basarr.h \ 671 $(SOPHYAINCP)anydataobj.h \ 672 $(SOPHYAINCP)mutyv.h \ 673 $(SOPHYAINCP)dvlist.h \ 674 $(SOPHYAINCP)objfio.h \ 675 $(SOPHYAINCP)ppersist.h \ 676 $(SOPHYAINCP)pexceptions.h \ 677 $(SOPHYAINCP)gnumd5.h \ 678 $(SOPHYAINCP)ppfbinstream.h \ 679 $(SOPHYAINCP)rawstream.h \ 680 $(SOPHYAINCP)ppfnametag.h \ 681 $(SOPHYAINCP)ndatablock.h \ 682 $(SOPHYAINCP)utilarr.h \ 683 $(SOPHYAINCP)fftpserver.h \ 684 $(SOPHYAINCP)fftservintf.h \ 685 $(SOPHYAINCP)tmatrix.h \ 686 $(SOPHYAINCP)tvector.h \ 687 $(SOPHYAINCP)fftmserver.h \ 688 $(SOPHYAINCP)fftwserver.h \ 689 $(SOPHYAINCP)ntoolsinit.h \ 690 $(SOPHYAINCP)tarrinit.h \ 691 $(SOPHYAINCP)sophyainit.h \ 692 $(SOPHYAINCP)timing.h 693 $(CXXCOMPILE) -o $@ $< 694 695 $(SOPHYAOBJP)thash.o: thash.cc $(SOPHYAINCP)sopnamsp.h \ 696 $(SOPHYAINCP)ppersist.h \ 697 $(SOPHYAINCP)machdefs.h \ 698 $(SOPHYAINCP)pexceptions.h \ 699 $(SOPHYAINCP)gnumd5.h \ 700 $(SOPHYAINCP)ppfbinstream.h \ 701 $(SOPHYAINCP)rawstream.h \ 702 $(SOPHYAINCP)ppfnametag.h 703 $(CXXCOMPILE) -o $@ $< 704 705 $(SOPHYAOBJP)timg.o: timg.cc $(SOPHYAINCP)sopnamsp.h \ 706 $(SOPHYAINCP)ntoolsinit.h \ 707 $(SOPHYAINCP)tarrinit.h \ 708 $(SOPHYAINCP)sophyainit.h \ 709 $(SOPHYAINCP)machdefs.h \ 710 $(SOPHYAINCP)array.h \ 711 $(SOPHYAINCP)tarray.h \ 712 $(SOPHYAINCP)basarr.h \ 713 $(SOPHYAINCP)anydataobj.h \ 714 $(SOPHYAINCP)mutyv.h \ 715 $(SOPHYAINCP)dvlist.h \ 716 $(SOPHYAINCP)objfio.h \ 717 $(SOPHYAINCP)ppersist.h \ 718 $(SOPHYAINCP)pexceptions.h \ 719 $(SOPHYAINCP)gnumd5.h \ 720 $(SOPHYAINCP)ppfbinstream.h \ 721 $(SOPHYAINCP)rawstream.h \ 722 $(SOPHYAINCP)ppfnametag.h \ 723 $(SOPHYAINCP)ndatablock.h \ 724 $(SOPHYAINCP)utilarr.h \ 725 $(SOPHYAINCP)tmatrix.h \ 726 $(SOPHYAINCP)tvector.h \ 727 $(SOPHYAINCP)matharr.h \ 728 $(SOPHYAINCP)fioarr.h \ 729 $(SOPHYAINCP)sopemtx.h \ 730 $(SOPHYAINCP)cimage.h \ 731 $(SOPHYAINCP)nbrandom.h \ 732 $(SOPHYAINCP)srandgen.h \ 733 $(SOPHYAINCP)fiondblock.h 734 $(CXXCOMPILE) -o $@ $< 735 736 $(SOPHYAOBJP)tmxv.o: tmxv.cc $(SOPHYAINCP)sopnamsp.h \ 737 $(SOPHYAINCP)machdefs.h \ 738 $(SOPHYAINCP)srandgen.h \ 739 $(SOPHYAINCP)tarrinit.h \ 740 $(SOPHYAINCP)sophyainit.h \ 741 $(SOPHYAINCP)tvector.h \ 742 $(SOPHYAINCP)tmatrix.h \ 743 $(SOPHYAINCP)tarray.h \ 744 $(SOPHYAINCP)basarr.h \ 745 $(SOPHYAINCP)anydataobj.h \ 746 $(SOPHYAINCP)mutyv.h \ 747 $(SOPHYAINCP)dvlist.h \ 748 $(SOPHYAINCP)objfio.h \ 749 $(SOPHYAINCP)ppersist.h \ 750 $(SOPHYAINCP)pexceptions.h \ 751 $(SOPHYAINCP)gnumd5.h \ 752 $(SOPHYAINCP)ppfbinstream.h \ 753 $(SOPHYAINCP)rawstream.h \ 754 $(SOPHYAINCP)ppfnametag.h \ 755 $(SOPHYAINCP)ndatablock.h \ 756 $(SOPHYAINCP)utilarr.h \ 757 $(SOPHYAINCP)sopemtx.h \ 758 $(SOPHYAINCP)timing.h 759 $(CXXCOMPILE) -o $@ $< 760 761 $(SOPHYAOBJP)tnt.o: tnt.cc $(SOPHYAINCP)sopnamsp.h \ 762 $(SOPHYAINCP)histinit.h \ 763 $(SOPHYAINCP)ntoolsinit.h \ 764 $(SOPHYAINCP)tarrinit.h \ 765 $(SOPHYAINCP)sophyainit.h \ 766 $(SOPHYAINCP)machdefs.h \ 767 $(SOPHYAINCP)dvlist.h \ 768 $(SOPHYAINCP)objfio.h \ 769 $(SOPHYAINCP)anydataobj.h \ 770 $(SOPHYAINCP)ppersist.h \ 771 $(SOPHYAINCP)pexceptions.h \ 772 $(SOPHYAINCP)gnumd5.h \ 773 $(SOPHYAINCP)ppfbinstream.h \ 774 $(SOPHYAINCP)rawstream.h \ 775 $(SOPHYAINCP)ppfnametag.h \ 776 $(SOPHYAINCP)mutyv.h \ 777 $(SOPHYAINCP)ntuple.h \ 778 $(SOPHYAINCP)ntupintf.h \ 779 $(SOPHYAINCP)xntuple.h \ 780 $(SOPHYAINCP)datatable.h \ 781 $(SOPHYAINCP)basedtable.h \ 782 $(SOPHYAINCP)segdatablock.h \ 783 $(SOPHYAINCP)swppfdtable.h \ 784 $(SOPHYAINCP)swsegdb.h \ 785 $(SOPHYAINCP)ppfswapper.h \ 786 $(SOPHYAINCP)ppftpointerio.h 787 $(CXXCOMPILE) -o $@ $< 788 789 $(SOPHYAOBJP)tobjio2.o: tobjio2.cc \ 790 $(SOPHYAINCP)sopnamsp.h \ 791 $(SOPHYAINCP)histinit.h \ 792 $(SOPHYAINCP)ntoolsinit.h \ 793 $(SOPHYAINCP)tarrinit.h \ 794 $(SOPHYAINCP)sophyainit.h \ 795 $(SOPHYAINCP)machdefs.h \ 796 $(SOPHYAINCP)histos.h \ 797 $(SOPHYAINCP)objfio.h \ 798 $(SOPHYAINCP)anydataobj.h \ 799 $(SOPHYAINCP)ppersist.h \ 800 $(SOPHYAINCP)pexceptions.h \ 801 $(SOPHYAINCP)gnumd5.h \ 802 $(SOPHYAINCP)ppfbinstream.h \ 803 $(SOPHYAINCP)rawstream.h \ 804 $(SOPHYAINCP)ppfnametag.h \ 805 $(SOPHYAINCP)peida.h \ 806 $(SOPHYAINCP)utils.h \ 807 $(SOPHYAINCP)perrors.h \ 808 $(SOPHYAINCP)fmath.h \ 809 $(SOPHYAINCP)tvector.h \ 810 $(SOPHYAINCP)tmatrix.h \ 811 $(SOPHYAINCP)tarray.h \ 812 $(SOPHYAINCP)basarr.h \ 813 $(SOPHYAINCP)mutyv.h \ 814 $(SOPHYAINCP)dvlist.h \ 815 $(SOPHYAINCP)ndatablock.h \ 816 $(SOPHYAINCP)utilarr.h \ 817 $(SOPHYAINCP)histos2.h \ 818 $(SOPHYAINCP)ntuple.h \ 819 $(SOPHYAINCP)ntupintf.h \ 820 $(SOPHYAINCP)nbrandom.h \ 821 $(SOPHYAINCP)srandgen.h 822 $(CXXCOMPILE) -o $@ $< 823 824 $(SOPHYAOBJP)tobjio.o: tobjio.cc $(SOPHYAINCP)sopnamsp.h \ 825 $(SOPHYAINCP)histinit.h \ 826 $(SOPHYAINCP)ntoolsinit.h \ 827 $(SOPHYAINCP)tarrinit.h \ 828 $(SOPHYAINCP)sophyainit.h \ 829 $(SOPHYAINCP)machdefs.h \ 830 $(SOPHYAINCP)histos.h \ 831 $(SOPHYAINCP)objfio.h \ 832 $(SOPHYAINCP)anydataobj.h \ 833 $(SOPHYAINCP)ppersist.h \ 834 $(SOPHYAINCP)pexceptions.h \ 835 $(SOPHYAINCP)gnumd5.h \ 836 $(SOPHYAINCP)ppfbinstream.h \ 837 $(SOPHYAINCP)rawstream.h \ 838 $(SOPHYAINCP)ppfnametag.h \ 839 $(SOPHYAINCP)peida.h \ 840 $(SOPHYAINCP)utils.h \ 841 $(SOPHYAINCP)perrors.h \ 842 $(SOPHYAINCP)fmath.h \ 843 $(SOPHYAINCP)tvector.h \ 844 $(SOPHYAINCP)tmatrix.h \ 845 $(SOPHYAINCP)tarray.h \ 846 $(SOPHYAINCP)basarr.h \ 847 $(SOPHYAINCP)mutyv.h \ 848 $(SOPHYAINCP)dvlist.h \ 849 $(SOPHYAINCP)ndatablock.h \ 850 $(SOPHYAINCP)utilarr.h \ 851 $(SOPHYAINCP)histos2.h \ 852 $(SOPHYAINCP)ntuple.h \ 853 $(SOPHYAINCP)ntupintf.h \ 854 $(SOPHYAINCP)nbrandom.h \ 855 $(SOPHYAINCP)srandgen.h \ 856 $(SOPHYAINCP)fioarr.h 857 $(CXXCOMPILE) -o $@ $< 858 859 $(SOPHYAOBJP)tpipe.o: tpipe.cc $(SOPHYAINCP)sopnamsp.h \ 860 $(SOPHYAINCP)zthread.h \ 861 $(SOPHYAINCP)machdefs.h \ 862 $(SOPHYAINCP)pexceptions.h \ 863 $(SOPHYAINCP)timing.h 864 $(CXXCOMPILE) -o $@ $< 865 866 $(SOPHYAOBJP)tsimplex.o: tsimplex.cc \ 867 $(SOPHYAINCP)sopnamsp.h \ 868 $(SOPHYAINCP)simplex.h \ 869 $(SOPHYAINCP)machdefs.h \ 870 $(SOPHYAINCP)tvector.h \ 871 $(SOPHYAINCP)tmatrix.h \ 872 $(SOPHYAINCP)tarray.h \ 873 $(SOPHYAINCP)basarr.h \ 874 $(SOPHYAINCP)anydataobj.h \ 875 $(SOPHYAINCP)mutyv.h \ 876 $(SOPHYAINCP)dvlist.h \ 877 $(SOPHYAINCP)objfio.h \ 878 $(SOPHYAINCP)ppersist.h \ 879 $(SOPHYAINCP)pexceptions.h \ 880 $(SOPHYAINCP)gnumd5.h \ 881 $(SOPHYAINCP)ppfbinstream.h \ 882 $(SOPHYAINCP)rawstream.h \ 883 $(SOPHYAINCP)ppfnametag.h \ 884 $(SOPHYAINCP)ndatablock.h \ 885 $(SOPHYAINCP)utilarr.h \ 886 $(SOPHYAINCP)generalfit.h \ 887 $(SOPHYAINCP)generaldata.h \ 888 $(SOPHYAINCP)ntupintf.h \ 889 $(SOPHYAINCP)poly.h \ 890 $(SOPHYAINCP)peida.h \ 891 $(SOPHYAINCP)utils.h \ 892 $(SOPHYAINCP)perrors.h \ 893 $(SOPHYAINCP)fmath.h \ 894 $(SOPHYAINCP)histinit.h \ 895 $(SOPHYAINCP)ntoolsinit.h \ 896 $(SOPHYAINCP)tarrinit.h \ 897 $(SOPHYAINCP)sophyainit.h \ 898 $(SOPHYAINCP)timing.h 899 $(CXXCOMPILE) -o $@ $< 900 901 $(SOPHYAOBJP)tsphereecp.o: tsphereecp.cc \ 902 $(SOPHYAINCP)sopnamsp.h \ 903 $(SOPHYAINCP)sambainit.h \ 904 $(SOPHYAINCP)skymapinit.h \ 905 $(SOPHYAINCP)sophyainit.h \ 906 $(SOPHYAINCP)machdefs.h \ 907 $(SOPHYAINCP)ntoolsinit.h \ 908 $(SOPHYAINCP)tarrinit.h \ 909 $(SOPHYAINCP)pexceptions.h \ 910 $(SOPHYAINCP)timing.h \ 911 $(SOPHYAINCP)sphereecp.h \ 912 $(SOPHYAINCP)sphericalmap.h \ 913 $(SOPHYAINCP)smathconst.h \ 914 $(SOPHYAINCP)pixelmap.h \ 915 $(SOPHYAINCP)ppersist.h \ 916 $(SOPHYAINCP)gnumd5.h \ 917 $(SOPHYAINCP)ppfbinstream.h \ 918 $(SOPHYAINCP)rawstream.h \ 919 $(SOPHYAINCP)ppfnametag.h \ 920 $(SOPHYAINCP)dvlist.h \ 921 $(SOPHYAINCP)objfio.h \ 922 $(SOPHYAINCP)anydataobj.h \ 923 $(SOPHYAINCP)mutyv.h \ 924 $(SOPHYAINCP)spherepos.h \ 925 $(SOPHYAINCP)unitvector.h \ 926 $(SOPHYAINCP)vector3d.h \ 927 $(SOPHYAINCP)longlat.h \ 928 $(SOPHYAINCP)utilgeom.h \ 929 $(SOPHYAINCP)tvector.h \ 930 $(SOPHYAINCP)tmatrix.h \ 931 $(SOPHYAINCP)tarray.h \ 932 $(SOPHYAINCP)basarr.h \ 933 $(SOPHYAINCP)ndatablock.h \ 934 $(SOPHYAINCP)utilarr.h \ 935 $(SOPHYAINCP)fiosphereecp.h \ 936 $(SOPHYAINCP)array.h \ 937 $(SOPHYAINCP)matharr.h \ 938 $(SOPHYAINCP)fioarr.h \ 939 $(SOPHYAINCP)sopemtx.h \ 940 $(SOPHYAINCP)samba.h \ 941 $(SOPHYAINCP)alm.h \ 942 $(SOPHYAINCP)nbrandom.h \ 943 $(SOPHYAINCP)srandgen.h \ 944 $(SOPHYAINCP)nbmath.h \ 945 $(SOPHYAINCP)triangmtx.h \ 946 $(SOPHYAINCP)bruit.h \ 947 $(SOPHYAINCP)circle.h \ 948 $(SOPHYAINCP)geometry.h \ 949 $(SOPHYAINCP)lambdaBuilder.h \ 950 $(SOPHYAINCP)misstime.h \ 951 $(SOPHYAINCP)mlobe.h \ 952 $(SOPHYAINCP)prefcount.h \ 953 $(SOPHYAINCP)scan.h \ 954 $(SOPHYAINCP)sphericaltransformserver.h \ 955 $(SOPHYAINCP)fftservintf.h \ 956 $(SOPHYAINCP)fftpserver.h \ 957 $(SOPHYAINCP)tod.h 958 $(CXXCOMPILE) -o $@ $< 959 960 $(SOPHYAOBJP)tspm2.o: tspm2.cc $(SOPHYAINCP)sopnamsp.h \ 961 $(SOPHYAINCP)sambainit.h \ 962 $(SOPHYAINCP)skymapinit.h \ 963 $(SOPHYAINCP)sophyainit.h \ 964 $(SOPHYAINCP)machdefs.h \ 965 $(SOPHYAINCP)ntoolsinit.h \ 966 $(SOPHYAINCP)tarrinit.h \ 967 $(SOPHYAINCP)skymap.h \ 968 $(SOPHYAINCP)spherethetaphi.h \ 969 $(SOPHYAINCP)sphericalmap.h \ 970 $(SOPHYAINCP)smathconst.h \ 971 $(SOPHYAINCP)pixelmap.h \ 972 $(SOPHYAINCP)ppersist.h \ 973 $(SOPHYAINCP)pexceptions.h \ 974 $(SOPHYAINCP)gnumd5.h \ 975 $(SOPHYAINCP)ppfbinstream.h \ 976 $(SOPHYAINCP)rawstream.h \ 977 $(SOPHYAINCP)ppfnametag.h \ 978 $(SOPHYAINCP)dvlist.h \ 979 $(SOPHYAINCP)objfio.h \ 980 $(SOPHYAINCP)anydataobj.h \ 981 $(SOPHYAINCP)mutyv.h \ 982 $(SOPHYAINCP)spherepos.h \ 983 $(SOPHYAINCP)unitvector.h \ 984 $(SOPHYAINCP)vector3d.h \ 985 $(SOPHYAINCP)longlat.h \ 986 $(SOPHYAINCP)utilgeom.h \ 987 $(SOPHYAINCP)tvector.h \ 988 $(SOPHYAINCP)tmatrix.h \ 989 $(SOPHYAINCP)tarray.h \ 990 $(SOPHYAINCP)basarr.h \ 991 $(SOPHYAINCP)ndatablock.h \ 992 $(SOPHYAINCP)utilarr.h \ 993 $(SOPHYAINCP)spherehealpix.h \ 994 $(SOPHYAINCP)HEALPixUtils.h \ 995 $(SOPHYAINCP)localmap.h \ 996 $(SOPHYAINCP)sphereecp.h \ 997 $(SOPHYAINCP)fiospherethetaphi.h \ 998 $(SOPHYAINCP)fiospherehealpix.h \ 999 $(SOPHYAINCP)fiolocalmap.h \ 1000 $(SOPHYAINCP)fiosphereecp.h \ 1001 $(SOPHYAINCP)tod.h \ 1002 $(SOPHYAINCP)misstime.h \ 1003 $(SOPHYAINCP)fitstarray.h \ 1004 $(SOPHYAINCP)fitsfile.h \ 1005 $(SOPHYAINCP)FitsIO/fitsio.h \ 1006 $(SOPHYAINCP)FitsIO/longnam.h \ 1007 $(SOPHYAINCP)fitsspherehealpix.h \ 1008 $(SOPHYAINCP)nbrandom.h \ 1009 $(SOPHYAINCP)srandgen.h \ 1010 $(SOPHYAINCP)timing.h 1011 $(CXXCOMPILE) -o $@ $< 1012 1013 $(SOPHYAOBJP)tspm.o: tspm.cc $(SOPHYAINCP)sopnamsp.h \ 1014 $(SOPHYAINCP)skymapinit.h \ 1015 $(SOPHYAINCP)sophyainit.h \ 1016 $(SOPHYAINCP)machdefs.h \ 1017 $(SOPHYAINCP)skymap.h \ 1018 $(SOPHYAINCP)spherethetaphi.h \ 1019 $(SOPHYAINCP)sphericalmap.h \ 1020 $(SOPHYAINCP)smathconst.h \ 1021 $(SOPHYAINCP)pixelmap.h \ 1022 $(SOPHYAINCP)ppersist.h \ 1023 $(SOPHYAINCP)pexceptions.h \ 1024 $(SOPHYAINCP)gnumd5.h \ 1025 $(SOPHYAINCP)ppfbinstream.h \ 1026 $(SOPHYAINCP)rawstream.h \ 1027 $(SOPHYAINCP)ppfnametag.h \ 1028 $(SOPHYAINCP)dvlist.h \ 1029 $(SOPHYAINCP)objfio.h \ 1030 $(SOPHYAINCP)anydataobj.h \ 1031 $(SOPHYAINCP)mutyv.h \ 1032 $(SOPHYAINCP)spherepos.h \ 1033 $(SOPHYAINCP)unitvector.h \ 1034 $(SOPHYAINCP)vector3d.h \ 1035 $(SOPHYAINCP)longlat.h \ 1036 $(SOPHYAINCP)utilgeom.h \ 1037 $(SOPHYAINCP)tvector.h \ 1038 $(SOPHYAINCP)tmatrix.h \ 1039 $(SOPHYAINCP)tarray.h \ 1040 $(SOPHYAINCP)basarr.h \ 1041 $(SOPHYAINCP)ndatablock.h \ 1042 $(SOPHYAINCP)utilarr.h \ 1043 $(SOPHYAINCP)spherehealpix.h \ 1044 $(SOPHYAINCP)HEALPixUtils.h \ 1045 $(SOPHYAINCP)localmap.h \ 1046 $(SOPHYAINCP)sphereecp.h \ 1047 $(SOPHYAINCP)fiospherethetaphi.h \ 1048 $(SOPHYAINCP)fiospherehealpix.h \ 1049 $(SOPHYAINCP)fiolocalmap.h \ 1050 $(SOPHYAINCP)fiosphereecp.h \ 1051 $(SOPHYAINCP)tod.h \ 1052 $(SOPHYAINCP)misstime.h \ 1053 $(SOPHYAINCP)timing.h 1054 $(CXXCOMPILE) -o $@ $< 1055 1056 $(SOPHYAOBJP)tstboloread.o: tstboloread.cc \ 1057 $(SOPHYAINCP)sopnamsp.h \ 1058 $(SOPHYAINCP)machdefs.h \ 1059 $(SOPHYAINCP)sophyainit.h \ 1060 $(SOPHYAINCP)pexceptions.h \ 1061 $(SOPHYAINCP)fboloread.h \ 1062 $(SOPHYAINCP)anydataobj.h \ 1063 $(SOPHYAINCP)tvector.h \ 1064 $(SOPHYAINCP)tmatrix.h \ 1065 $(SOPHYAINCP)tarray.h \ 1066 $(SOPHYAINCP)basarr.h \ 1067 $(SOPHYAINCP)mutyv.h \ 1068 $(SOPHYAINCP)dvlist.h \ 1069 $(SOPHYAINCP)objfio.h \ 1070 $(SOPHYAINCP)ppersist.h \ 1071 $(SOPHYAINCP)gnumd5.h \ 1072 $(SOPHYAINCP)ppfbinstream.h \ 1073 $(SOPHYAINCP)rawstream.h \ 1074 $(SOPHYAINCP)ppfnametag.h \ 1075 $(SOPHYAINCP)ndatablock.h \ 1076 $(SOPHYAINCP)utilarr.h \ 1077 $(SOPHYAINCP)fabtcolread.h \ 1078 $(SOPHYAINCP)FitsIO/fitsio.h \ 1079 $(SOPHYAINCP)FitsIO/longnam.h \ 1080 $(SOPHYAINCP)fabtwriter.h 1081 $(CXXCOMPILE) -o $@ $< 1082 1083 $(SOPHYAOBJP)tstcolread.o: tstcolread.cc \ 1084 $(SOPHYAINCP)sopnamsp.h \ 1085 $(SOPHYAINCP)machdefs.h \ 1086 $(SOPHYAINCP)sophyainit.h \ 1087 $(SOPHYAINCP)pexceptions.h \ 1088 $(SOPHYAINCP)fabtcolread.h \ 1089 $(SOPHYAINCP)anydataobj.h \ 1090 $(SOPHYAINCP)tvector.h \ 1091 $(SOPHYAINCP)tmatrix.h \ 1092 $(SOPHYAINCP)tarray.h \ 1093 $(SOPHYAINCP)basarr.h \ 1094 $(SOPHYAINCP)mutyv.h \ 1095 $(SOPHYAINCP)dvlist.h \ 1096 $(SOPHYAINCP)objfio.h \ 1097 $(SOPHYAINCP)ppersist.h \ 1098 $(SOPHYAINCP)gnumd5.h \ 1099 $(SOPHYAINCP)ppfbinstream.h \ 1100 $(SOPHYAINCP)rawstream.h \ 1101 $(SOPHYAINCP)ppfnametag.h \ 1102 $(SOPHYAINCP)ndatablock.h \ 1103 $(SOPHYAINCP)utilarr.h \ 1104 $(SOPHYAINCP)FitsIO/fitsio.h \ 1105 $(SOPHYAINCP)FitsIO/longnam.h \ 1106 $(SOPHYAINCP)fabtwriter.h 1107 $(CXXCOMPILE) -o $@ $< 1108 1109 $(SOPHYAOBJP)tstdtable.o: tstdtable.cc \ 1110 $(SOPHYAINCP)sopnamsp.h \ 1111 $(SOPHYAINCP)histinit.h \ 1112 $(SOPHYAINCP)ntoolsinit.h \ 1113 $(SOPHYAINCP)tarrinit.h \ 1114 $(SOPHYAINCP)sophyainit.h \ 1115 $(SOPHYAINCP)machdefs.h \ 1116 $(SOPHYAINCP)ctimer.h \ 1117 $(SOPHYAINCP)datatable.h \ 1118 $(SOPHYAINCP)basedtable.h \ 1119 $(SOPHYAINCP)ntupintf.h \ 1120 $(SOPHYAINCP)dvlist.h \ 1121 $(SOPHYAINCP)objfio.h \ 1122 $(SOPHYAINCP)anydataobj.h \ 1123 $(SOPHYAINCP)ppersist.h \ 1124 $(SOPHYAINCP)pexceptions.h \ 1125 $(SOPHYAINCP)gnumd5.h \ 1126 $(SOPHYAINCP)ppfbinstream.h \ 1127 $(SOPHYAINCP)rawstream.h \ 1128 $(SOPHYAINCP)ppfnametag.h \ 1129 $(SOPHYAINCP)mutyv.h \ 1130 $(SOPHYAINCP)segdatablock.h \ 1131 $(SOPHYAINCP)swppfdtable.h \ 1132 $(SOPHYAINCP)swsegdb.h \ 1133 $(SOPHYAINCP)ppfswapper.h \ 1134 $(SOPHYAINCP)ppftpointerio.h 1135 $(CXXCOMPILE) -o $@ $< 1136 1137 $(SOPHYAOBJP)tstndblk.o: tstndblk.cc \ 1138 $(SOPHYAINCP)sopnamsp.h \ 1139 $(SOPHYAINCP)machdefs.h \ 1140 $(SOPHYAINCP)ntoolsinit.h \ 1141 $(SOPHYAINCP)tarrinit.h \ 1142 $(SOPHYAINCP)sophyainit.h \ 1143 $(SOPHYAINCP)pexceptions.h \ 1144 $(SOPHYAINCP)ndatablock.h \ 1145 $(SOPHYAINCP)anydataobj.h 1146 $(CXXCOMPILE) -o $@ $< 1147 1148 $(SOPHYAOBJP)tstppfwrapstl.o: tstppfwrapstl.cc \ 1149 $(SOPHYAINCP)sopnamsp.h \ 1150 $(SOPHYAINCP)machdefs.h \ 1151 $(SOPHYAINCP)timing.h \ 1152 $(SOPHYAINCP)histinit.h \ 1153 $(SOPHYAINCP)ntoolsinit.h \ 1154 $(SOPHYAINCP)tarrinit.h \ 1155 $(SOPHYAINCP)sophyainit.h \ 1156 $(SOPHYAINCP)pexceptions.h \ 1157 $(SOPHYAINCP)ppfwrapstlv.h \ 1158 $(SOPHYAINCP)anydataobj.h \ 1159 $(SOPHYAINCP)ppersist.h \ 1160 $(SOPHYAINCP)gnumd5.h \ 1161 $(SOPHYAINCP)ppfbinstream.h \ 1162 $(SOPHYAINCP)rawstream.h \ 1163 $(SOPHYAINCP)ppfnametag.h 1164 $(CXXCOMPILE) -o $@ $< 1165 1166 $(SOPHYAOBJP)tstsegdb.o: tstsegdb.cc \ 1167 $(SOPHYAINCP)sopnamsp.h \ 1168 $(SOPHYAINCP)machdefs.h \ 1169 $(SOPHYAINCP)timing.h \ 1170 $(SOPHYAINCP)histinit.h \ 1171 $(SOPHYAINCP)ntoolsinit.h \ 1172 $(SOPHYAINCP)tarrinit.h \ 1173 $(SOPHYAINCP)sophyainit.h \ 1174 $(SOPHYAINCP)pexceptions.h \ 1175 $(SOPHYAINCP)segdatablock.h \ 1176 $(SOPHYAINCP)anydataobj.h \ 1177 $(SOPHYAINCP)fiosegdb.h \ 1178 $(SOPHYAINCP)ppersist.h \ 1179 $(SOPHYAINCP)gnumd5.h \ 1180 $(SOPHYAINCP)ppfbinstream.h \ 1181 $(SOPHYAINCP)rawstream.h \ 1182 $(SOPHYAINCP)ppfnametag.h \ 1183 $(SOPHYAINCP)ppftpointerio.h \ 1184 $(SOPHYAINCP)swsegdb.h \ 1185 $(SOPHYAINCP)ppfswapper.h \ 1186 $(SOPHYAINCP)ppfwrapstlv.h 1187 $(CXXCOMPILE) -o $@ $< 1188 1189 $(SOPHYAOBJP)tsttmat.o: tsttmat.cc \ 1190 $(SOPHYAINCP)sopnamsp.h \ 1191 $(SOPHYAINCP)machdefs.h \ 1192 $(SOPHYAINCP)ntoolsinit.h \ 1193 $(SOPHYAINCP)tarrinit.h \ 1194 $(SOPHYAINCP)sophyainit.h \ 1195 $(SOPHYAINCP)pexceptions.h \ 1196 $(SOPHYAINCP)array.h \ 1197 $(SOPHYAINCP)tarray.h \ 1198 $(SOPHYAINCP)basarr.h \ 1199 $(SOPHYAINCP)anydataobj.h \ 1200 $(SOPHYAINCP)mutyv.h \ 1201 $(SOPHYAINCP)dvlist.h \ 1202 $(SOPHYAINCP)objfio.h \ 1203 $(SOPHYAINCP)ppersist.h \ 1204 $(SOPHYAINCP)gnumd5.h \ 1205 $(SOPHYAINCP)ppfbinstream.h \ 1206 $(SOPHYAINCP)rawstream.h \ 1207 $(SOPHYAINCP)ppfnametag.h \ 1208 $(SOPHYAINCP)ndatablock.h \ 1209 $(SOPHYAINCP)utilarr.h \ 1210 $(SOPHYAINCP)tmatrix.h \ 1211 $(SOPHYAINCP)tvector.h \ 1212 $(SOPHYAINCP)matharr.h \ 1213 $(SOPHYAINCP)fioarr.h \ 1214 $(SOPHYAINCP)sopemtx.h \ 1215 $(SOPHYAINCP)srandgen.h 1216 $(CXXCOMPILE) -o $@ $< 1217 1218 $(SOPHYAOBJP)tsttminv.o: tsttminv.cc \ 1219 $(SOPHYAINCP)sopnamsp.h \ 1220 $(SOPHYAINCP)machdefs.h \ 1221 $(SOPHYAINCP)timing.h \ 1222 $(SOPHYAINCP)ntoolsinit.h \ 1223 $(SOPHYAINCP)tarrinit.h \ 1224 $(SOPHYAINCP)sophyainit.h \ 1225 $(SOPHYAINCP)pexceptions.h \ 1226 $(SOPHYAINCP)array.h \ 1227 $(SOPHYAINCP)tarray.h \ 1228 $(SOPHYAINCP)basarr.h \ 1229 $(SOPHYAINCP)anydataobj.h \ 1230 $(SOPHYAINCP)mutyv.h \ 1231 $(SOPHYAINCP)dvlist.h \ 1232 $(SOPHYAINCP)objfio.h \ 1233 $(SOPHYAINCP)ppersist.h \ 1234 $(SOPHYAINCP)gnumd5.h \ 1235 $(SOPHYAINCP)ppfbinstream.h \ 1236 $(SOPHYAINCP)rawstream.h \ 1237 $(SOPHYAINCP)ppfnametag.h \ 1238 $(SOPHYAINCP)ndatablock.h \ 1239 $(SOPHYAINCP)utilarr.h \ 1240 $(SOPHYAINCP)tmatrix.h \ 1241 $(SOPHYAINCP)tvector.h \ 1242 $(SOPHYAINCP)matharr.h \ 1243 $(SOPHYAINCP)fioarr.h \ 1244 $(SOPHYAINCP)sopemtx.h \ 1245 $(SOPHYAINCP)srandgen.h \ 1246 $(SOPHYAINCP)intflapack.h 1247 $(CXXCOMPILE) -o $@ $< 1248 1249 $(SOPHYAOBJP)tsttvec.o: tsttvec.cc \ 1250 $(SOPHYAINCP)sopnamsp.h \ 1251 $(SOPHYAINCP)machdefs.h \ 1252 $(SOPHYAINCP)ntoolsinit.h \ 1253 $(SOPHYAINCP)tarrinit.h \ 1254 $(SOPHYAINCP)sophyainit.h \ 1255 $(SOPHYAINCP)pexceptions.h \ 1256 $(SOPHYAINCP)array.h \ 1257 $(SOPHYAINCP)tarray.h \ 1258 $(SOPHYAINCP)basarr.h \ 1259 $(SOPHYAINCP)anydataobj.h \ 1260 $(SOPHYAINCP)mutyv.h \ 1261 $(SOPHYAINCP)dvlist.h \ 1262 $(SOPHYAINCP)objfio.h \ 1263 $(SOPHYAINCP)ppersist.h \ 1264 $(SOPHYAINCP)gnumd5.h \ 1265 $(SOPHYAINCP)ppfbinstream.h \ 1266 $(SOPHYAINCP)rawstream.h \ 1267 $(SOPHYAINCP)ppfnametag.h \ 1268 $(SOPHYAINCP)ndatablock.h \ 1269 $(SOPHYAINCP)utilarr.h \ 1270 $(SOPHYAINCP)tmatrix.h \ 1271 $(SOPHYAINCP)tvector.h \ 1272 $(SOPHYAINCP)matharr.h \ 1273 $(SOPHYAINCP)fioarr.h \ 1274 $(SOPHYAINCP)sopemtx.h \ 1275 $(SOPHYAINCP)srandgen.h 1276 $(CXXCOMPILE) -o $@ $< 1277 1278 $(SOPHYAOBJP)ttimestamp.o: ttimestamp.cc \ 1279 $(SOPHYAINCP)sopnamsp.h \ 1280 $(SOPHYAINCP)machdefs.h \ 1281 $(SOPHYAINCP)timing.h \ 1282 $(SOPHYAINCP)timestamp.h \ 1283 $(SOPHYAINCP)histinit.h \ 1284 $(SOPHYAINCP)ntoolsinit.h \ 1285 $(SOPHYAINCP)tarrinit.h \ 1286 $(SOPHYAINCP)sophyainit.h \ 1287 $(SOPHYAINCP)pexceptions.h 1288 $(CXXCOMPILE) -o $@ $< 1289 1290 $(SOPHYAOBJP)zthr.o: zthr.cc $(SOPHYAINCP)sopnamsp.h \ 1291 $(SOPHYAINCP)zthread.h \ 1292 $(SOPHYAINCP)machdefs.h \ 1293 $(SOPHYAINCP)pexceptions.h \ 1294 $(SOPHYAINCP)timing.h 1295 $(CXXCOMPILE) -o $@ $< 1296
Note:
See TracChangeset
for help on using the changeset viewer.