Changeset 014b65 in git
- Timestamp:
- Dec 1, 2010, 4:15:17 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '1d362c315e551a5b527ab0759f8839cf0e94f3a5')
- Children:
- a30a39aaa446d00f01aab56db0ff2964711d5f1e
- Parents:
- 183247043c357c6c52f6f09f8d6aecea25cf6268
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-12-01 16:15:17+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:57:46+01:00
- Files:
-
- 9 added
- 7 deleted
- 3 edited
- 8 copied
- 109 moved
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r1832470 r014b65 10 10 tags 11 11 Makefile 12 Makefile.in 13 install-sh 14 config* 15 !configure.ac 12 16 GNUMakefile 13 config.status 14 config.log 17 confdefs.h 15 18 tags 16 19 stamp-h … … 19 22 x86_64-Linux/* 20 23 ix86Mac-darwin/* 21 misc/auxiliary.h 24 libpolys/Makefile.in 25 libpolys/misc/auxiliary.h 26 libpolys/coeffs/test 27 omalloc/Makefile.in 28 omalloc/omConfig.h.in 22 29 omalloc/omTables 23 30 omalloc/omTables.h -
Makefile.am
r1832470 r014b65 1 1 ALLOC=omalloc 2 2 3 #PACKAGES=$(ALLOC) ntl factory libfac misc resources reporter coeffs polys 4 PACKAGES=$(ALLOC) misc reporter resources coeffs 3 PACKAGES=$(ALLOC) libpolys 5 4 6 5 SUBDIRS=$(PACKAGES) 7 6 8 TESTDIRS= coeffs7 TESTDIRS=libpolys -
configure.ac
r1832470 r014b65 5 5 AC_PROG_CXX 6 6 AC_CONFIG_FILES([Makefile]) 7 AC_CONFIG_SUBDIRS([omalloc factory libfac misc reporter resources coeffspolys])7 AC_CONFIG_SUBDIRS([omalloc libpolys]) 8 8 AC_OUTPUT -
libpolys/coeffs/configure.ac
r1832470 r014b65 2 2 # Process this file with autoconf to produce a configure script. 3 3 4 AC_PREREQ([2.6 3])4 AC_PREREQ([2.65]) 5 5 AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) 6 AM_INIT_AUTOMAKE 6 7 AC_CONFIG_SRCDIR([rmodulon.h]) 7 8 AC_CONFIG_HEADERS([config.h]) … … 14 15 esac 15 16 16 17 18 17 # Checks for programs. 19 18 AC_PROG_CXX … … 21 20 AC_PROG_LN_S 22 21 AC_PROG_INSTALL 22 AC_PROG_RANLIB 23 23 24 24 # Checks for libraries. -
libpolys/misc/auxiliary.h
r1832470 r014b65 17 17 #ifndef MISC_AUXILIARY_H 18 18 #define MISC_AUXILIARY_H 19 20 #include "misc/config.h" 19 21 20 22 // ----------------- which parts/extensions of Singular to build -
libpolys/misc/configure.ac
r1832470 r014b65 6 6 AM_INIT_AUTOMAKE 7 7 AC_CONFIG_SRCDIR([mylimits.h]) 8 AC_CONFIG_HEADERS([ auxiliary.h])8 AC_CONFIG_HEADERS([config.h]) 9 9 10 10 # Checks for programs. -
libpolys/reporter/Makefile.in
r1832470 r014b65 35 35 CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} 36 36 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 37 CPPFLAGS = -I${top_srcdir}/.. 37 CPPFLAGS = -I${top_srcdir}/.. -I${top_srcdir}/../.. 38 38 DEFS = -DNDEBUG -DOM_NDEBUG -Dix86_Linux -DHAVE_CONFIG_H 39 39 -
libpolys/resources/Makefile.in
r1832470 r014b65 35 35 CXXFLAGS = @CXXFLAGS@ ${PIPE} 36 36 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 37 CPPFLAGS = -I${top_srcdir}/.. 37 CPPFLAGS = -I${top_srcdir}/.. -I${top_srcdir}/../.. 38 38 DEFS = -DNDEBUG -DOM_NDEBUG -Dix86_Linux -DHAVE_CONFIG_H 39 39
Note: See TracChangeset
for help on using the changeset viewer.