Changeset 1264
- Timestamp:
- Jul 22, 2004, 10:42:54 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 12 edited
-
Makefile (modified) (8 diffs)
-
astronomy/Makefile (modified) (1 diff)
-
astronomy/psCCD.d (modified) (1 diff)
-
collections/Makefile (modified) (2 diffs)
-
dataManip/Makefile (modified) (1 diff)
-
dataManip/psFFT.c (modified) (2 diffs)
-
dataManip/psFFT.d (modified) (1 diff)
-
dataManip/psMatrix.d (modified) (1 diff)
-
dataManip/psMatrixVectorArithmetic.d (modified) (1 diff)
-
dataManip/psMinimize.d (modified) (1 diff)
-
dataManip/psVectorFFT.c (modified) (2 diffs)
-
fft/psVectorFFT.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/Makefile
r1232 r1264 3 3 ## Makefile: psLib 4 4 ## 5 ## $Revision: 1.1 5$ $Name: not supported by cvs2svn $6 ## $Date: 2004-07- 15 22:43:53$5 ## $Revision: 1.16 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-07-22 20:42:54 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 27 27 VERSION:= ": Project Version: Unknown " 28 28 else 29 VERSION:= ": Project Version: $(NAME) " 29 VERSION:= ": Project VersidistcleanSysUtils: 30 $(MAKE) --directory=sysUtils distclean 31 32 on: $(NAME) " 30 33 endif 31 34 32 35 # Define the target to build 33 36 34 ALLTARGETS = sysUtils collections dataManip astronomy37 ALLTARGETS = sysUtils collections image dataManip astronomy 35 38 36 39 TARGET_DYNAMIC = libpslib.$(DLL) … … 39 42 # Define the installation targets 40 43 41 INSTALLTARGETS = installSysUtils installCollections install DataManip installAstronomy44 INSTALLTARGETS = installSysUtils installCollections installImage installDataManip installAstronomy 42 45 43 46 # Define the clean up targets 44 47 45 CLEANTARGETS = cleanSysUtils cleanCollections clean DataManip cleanAstronomy48 CLEANTARGETS = cleanSysUtils cleanCollections cleanImage cleanDataManip cleanAstronomy 46 49 47 50 # Define the distribution clean up targets 48 51 49 DISTCLEANTARGETS = distcleanSysUtils distcleanCollections distclean DataManip distcleanAstronomy52 DISTCLEANTARGETS = distcleanSysUtils distcleanCollections distcleanImage distcleanDataManip distcleanAstronomy 50 53 51 54 # Define PHONY target "all" which will make all necessary items … … 62 65 sysUtils: 63 66 $(MAKE) --directory=sysUtils all 67 68 image: 69 $(MAKE) --directory=image all 64 70 65 71 collections: … … 80 86 $(MAKE) --directory=sysUtils install 81 87 88 installImage: 89 $(MAKE) --directory=image install 90 82 91 installCollections: 83 92 $(MAKE) --directory=collections install … … 95 104 $(MAKE) --directory=sysUtils clean 96 105 106 cleanImage: 107 $(MAKE) --directory=image clean 108 97 109 cleanCollections: 98 110 $(MAKE) --directory=collections clean … … 109 121 distcleanSysUtils: 110 122 $(MAKE) --directory=sysUtils distclean 123 124 distcleanImage: 125 $(MAKE) --directory=image distclean 111 126 112 127 distcleanCollections: … … 180 195 181 196 # List of PHONY targets with make file 182 .PHONY: sysUtils collections dataManip astronomy197 .PHONY: sysUtils collections image dataManip astronomy -
trunk/psLib/src/astronomy/Makefile
r1236 r1264 5 5 TARGET_STATIC = libpslib.a 6 6 include ../Makefile.Globals 7 CFLAGS := $(CFLAGS_RELOC) -I. -I../sysUtils -I../collections -I.. 7 CFLAGS := $(CFLAGS_RELOC) -I. -I../sysUtils -I../collections -I.. -I../image 8 8 9 9 SRC_OBJS = psTime.o \ -
trunk/psLib/src/astronomy/psCCD.d
r1240 r1264 1 psCCD.o psCCD.d : psCCD.c psCCD.h ../collections/psType.h ../ collections/psImage.h \1 psCCD.o psCCD.d : psCCD.c psCCD.h ../collections/psType.h ../image/psImage.h \ 2 2 ../collections/psArray.h ../collections/psCompare.h \ 3 3 ../collections/psList.h ../sysUtils/psMemory.h -
trunk/psLib/src/collections/Makefile
r1233 r1264 3 3 ## Makefile: collections 4 4 ## 5 ## $Revision: 1.2 5$ $Name: not supported by cvs2svn $6 ## $Date: 2004-07- 15 23:52:33$5 ## $Revision: 1.26 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-07-22 20:42:54 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 32 32 SRC_OBJS = psBitSet.o \ 33 33 psVector.o \ 34 psImage.o \35 34 psList.o \ 36 35 psScalar.o \ -
trunk/psLib/src/dataManip/Makefile
r1216 r1264 5 5 TARGET_STATIC = libpslib.a 6 6 include ../Makefile.Globals 7 CFLAGS := $(CFLAGS_RELOC) -I. -I../sysUtils -I../collections -I.. 7 CFLAGS := $(CFLAGS_RELOC) -I. -I../sysUtils -I../collections -I.. -I../image 8 8 9 9 SRC_OBJS = psStats.o \ 10 10 psFunctions.o \ 11 psImageStats.o \12 11 psMatrix.o \ 13 12 psMatrixVectorArithmetic.o \ 14 13 psFFT.o \ 15 psImageIO.o \16 14 psMinimize.o \ 17 psImageManip.o18 15 19 16 all: $(TARGET_STATIC) -
trunk/psLib/src/dataManip/psFFT.c
r1073 r1264 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $8 * @date $Date: 2004-0 6-23 23:00:15$7 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2004-07-22 20:42:54 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 #include "psMemory.h" 22 22 #include "psLogMsg.h" 23 #include "psImageExtraction.h" 23 24 24 25 #define P_FFTW_PLAN_RIGOR FFTW_ESTIMATE -
trunk/psLib/src/dataManip/psFFT.d
r986 r1264 1 psFFT.o psFFT.d : psFFT.c psFFT.h ../ collections/psImage.h ../collections/psType.h \1 psFFT.o psFFT.d : psFFT.c psFFT.h ../image/psImage.h ../collections/psType.h \ 2 2 ../collections/psVector.h ../sysUtils/psError.h ../sysUtils/psMemory.h \ 3 ../sysUtils/psLogMsg.h 3 ../sysUtils/psLogMsg.h ../image/psImageExtraction.h -
trunk/psLib/src/dataManip/psMatrix.d
r986 r1264 1 1 psMatrix.o psMatrix.d : psMatrix.c ../sysUtils/psMemory.h ../sysUtils/psError.h \ 2 ../ collections/psImage.h ../collections/psType.h \3 ../collections/psVector.hpsMatrix.h2 ../image/psImage.h ../collections/psType.h ../collections/psVector.h \ 3 psMatrix.h -
trunk/psLib/src/dataManip/psMatrixVectorArithmetic.d
r1074 r1264 1 1 psMatrixVectorArithmetic.o psMatrixVectorArithmetic.d : psMatrixVectorArithmetic.c \ 2 ../sysUtils/psMemory.h ../sysUtils/psError.h ../ collections/psImage.h \2 ../sysUtils/psMemory.h ../sysUtils/psError.h ../image/psImage.h \ 3 3 ../collections/psType.h ../collections/psVector.h \ 4 4 ../collections/psScalar.h -
trunk/psLib/src/dataManip/psMinimize.d
r1233 r1264 1 1 psMinimize.o psMinimize.d : psMinimize.c ../sysUtils/psMemory.h \ 2 ../collections/psVector.h ../collections/psType.h \3 ../ collections/psImage.h ../sysUtils/psTrace.h ../sysUtils/psError.h \4 ../sysUtils/psAbort.hpsFunctions.h psMinimize.h psMatrix.h2 ../collections/psVector.h ../collections/psType.h ../image/psImage.h \ 3 ../sysUtils/psTrace.h ../sysUtils/psError.h ../sysUtils/psAbort.h \ 4 psFunctions.h psMinimize.h psMatrix.h -
trunk/psLib/src/dataManip/psVectorFFT.c
r1073 r1264 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $8 * @date $Date: 2004-0 6-23 23:00:15$7 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2004-07-22 20:42:54 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 #include "psMemory.h" 22 22 #include "psLogMsg.h" 23 #include "psImageExtraction.h" 23 24 24 25 #define P_FFTW_PLAN_RIGOR FFTW_ESTIMATE -
trunk/psLib/src/fft/psVectorFFT.c
r1073 r1264 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $8 * @date $Date: 2004-0 6-23 23:00:15$7 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2004-07-22 20:42:54 $ 9 9 * 10 10 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 21 21 #include "psMemory.h" 22 22 #include "psLogMsg.h" 23 #include "psImageExtraction.h" 23 24 24 25 #define P_FFTW_PLAN_RIGOR FFTW_ESTIMATE
Note:
See TracChangeset
for help on using the changeset viewer.
