Changeset 1654 in Sophya for trunk/SophyaExt/FitsIOServer
- Timestamp:
- Sep 26, 2001, 6:45:06 PM (24 years ago)
- Location:
- trunk/SophyaExt/FitsIOServer
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/FitsIOServer/Makefile
r1509 r1654 3 3 all: $(LIB)libFitsIOServer.a 4 4 clean: 5 rm -f $(OBJ)f btntintf.o $(OBJ)fitsautoreader.o $(OBJ)fitsbntbllineRW.o $(OBJ)fitsfile.o $(OBJ)fitslocalmap.o $(OBJ)fitsntuple.o $(OBJ)fitsspherehealpix.o $(OBJ)fitstarray.o $(OBJ)fitsxntuple.o5 rm -f $(OBJ)fabtcolread.o $(OBJ)fabtwriter.o $(OBJ)fbtntintf.o $(OBJ)fitsautoreader.o $(OBJ)fitsbntbllineRW.o $(OBJ)fitsfile.o $(OBJ)fitslocalmap.o $(OBJ)fitsntuple.o $(OBJ)fitsspherehealpix.o $(OBJ)fitstarray.o $(OBJ)fitsxntuple.o 6 6 rm -f $(LIB)libFitsIOServer.a 7 $(LIB)libFitsIOServer.a : $(OBJ)f btntintf.o $(OBJ)fitsautoreader.o $(OBJ)fitsbntbllineRW.o $(OBJ)fitsfile.o $(OBJ)fitslocalmap.o $(OBJ)fitsntuple.o $(OBJ)fitsspherehealpix.o $(OBJ)fitstarray.o $(OBJ)fitsxntuple.o7 $(LIB)libFitsIOServer.a : $(OBJ)fabtcolread.o $(OBJ)fabtwriter.o $(OBJ)fbtntintf.o $(OBJ)fitsautoreader.o $(OBJ)fitsbntbllineRW.o $(OBJ)fitsfile.o $(OBJ)fitslocalmap.o $(OBJ)fitsntuple.o $(OBJ)fitsspherehealpix.o $(OBJ)fitstarray.o $(OBJ)fitsxntuple.o 8 8 $(ARCXX) $(ARCXXFLAGS) $@ $? 9 9 ifeq ($(CXX),cxx) … … 11 11 endif 12 12 13 $(OBJ)fbtntintf.o: fbtntintf.cc $(INC)machdefs.h \ 13 $(OBJ)fabtcolread.o: fabtcolread.cc \ 14 $(INC)machdefs.h \ 15 $(INC)pexceptions.h \ 16 fabtcolread.h $(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)gnumd5.h \ 26 $(INC)ndatablock.h \ 27 $(INC)utilarr.h \ 28 $(EXTINCPATH)FitsIO/fitsio.h \ 29 $(EXTINCPATH)FitsIO/longnam.h 30 $(OBJ)fabtwriter.o: fabtwriter.cc \ 31 $(INC)machdefs.h \ 32 $(INC)pexceptions.h fabtwriter.h \ 33 $(INC)anydataobj.h \ 34 $(INC)tvector.h \ 35 $(INC)tmatrix.h \ 36 $(INC)tarray.h \ 37 $(INC)basarr.h \ 38 $(INC)mutyv.h \ 39 $(INC)dvlist.h \ 40 $(INC)objfio.h \ 41 $(INC)ppersist.h \ 42 $(INC)gnumd5.h \ 43 $(INC)ndatablock.h \ 44 $(INC)utilarr.h \ 45 $(EXTINCPATH)FitsIO/fitsio.h \ 46 $(EXTINCPATH)FitsIO/longnam.h 47 $(OBJ)fbtntintf.o: fbtntintf.cc \ 48 $(INC)machdefs.h \ 14 49 $(INC)pexceptions.h fbtntintf.h \ 15 50 $(INC)anydataobj.h \ … … 19 54 $(OBJ)fitsautoreader.o: fitsautoreader.cc \ 20 55 $(INC)pexceptions.h \ 21 $(INC)machdefs.h fitsautoreader.h \ 56 $(INC)machdefs.h \ 57 fitsautoreader.h \ 22 58 $(INC)anydataobj.h fitsfile.h \ 23 59 $(INC)ndatablock.h \ … … 31 67 $(INC)tarray.h \ 32 68 $(INC)basarr.h \ 33 $(INC)utilarr.h fitsspherehealpix.h \ 69 $(INC)utilarr.h \ 70 fitsspherehealpix.h \ 34 71 $(INC)spherehealpix.h \ 35 72 $(INC)sphericalmap.h \ … … 43 80 $(INC)tvector.h \ 44 81 $(INC)tmatrix.h \ 45 $(INC)HEALPixUtils.h fitsntuple.h\46 $(INC)ntuple.h \82 $(INC)HEALPixUtils.h \ 83 fitsntuple.h $(INC)ntuple.h \ 47 84 $(INC)ntupintf.h fitsxntuple.h \ 48 85 $(INC)xntuple.h fitslocalmap.h \ … … 50 87 $(OBJ)fitsbntbllineRW.o: fitsbntbllineRW.cc \ 51 88 $(INC)pexceptions.h \ 52 $(INC)machdefs.h fitsbntbllineRW.h\53 $(INC)dvlist.h \89 $(INC)machdefs.h \ 90 fitsbntbllineRW.h $(INC)dvlist.h \ 54 91 $(INC)objfio.h \ 55 92 $(INC)anydataobj.h \ … … 61 98 $(EXTINCPATH)FitsIO/longnam.h \ 62 99 $(INC)utils.h 63 $(OBJ)fitsfile.o: fitsfile.cc $(INC)machdefs.h \ 64 fitsfile.h $(INC)ndatablock.h \ 100 $(OBJ)fitsfile.o: fitsfile.cc \ 101 $(INC)machdefs.h fitsfile.h \ 102 $(INC)ndatablock.h \ 65 103 $(INC)anydataobj.h \ 66 104 $(INC)dvlist.h \ … … 72 110 $(EXTINCPATH)FitsIO/fitsio.h \ 73 111 $(EXTINCPATH)FitsIO/longnam.h \ 74 $(INC)strutil.h fitsspherehealpix.h \ 112 $(INC)strutil.h \ 113 fitsspherehealpix.h \ 75 114 $(INC)spherehealpix.h \ 76 115 $(INC)sphericalmap.h \ … … 130 169 $(OBJ)fitsspherehealpix.o: fitsspherehealpix.cc \ 131 170 $(INC)pexceptions.h \ 132 $(INC)machdefs.h fitsspherehealpix.h \ 171 $(INC)machdefs.h \ 172 fitsspherehealpix.h \ 133 173 $(INC)spherehealpix.h \ 134 174 $(INC)sphericalmap.h \ … … 155 195 $(EXTINCPATH)FitsIO/fitsio.h \ 156 196 $(EXTINCPATH)FitsIO/longnam.h fitstarray.h 157 $(OBJ)fitstarray.o: fitstarray.cc $(INC)machdefs.h \ 197 $(OBJ)fitstarray.o: fitstarray.cc \ 198 $(INC)machdefs.h \ 158 199 $(INC)pexceptions.h fitstarray.h \ 159 200 $(INC)tarray.h \ -
trunk/SophyaExt/FitsIOServer/objlist.list
r1508 r1654 1 fabtcolread.o 2 fabtwriter.o 1 3 fbtntintf.o 2 4 fitsautoreader.o
Note:
See TracChangeset
for help on using the changeset viewer.