Changeset 4549
- Timestamp:
- Jul 13, 2005, 12:49:31 AM (21 years ago)
- Location:
- trunk/psLib
- Files:
-
- 2 added
- 6 edited
-
configure.ac (modified) (4 diffs)
-
src/Makefile.am (modified) (1 diff)
-
src/sys/Makefile.am (modified) (1 diff)
-
src/sys/psErrorCodes.c (modified) (1 diff)
-
test/sys/Makefile.am (modified) (2 diffs)
-
test/types/Makefile.am (modified) (1 diff)
-
test/xml (added)
-
test/xml/Makefile.am (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/configure.ac
r4541 r4549 14 14 SUBDIR="etc src test" dnl don't include 'swig', as it is optional 15 15 16 SRCPATH="`pwd`/src" 16 17 SRCDIRS="sys astro db fft fits imageops math mathtypes types xml" 18 SRCINC=`echo "${SRCDIRS=}" | sed "s|\(\\w\+\)|-I\${SRCPATH=}/\1|g"` 19 20 SRCSUBLIBS=`echo "${SRCDIRS=}" | sed "s|\(\\w\+\)|\1/libpslib\1.la|g"` 21 AC_SUBST(SRCSUBLIBS,${SRCSUBLIBS=}) 22 CFLAGS="${CFLAGS=} -I${SRCPATH=} ${SRCINC=}" 23 AC_SUBST(SRCINC,${SRCINC=}) 17 24 18 25 AC_DISABLE_STATIC … … 74 81 75 82 dnl Add the src directories to the include path 76 SRCPATH="`pwd`/src"77 SRCINC=`echo "${SRCDIRS=}" | sed "s|\(\\w\+\)|-I\${SRCPATH=}/\1|g"`78 SRCSUBLIBS=`echo "${SRCDIRS=}" | sed "s|\(\\w\+\)|\1/libpslib\1.la|g"`79 AC_SUBST(SRCSUBLIBS,${SRCSUBLIBS=})80 CFLAGS="${CFLAGS=} -I${SRCPATH=} ${SRCINC=}"81 AC_SUBST(SRCINC,${SRCINC=})82 83 83 84 … … 253 254 AC_SUBST(PSLIB_CFLAGS,[$PSLIB_CFLAGS]) 254 255 255 AC_SUBST( LANG,[en])256 AC_SUBST(PS_LANG,[en]) 256 257 257 258 AC_CONFIG_FILES([ 258 259 Makefile 259 260 src/Makefile 261 src/sys/Makefile 260 262 src/astro/Makefile 261 263 src/db/Makefile … … 265 267 src/math/Makefile 266 268 src/mathtypes/Makefile 267 src/sys/Makefile268 269 src/types/Makefile 269 270 src/xml/Makefile 271 test/Makefile 272 test/sys/Makefile 273 test/astro/Makefile 274 test/db/Makefile 275 test/fft/Makefile 276 test/fits/Makefile 277 test/imageops/Makefile 278 test/math/Makefile 279 test/mathtypes/Makefile 280 test/types/Makefile 281 test/xml/Makefile 270 282 test/FullUnitTest 271 test/Makefile272 test/astronomy/Makefile273 test/collections/Makefile274 test/dataManip/Makefile275 test/dataIO/Makefile276 test/image/Makefile277 test/sysUtils/Makefile278 283 etc/pslib/Makefile 279 284 etc/Makefile -
trunk/psLib/src/Makefile.am
r4540 r4549 12 12 13 13 BUILT_SOURCES = psErrorText.h 14 psErrorText.h: psErrorText_$( LANG).dat14 psErrorText.h: psErrorText_$(PS_LANG).dat 15 15 $(top_srcdir)/psParseErrorCodes --data=$? $@ 16 16 -
trunk/psLib/src/sys/Makefile.am
r4540 r4549 17 17 BUILT_SOURCES = psErrorCodes.c 18 18 19 psErrorCodes.c: ../psErrorCodes_$( LANG).dat psErrorCodes.c.in psErrorCodes.h20 $(top_srcdir)/psParseErrorCodes --data=../psErrorCodes_$( LANG).dat $@19 psErrorCodes.c: ../psErrorCodes_$(PS_LANG).dat psErrorCodes.c.in psErrorCodes.h 20 $(top_srcdir)/psParseErrorCodes --data=../psErrorCodes_$(PS_LANG).dat $@ 21 21 22 22 psError.h: psErrorCodes.h 23 23 24 psErrorCodes.h: ../psErrorCodes_$( LANG).dat psErrorCodes.h.in25 $(top_srcdir)/psParseErrorCodes --data=../psErrorCodes_$( LANG).dat $@24 psErrorCodes.h: ../psErrorCodes_$(PS_LANG).dat psErrorCodes.h.in 25 $(top_srcdir)/psParseErrorCodes --data=../psErrorCodes_$(PS_LANG).dat $@ 26 26 27 27 pslibincludedir = $(includedir) -
trunk/psLib/src/sys/psErrorCodes.c
r4545 r4549 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.2 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-07-1 2 19:35:15$9 * @version $Revision: 1.23 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-07-13 10:49:30 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/test/sys/Makefile.am
r4547 r4549 1 #Makefile for mathtypes tests1 #Makefile for sys tests 2 2 # 3 3 AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) … … 12 12 tst_psTrace 13 13 14 tst_ps Image_SOURCES = tst_psImage.c15 tst_ps Scalar_SOURCES = tst_psScalar.c16 tst_ps Vector_SOURCES = tst_psVector.c17 tst_ps VectorSort_01_SOURCES = tst_psVectorSort_01.c18 tst_ps VectorSort_02_SOURCES = tst_psVectorSort_02.c19 tst_ps VectorSort_03_SOURCES = tst_psVectorSort_03.c20 tst_ps VectorSort_04_SOURCES = tst_psVectorSort_04.c14 tst_psAbort_SOURCES = tst_psAbort.c 15 tst_psConfigure_SOURCES = tst_psConfigure.c 16 tst_psError_SOURCES = tst_psError.c 17 tst_psLogMsg_SOURCES = tst_psLogMsg.c 18 tst_psMemory_SOURCES = tst_psMemory.c 19 tst_psString_SOURCES = tst_psString.c 20 tst_psTrace_SOURCES = tst_psTrace.c 21 21 22 22 check_DATA = -
trunk/psLib/test/types/Makefile.am
r4547 r4549 4 4 5 5 TESTS = \ 6 tst_psImage \ 7 tst_psScalar \ 8 tst_psVector \ 9 tst_psVectorSort_01 \ 10 tst_psVectorSort_02 \ 11 tst_psVectorSort_03 \ 12 tst_psVectorSort_04 6 tst_psArray \ 7 tst_psBitSet \ 8 tst_psHash00 \ 9 tst_psHash01 \ 10 tst_psHash02 \ 11 tst_psHash03 \ 12 tst_psHash04 \ 13 tst_psHash05 \ 14 tst_psList \ 15 tst_psLookupTable_01 \ 16 tst_psMetadata_01 \ 17 tst_psMetadata_02 \ 18 tst_psMetadata_03 \ 19 tst_psMetadata_04 \ 20 tst_psMetadata_05 \ 21 tst_psMetadata_06 \ 22 tst_psMetadata_07 \ 23 tst_psMetadataIO \ 24 tst_psPixels 13 25 14 tst_psImage_SOURCES = tst_psImage.c 15 tst_psScalar_SOURCES = tst_psScalar.c 16 tst_psVector_SOURCES = tst_psVector.c 17 tst_psVectorSort_01_SOURCES = tst_psVectorSort_01.c 18 tst_psVectorSort_02_SOURCES = tst_psVectorSort_02.c 19 tst_psVectorSort_03_SOURCES = tst_psVectorSort_03.c 20 tst_psVectorSort_04_SOURCES = tst_psVectorSort_04.c 26 27 tst_psArray_SOURCES = tst_psArray.c 28 tst_psBitSet_SOURCES = tst_psBitSet.c 29 tst_psHash00_SOURCES = tst_psHash00.c 30 tst_psHash01_SOURCES = tst_psHash01.c 31 tst_psHash02_SOURCES = tst_psHash02.c 32 tst_psHash03_SOURCES = tst_psHash03.c 33 tst_psHash04_SOURCES = tst_psHash04.c 34 tst_psHash05_SOURCES = tst_psHash05.c 35 tst_psList_SOURCES = tst_psList.c 36 tst_psLookupTable_01_SOURCES = tst_psLookupTable_01.c 37 tst_psMetadata_01_SOURCES = tst_psMetadata_01.c 38 tst_psMetadata_02_SOURCES = tst_psMetadata_02.c 39 tst_psMetadata_03_SOURCES = tst_psMetadata_03.c 40 tst_psMetadata_04_SOURCES = tst_psMetadata_04.c 41 tst_psMetadata_05_SOURCES = tst_psMetadata_05.c 42 tst_psMetadata_06_SOURCES = tst_psMetadata_06.c 43 tst_psMetadata_07_SOURCES = tst_psMetadata_07.c 44 tst_psMetadataIO_SOURCES = tst_psMetadataIO.c 45 tst_psPixels_SOURCES = tst_psPixels.c 21 46 22 47 check_DATA =
Note:
See TracChangeset
for help on using the changeset viewer.
