Changeset f47f56 in git
- Timestamp:
- Mar 9, 2011, 3:56:48 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- e69b7cef94c2a886390e5aeaa7b65e2840aedc7a
- Parents:
- 16f8f1227d3e09337313bb55007fdaaf58f2d048
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-03-09 15:56:48+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:01:05+01:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
for_Hans_with_love.sh
r16f8f1 rf47f56 1 1 #!/bin/sh 2 3 echo "===============" 4 echo "run libtootlize in libpolys/polys/" 5 echo "---------------" 6 ( cd libpolys/polys/; libtoolize; ) 2 7 3 8 autotools (){ -
libpolys/polys/Makefile.am
r16f8f1 rf47f56 1 ACLOCAL_AMFLAGS = -I m4 1 2 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 2 3 AM_CFLAGS = -O3 -w -fomit-frame-pointer ${PIPE} … … 29 30 sbuckets.h simpleideals.h 30 31 32 libp_Procs_FieldGeneral_la_CPPFLAGS = -Dp_Procs_FieldGeneral 33 libp_Procs_FieldIndep_la_CPPFLAGS = -Dp_Procs_FieldIndep 34 libp_Procs_FieldQ_la_CPPFLAGS = -Dp_Procs_FieldQ 35 libp_Procs_FieldZp_la_CPPFLAGS = -Dp_Procs_FieldZp 36 37 P_PROCS = templates/p_Procs_Lib.cc 38 39 libp_Procs_FieldGeneral_la_SOURCES = ${P_PROCS} 40 libp_Procs_FieldIndep_la_SOURCES = ${P_PROCS} 41 libp_Procs_FieldQ_la_SOURCES = ${P_PROCS} 42 libp_Procs_FieldZp_la_SOURCES = ${P_PROCS} 43 44 #-g -Wextra -Wall -pedantic -Wno-long-long 45 31 46 lib_LIBRARIES=libpolys.a libpolys_g.a 47 48 moduledir = ${libdir}/singular/MOD/ 49 50 module_LTLIBRARIES=libp_Procs_FieldGeneral.la libp_Procs_FieldIndep.la libp_Procs_FieldQ.la libp_Procs_FieldZp.la 51 # libp_Procs_FieldGeneral_g.la libp_Procs_FieldIndep_g.la libp_Procs_FieldQ_g.la libp_Procs_FieldZp_g.la 32 52 33 53 libpolys_a_SOURCES = ${SOURCES} -
libpolys/polys/configure.ac
r16f8f1 rf47f56 4 4 AC_PREREQ([2.65]) 5 5 AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) 6 AC_CONFIG_AUX_DIR([.]) 6 7 AM_INIT_AUTOMAKE 7 8 AC_CONFIG_SRCDIR([polys.cc]) 8 9 AC_CONFIG_HEADERS([config.h]) 10 AC_CONFIG_MACRO_DIR([m4]) 9 11 10 12 # Checks for programs. … … 12 14 AC_PROG_CC 13 15 AC_PROG_LN_S 14 AC_PROG_RANLIB 16 #AC_PROG_RANLIB 17 AC_LIBTOOL_DLOPEN 18 AC_PROG_LIBTOOL 15 19 16 20 # Checks for libraries. -
libpolys/polys/templates/p_Procs_Lib.cc
r16f8f1 rf47f56 10 10 *******************************************************************/ 11 11 #include "polys/config.h" 12 #include <misc/auxiliary.h> 12 13 // #include <polys/structs.h> 13 14 #include <polys/p_polys.h> … … 18 19 #include <polys/p_MemAdd.h> 19 20 #include <polys/p_MemCopy.h> 20 #include <polys/kbuckets.h>21 //#include <polys/kbuckets.h> 21 22 22 #include "p_Procs _Dynamic.inc"23 #include "p_Procs.inc" 23 24
Note: See TracChangeset
for help on using the changeset viewer.