-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/configure.ac,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 configure.ac
|
|
|
|
| 21 | 21 | |
| 22 | 22 | SUBDIR="etc src test" dnl don't include 'swig', as it is optional |
| 23 | 23 | |
| 24 | | SRCPATH="`pwd`/src" |
| | 24 | SRCPATH='$(top_srcdir)/src' |
| 25 | 25 | SRCDIRS="sys astro db fft fits imageops math mathtypes types xml" |
| 26 | 26 | SRCINC=`echo "${SRCDIRS=}" | ${SED} "s|\(\\w\+\)|-I\${SRCPATH=}/\1|g"` |
| 27 | 27 | |
| 28 | 28 | SRCSUBLIBS=`echo "${SRCDIRS=}" | ${SED} "s|\(\\w\+\)|\1/libpslib\1.la|g"` |
| 29 | 29 | AC_SUBST(SRCSUBLIBS,${SRCSUBLIBS=}) |
| 30 | | CFLAGS="${CFLAGS=} -I${SRCPATH=} ${SRCINC=}" |
| 31 | 30 | AC_SUBST(SRCINC,${SRCINC=}) |
| 32 | 31 | |
| 33 | 32 | AC_DISABLE_STATIC |
| … |
… |
|
| 61 | 60 | AC_PREFIX_DEFAULT([`pwd`]) |
| 62 | 61 | test "$prefix" = NONE && prefix=`pwd` |
| 63 | 62 | |
| 64 | | dnl Setup the info for psLib for pkg-config |
| 65 | | PSLIB_CFLAGS="-I${includedir}" |
| 66 | | |
| 67 | 63 | dnl check for standard language functionality |
| 68 | 64 | AC_HEADER_STDC |
| 69 | 65 | AC_HEADER_SYS_WAIT |
| … |
… |
|
| 110 | 106 | [AC_MSG_ERROR([MYSQL 4.1.2 or newer is required. http://www.mysql.com or use --with-mysql_config to specify location of ocnfiguration script.])]) |
| 111 | 107 | |
| 112 | 108 | AC_MSG_CHECKING([MySQL cflags]) |
| 113 | | MYSQL_CFLAGS="`${MYSQL_CONFIG} --cflags`" |
| | 109 | MYSQL_CFLAGS="`${MYSQL_CONFIG} --include`" |
| | 110 | PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${MYSQL_CFLAGS}" |
| 114 | 111 | AC_MSG_RESULT([${MYSQL_CFLAGS}]) |
| 115 | | CFLAGS="${CFLAGS=} ${MYSQL_CFLAGS}" |
| 116 | 112 | |
| 117 | 113 | AC_MSG_CHECKING([MySQL link options]) |
| 118 | | MYSQL_LDFLAGS="`${MYSQL_CONFIG} --libs`" |
| 119 | | AC_MSG_RESULT([${MYSQL_LDFLAGS}]) |
| 120 | | PSLIB_LIBS="${PSLIB_LIBS=} ${MYSQL_LDFLAGS}" |
| | 114 | MYSQL_LIBS="`${MYSQL_CONFIG} --libs`" |
| | 115 | PSLIB_LIBS="${PSLIB_LIBS=} ${MYSQL_LIBS}" |
| | 116 | AC_MSG_RESULT([${MYSQL_LIBS}]) |
| 121 | 117 | AC_SUBST(TST_PSDB,"tst_psDB") dnl enable the test for psDB |
| 122 | 118 | |
| | 119 | dnl AC_RUN_IFELSE() uses CFLAGS to find mysql_version.h |
| | 120 | TMP_CFLAGS=${CFLAGS} |
| | 121 | CFLAGS=${MYSQL_CFLAGS} |
| 123 | 122 | AC_RUN_IFELSE([AC_LANG_PROGRAM( |
| 124 | 123 | [[#include <stdlib.h> |
| 125 | 124 | #include <stdio.h> |
| … |
… |
|
| 131 | 130 | exit(0); |
| 132 | 131 | } |
| 133 | 132 | ]])], [], [AC_MSG_ERROR([MySQL 4.1.2 or newer is required. Obtain it at http://www.mysql.com or use --with-mysql to specify location.])]) |
| 134 | | |
| | 133 | CFLAGS=${TMP_CFLAGS} |
| 135 | 134 | else |
| | 135 | dnl FIXME |
| 136 | 136 | CFLAGS="${CFLAGS=} -DOMIT_PSDB" |
| 137 | 137 | PSLIB_CFLAGS="${PSLIB_CFLAGS=} -DOMIT_PSDB" |
| 138 | 138 | AC_MSG_RESULT([disable building MySQL functionality]) |
| 139 | 139 | fi |
| 140 | 140 | |
| | 141 | AC_SUBST([MYSQL_CFLAGS]) |
| | 142 | |
| 141 | 143 | dnl ----------------- CFITSIO options -------------------- |
| 142 | 144 | AC_ARG_WITH(cfitsio, |
| 143 | 145 | [AS_HELP_STRING(--with-cfitsio=DIR,Specify location of CFITSIO.)], |
| … |
… |
|
| 149 | 151 | AC_ARG_WITH(cfitsio-lib, |
| 150 | 152 | [AS_HELP_STRING(--with-cfitsio-lib=DIR,Specify CFITSIO library directory.)], |
| 151 | 153 | [CFITSIO_LDFLAGS="-L$withval"]) |
| 152 | | CFLAGS="${CFLAGS=} $CFITSIO_CFLAGS" |
| 153 | | dnl LDFLAGS="${LDFLAGS} $CFITSIO_LDFLAGS -lcfitsio" |
| | 154 | PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${CFITSIO_CFLAGS}" |
| 154 | 155 | PSLIB_LIBS="${PSLIB_LIBS=} $CFITSIO_LDFLAGS -lcfitsio" |
| 155 | 156 | AC_CHECK_HEADERS([fitsio.h],[], |
| 156 | 157 | [AC_MSG_ERROR([CFITSIO is required. Obtain it at http://heasarc.gsfc.nasa.gov/docs/software/fitsio or use --with-cfitsio to specify location.])]) |
| 157 | 158 | |
| | 159 | AC_SUBST([CFITSIO_CFLAGS]) |
| | 160 | |
| 158 | 161 | dnl ------------------ FFTW3 options --------------------- |
| 159 | 162 | AC_ARG_WITH(fftw3, |
| 160 | 163 | [AS_HELP_STRING(--with-fftw3=DIR,Specify location of FFTW version 3.)], |
| … |
… |
|
| 166 | 169 | AC_ARG_WITH(fftw3-lib, |
| 167 | 170 | [AS_HELP_STRING(--with-fftw3-lib=DIR,Specify FFTW version 3 library directory.)], |
| 168 | 171 | [FFTW3_LDFLAGS="-L$withval"]) |
| 169 | | CFLAGS="${CFLAGS=} $FFTW3_CFLAGS" |
| 170 | | dnl LDFLAGS="${LDFLAGS=} $FFTW3_LDFLAGS -lfftw3f" |
| | 172 | PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${FFTW3_CFLAGS}" |
| 171 | 173 | PSLIB_LIBS="${PSLIB_LIBS=} $FFTW3_LDFLAGS -lfftw3f" |
| 172 | 174 | AC_MSG_CHECKING([FFTW header files]) |
| 173 | 175 | AC_CHECK_HEADERS([fftw3.h],[], |
| 174 | 176 | [AC_MSG_ERROR([FFTW version 3 with float support is required. Obtain it at http://www.fftw.org/or use --with-fftw3 to specify location.])]) |
| 175 | 177 | |
| | 178 | AC_SUBST([FFTW3_CFLAGS]) |
| | 179 | |
| 176 | 180 | dnl -------------------- GSL options --------------------- |
| 177 | 181 | AC_ARG_WITH(gsl-config, |
| 178 | 182 | [AS_HELP_STRING(--with-gsl-config=FILE,Specify location of gsl-config.)], |
| … |
… |
|
| 183 | 187 | AC_MSG_CHECKING([GSL cflags]) |
| 184 | 188 | GSL_CFLAGS="`${GSL_CONFIG} --cflags`" |
| 185 | 189 | AC_MSG_RESULT([${GSL_CFLAGS}]) |
| 186 | | CFLAGS="${CFLAGS=} ${GSL_CFLAGS}" |
| 187 | | dnl LDFLAGS="${LDFLAGS=} `${GSL_CONFIG} --libs`" |
| | 190 | PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${GSL_CFLAGS}" |
| 188 | 191 | PSLIB_LIBS="${PSLIB_LIBS=} `${GSL_CONFIG} --libs`" |
| 189 | 192 | |
| | 193 | AC_SUBST([GSL_CFLAGS]) |
| | 194 | |
| 190 | 195 | dnl ------------------- XML2 options --------------------- |
| 191 | 196 | AC_ARG_WITH(xml2-config, |
| 192 | 197 | [AS_HELP_STRING(--with-xml2-config=FILE,Specify location of xml2-config.)], |
| … |
… |
|
| 197 | 202 | AC_MSG_CHECKING([xml2 cflags]) |
| 198 | 203 | XML_CFLAGS="`${XML_CONFIG} --cflags`" |
| 199 | 204 | AC_MSG_RESULT([${XML_CFLAGS}]) |
| 200 | | CFLAGS="${CFLAGS=} ${XML_CFLAGS}" |
| 201 | | dnl LDFLAGS="${LDFLAGS=} `${XML_CONFIG} --libs`" |
| | 205 | PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${XML_CFLAGS}" |
| 202 | 206 | PSLIB_LIBS="${PSLIB_LIBS=} `${XML_CONFIG} --libs`" |
| 203 | | PSLIB_CFLAGS="${PSLIB_CFLAGS=} `${XML_CONFIG} --cflags`" |
| 204 | 207 | |
| | 208 | AC_SUBST([XML_CFLAGS]) |
| 205 | 209 | |
| 206 | 210 | dnl ------------------- SWIG options --------------------- |
| 207 | 211 | AC_ARG_ENABLE(perlmodule, |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/pslib.pc.in,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -w -r1.1.1.1 -r1.2
|
|
|
|
| 7 | 7 | Description: Pan-STARRS Library |
| 8 | 8 | Version: @VERSION@ |
| 9 | 9 | Libs: -L@libdir@ -lpslib @PSLIB_LIBS@ @LIBS@ |
| 10 | | Cflags: @PSLIB_CFLAGS@ |
| | 10 | Cflags: -I${includedir} @PSLIB_CFLAGS@ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | |
| 3 | 3 | lib_LTLIBRARIES = libpslib.la |
| 4 | 4 | |
| | 5 | libpslib_la_CPPFLAGS = $(SRCINC) |
| 5 | 6 | libpslib_la_LIBADD = $(SRCSUBLIBS) |
| 6 | 7 | |
| 7 | 8 | libpslib_la_SOURCES = psTest.c |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/astro/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 3 | 3 | AM_CFLAGS=$(CFLAGS) -DPS_CONFIG_FILE_DEFAULT=\"$(sysconfdir)/pslib/psTime.config\" |
| 4 | 4 | |
| 5 | 5 | noinst_LTLIBRARIES = libpslibastro.la |
| | 6 | |
| | 7 | libpslibastro_la_CPPFLAGS = $(SRCINC) |
| 6 | 8 | libpslibastro_la_SOURCES = \ |
| 7 | 9 | psTime.c \ |
| 8 | 10 | psCoord.c \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/db/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibdb.la |
| 4 | 4 | |
| | 5 | libpslibdb_la_CPPFLAGS = $(SRCINC) $(MYSQL_CFLAGS) |
| 5 | 6 | libpslibdb_la_SOURCES = \ |
| 6 | 7 | psDB.c |
| 7 | 8 | |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/fft/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibfft.la |
| 4 | 4 | |
| | 5 | libpslibfft_la_CPPFLAGS = $(SRCINC) $(FFTW3_CFLAGS) |
| 5 | 6 | libpslibfft_la_SOURCES = \ |
| 6 | 7 | psImageFFT.c \ |
| 7 | 8 | psVectorFFT.c |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/fits/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibfits.la |
| 4 | 4 | |
| | 5 | libpslibfits_la_CPPFLAGS = $(SRCINC) $(CFITSIO_CFLAGS) |
| 5 | 6 | libpslibfits_la_SOURCES = \ |
| 6 | 7 | psFits.c |
| 7 | 8 | |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/imageops/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibimageops.la |
| 4 | 4 | |
| | 5 | libpslibimageops_la_CPPFLAGS = $(SRCINC) |
| 5 | 6 | libpslibimageops_la_SOURCES = \ |
| 6 | 7 | psImageConvolve.c \ |
| 7 | 8 | psImageGeomManip.c \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/math/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibmath.la |
| 4 | 4 | |
| | 5 | libpslibmath_la_CPPFLAGS = $(SRCINC) $(GSL_CFLAGS) |
| 5 | 6 | libpslibmath_la_SOURCES = \ |
| 6 | 7 | psBinaryOp.c \ |
| 7 | 8 | psCompare.c \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/mathtypes/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibmathtypes.la |
| 4 | 4 | |
| | 5 | libpslibmathtypes_la_CPPFLAGS = $(SRCINC) |
| 5 | 6 | libpslibmathtypes_la_SOURCES = \ |
| 6 | 7 | psImage.c \ |
| 7 | 8 | psScalar.c \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/sys/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibsys.la |
| 4 | 4 | |
| | 5 | libpslibsys_la_CPPFLAGS = $(SRCINC) |
| 5 | 6 | libpslibsys_la_SOURCES = \ |
| 6 | 7 | psAbort.c \ |
| 7 | 8 | psConfigure.c \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/types/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibtypes.la |
| 4 | 4 | |
| | 5 | libpslibtypes_la_CPPFLAGS = $(SRCINC) |
| 5 | 6 | libpslibtypes_la_SOURCES = \ |
| 6 | 7 | psArray.c \ |
| 7 | 8 | psBitSet.c \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/src/xml/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 2 | 2 | # |
| 3 | 3 | noinst_LTLIBRARIES = libpslibxml.la |
| 4 | 4 | |
| | 5 | libpslibxml_la_CPPFLAGS = $(SRCINC) $(XML_CFLAGS) |
| 5 | 6 | libpslibxml_la_SOURCES = \ |
| 6 | 7 | psXML.c |
| 7 | 8 | |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/swig/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 4 | 4 | clean-generic: |
| 5 | 5 | rm -rf psLibModule |
| 6 | 6 | |
| 7 | | SRCDIR = $(shell cd $(top_srcdir) && pwd) |
| | 7 | # this is going into a make file one directory deeper in the tree so the |
| | 8 | # realitive paths need to be adjusted |
| | 9 | SWIGINC=`echo "${SRCINC}" | ${SED} "s|-I|-I../|g"` |
| 8 | 10 | |
| 9 | 11 | #################################################### |
| 10 | 12 | ## PsLibModule swig build section. |
| … |
… |
|
| 17 | 19 | |
| 18 | 20 | psLibModule/setup.txt: |
| 19 | 21 | if [ ! -d psLibModule ]; then mkdir psLibModule; fi |
| 20 | | echo "includes=$(SRCINC)" > psLibModule/setup.txt |
| | 22 | echo "includes=-I../$(top_srcdir)/src $(SWIGINC) $(PSLIB_CFLAGS)" > psLibModule/setup.txt |
| 21 | 23 | echo "ldflags=-L$(top_builddir)/src $(PSLIB_LIBS)" >> psLibModule/setup.txt |
| 22 | 24 | echo "cflags=$(CFLAGS) -std=c99 -Wno-unused -Wno-strict-aliasing" >> psLibModule/setup.txt |
| 23 | 25 | |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/astro/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for astro tests of psLib |
| 2 | 2 | # |
| 3 | 3 | |
| | 4 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 4 | 5 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 5 | 6 | |
| 6 | 7 | TESTS = \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/db/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for db tests of psLib |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | |
| 5 | 6 | TESTS = \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/fft/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for fft tests of psLib |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | |
| 5 | 6 | TESTS = \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/fits/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for fits tests of psLib |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | |
| 5 | 6 | TESTS = \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/imageops/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for imageops tests of psLib |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | |
| 5 | 6 | TESTS = \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/math/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for math tests of psLib |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | |
| 5 | 6 | TESTS = \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/mathtypes/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for mathtypes tests |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | |
| 5 | 6 | TESTS = \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/sys/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for sys tests |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | |
| 5 | 6 | TESTS = \ |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/types/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for types tests |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | AM_CFLAGS = -DXML_CONFIG_FILE="\"$(top_srcdir)/etc/pslib/psTime.xml\"" |
| 5 | 6 | |
-
RCS file: /home/moanui/jhoblitt/tmp/cvsroot/pslib/test/xml/Makefile.am,v
retrieving revision 1.1.1.1
diff -u -w -r1.1.1.1 Makefile.am
|
|
|
|
| 1 | 1 | #Makefile for types tests |
| 2 | 2 | # |
| | 3 | AM_CPPFLAGS = $(SRCINC) $(PSLIB_CFLAGS) |
| 3 | 4 | AM_LDFLAGS = -L$(top_builddir)/src -lpslib $(PSLIB_LIBS) |
| 4 | 5 | |
| 5 | 6 | TESTS = \ |