Changeset ab4f17 in git
- Timestamp:
- Mar 31, 2011, 1:20:09 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 45d23321ec375e053d06319b3624e9a098669f4a
- Parents:
- cf5c053a2033583db0824a2b0459625b00d37a26
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-03-31 13:20:09+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:04:16+01:00
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rcf5c05 rab4f17 11 11 .libs 12 12 libpolys/polys/templates/p_Procs_Generate 13 libpolys/polys/m4/ 14 libpolys/coeffs/test 13 15 depend 14 16 tags -
for_Hans_with_love.sh
rcf5c05 rab4f17 2 2 3 3 echo "===============" 4 echo "run libtoo tlize in libpolys/polys/"4 echo "run libtoolize in libpolys/polys/" 5 5 echo "---------------" 6 6 ( cd libpolys/polys/; libtoolize; ) 7 7 8 8 autotools (){ 9 aclocal10 9 autoheader 11 10 autoconf … … 27 26 done 28 27 29 for d in omalloc libpolys/misc libpolys/resources libpolys/reporter libpolys/coeffs libpolys/polys; do28 for d in omalloc libpolys/misc libpolys/resources libpolys/reporter; do 30 29 echo "===============" 31 30 echo "run aclocal, autoheader, autoconf in $d" 32 31 echo "---------------" 33 32 cd $d; 33 aclocal 34 34 autotools 35 35 cd $TOP_DIR … … 37 37 done 38 38 39 for d in libpolys/coeffs; do 40 echo "===============" 41 echo "run aclocal -I ../../m4, autoheader, autoconf in $d" 42 echo "---------------" 43 cd $d; 44 aclocal -I ../../m4 45 autotools 46 cd $TOP_DIR 47 echo 48 done 49 50 for d in libpolys/polys; do 51 echo "===============" 52 echo "run aclocal -I ../../m4 -I m4, autoheader, autoconf in $d" 53 echo "---------------" 54 cd $d; 55 aclocal -I ../../m4 -I m4 56 autotools 57 cd $TOP_DIR 58 echo 59 done 60 -
libpolys/coeffs/Makefile.am
rcf5c05 rab4f17 1 ACLOCAL_AMFLAGS = -I ../../m4 1 2 lib_LIBRARIES=libcoeffs.a libcoeffs_g.a 2 3 … … 21 22 mpr_complex.h mpr_global.h 22 23 23 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. -I${srcdir} 24 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. -I${srcdir} ${GMP_CFLAGS} 24 25 25 26 SOURCES = \ … … 47 48 test_g_SOURCES = test.cc 48 49 49 test_LDADD = libcoeffs.a -lresources -lreporter -l gmp -lomalloc50 test_g_LDADD = libcoeffs_g.a -lresources_g -lreporter_g -l gmp -lomalloc_debug50 test_LDADD = libcoeffs.a -lresources -lreporter -lomalloc ${GMP_LIBS} 51 test_g_LDADD = libcoeffs_g.a -lresources_g -lreporter_g -lomalloc_debug ${GMP_LIBS} 51 52 52 53 -
libpolys/coeffs/configure.ac
rcf5c05 rab4f17 7 7 AC_CONFIG_SRCDIR([coeffs.h]) 8 8 AC_CONFIG_HEADERS([config.h]) 9 AC_CONFIG_MACRO_DIR([../../m4]) 9 10 10 11 #check for host: … … 24 25 25 26 # Checks for libraries. 27 LB_CHECK_GMP(,,AC_MSG_ERROR([Unable to find GMP on your machine: please use --with-gmp=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 26 28 27 29 # Checks for header files. -
libpolys/configure.ac
-
Property
mode
changed from
100755
to100644
-
Property
mode
changed from
-
libpolys/polys/Makefile.am
rcf5c05 rab4f17 1 ACLOCAL_AMFLAGS = -I m4 1 ACLOCAL_AMFLAGS = -I m4 -I ../../m4 2 2 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 3 3 … … 14 14 AM_CXXFLAGS = ${PIPE} ${CXXTEMPLFLAGS} 15 15 16 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. -I${srcdir} -I${includedir} 16 INCLUDES = -I${top_srcdir}/.. -I${top_srcdir}/../.. -I${top_builddir}/.. -I${srcdir} -I${includedir} ${GMP_CFLAGS} 17 17 AM_LDFLAGS = -L${top_builddir}/../coeffs -L${top_builddir}/../reporter -L${top_builddir}/../resources -L${top_builddir}/../../omalloc -L${builddir} 18 18 -
libpolys/polys/configure.ac
rcf5c05 rab4f17 8 8 AC_CONFIG_SRCDIR([pDebug.cc]) 9 9 AC_CONFIG_HEADERS([config.h]) 10 AC_CONFIG_MACRO_DIR([m4] )10 AC_CONFIG_MACRO_DIR([m4],[../../m4]) 11 11 12 12 # Checks for programs. … … 20 20 21 21 # Checks for libraries. 22 LB_CHECK_GMP(,,AC_MSG_ERROR([Unable to find GMP on your machine: please use --with-gmp=PATH_TO_DIR_CONTAINING_LIB_AND_INCLUDE (see also ./configure --help if you do not understand what we are talking about)])) 23 22 24 23 25 # Checks for header files.
Note: See TracChangeset
for help on using the changeset viewer.