Changeset b7d64b in git
- Timestamp:
- Nov 18, 2011, 7:40:58 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 5acf7dca6b6eb7a36ab400997b08fd8c6a42a9fc
- Parents:
- ee668eff445bb4cf7e96d94673c39f627a30d232
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-18 19:40:58+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:09:33+01:00
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.am
ree668e rb7d64b 14 14 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 15 15 16 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/numeric -I${top_builddir}/numeric -I${top_srcdir}/kernel -I${top_builddir}/kernel -I${top_srcdir}/libpolys -I${top_builddir}/libpolys $(GMP_CFLAGS) $(FACTORY_CFLAGS) $(NTL_CFLAGS)16 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/numeric -I${top_builddir}/numeric -I${top_srcdir}/kernel -I${top_builddir}/kernel -I${top_srcdir}/libpolys -I${top_builddir}/libpolys $(GMP_CFLAGS) -I${top_srcdir}/factory/include -I${top_builddir}/factory/include $(FACTORY_CFLAGS) $(NTL_CFLAGS) 17 17 18 18 ########################### libSingular* ######################### -
factory/Makefile.am
ree668e rb7d64b 5 5 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 6 6 7 AM_CPPFLAGS = -I include -I${srcdir}/include ${GMP_CFLAGS} ${NTL_CFLAGS}7 AM_CPPFLAGS = -I${builddir}/include -I${srcdir}/include ${GMP_CFLAGS} ${NTL_CFLAGS} 8 8 9 9 lib_LTLIBRARIES = libfactory.la libfactory_g.la … … 303 303 BUILT_SOURCES = cplusplus.h factory.h factoryconf.h 304 304 305 CLEANFILES = $(BUILT_SOURCES) 305 CLEANFILES = $(BUILT_SOURCES) include/factory/factory.h include/factory/factoryconf.h include/factory/cplusplus.h 306 306 307 307 -
factory/include/factory/Makefile.am
ree668e rb7d64b 9 9 10 10 nobase_libfactory_include_HEADERS = \ 11 cf_gmp.h $(templateincl)11 cf_gmp.h ${templateincl} -
kernel/Makefile.am
ree668e rb7d64b 26 26 libkernel_g_la_CPPFLAGS = -DHAVE_CONFIG_H 27 27 28 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys $(GMP_CFLAGS) $(FACTORY_CFLAGS) $(NTL_CFLAGS)28 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys $(GMP_CFLAGS) -I${top_srcdir}/factory/include -I${top_builddir}/factory/include $(FACTORY_CFLAGS) $(NTL_CFLAGS) 29 29 30 30 SOURCES = polys.cc febase.cc feread.cc \ -
libpolys/coeffs/Makefile.am
ree668e rb7d64b 21 21 # mpr_complex.h mpr_global.h 22 22 23 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} ${FACTORY_CFLAGS} ${GMP_CFLAGS} ${NTL_CFLAGS} 23 24 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} -I${top_srcdir}/../factory/include -I${top_builddir}/../factory/include ${FACTORY_CFLAGS} ${GMP_CFLAGS} ${NTL_CFLAGS} 24 25 25 26 SOURCES = \ -
libpolys/polys/Makefile.am
ree668e rb7d64b 10 10 AM_CXXFLAGS = ${PIPE} ${CXXTEMPLFLAGS} 11 11 12 INCLUDES = -I${ abs_top_srcdir} -I${abs_top_srcdir}/.. -I${abs_top_builddir} -I${abs_top_builddir}/.. -I${srcdir} -I${includedir} ${GMP_CFLAGS}12 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} -I${includedir} -I${top_srcdir}/../factory/include -I${top_builddir}/../factory/include ${FACTORY_CFLAGS} ${GMP_CFLAGS} 13 13 AM_LDFLAGS = -L${abs_top_builddir}/coeffs -L${abs_top_builddir}/reporter -L${abs_top_builddir}/resources -L${abs_top_builddir}/../omalloc -L${abs_builddir} 14 14 -
libpolys/tests/Makefile.am
ree668e rb7d64b 9 9 10 10 11 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} ${FACTORY_CFLAGS} ${GMP_CFLAGS} ${NTL_CFLAGS}11 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} -I${top_srcdir}/../factory/include -I${top_builddir}/../factory/include ${FACTORY_CFLAGS} ${GMP_CFLAGS} ${NTL_CFLAGS} 12 12 13 13 TESTS = simple_test \ -
numeric/Makefile.am
ree668e rb7d64b 14 14 libnumeric_g_la_CPPFLAGS = -DHAVE_CONFIG_H 15 15 16 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys ${GMP_CFLAGS} ${FACTORY_CFLAGS} ${NTL_CFLAGS}16 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys ${GMP_CFLAGS} -I${top_srcdir}/factory/include -I${top_builddir}/factory/include ${FACTORY_CFLAGS} ${NTL_CFLAGS} 17 17 18 18 SOURCES = mpr_base.cc mpr_inout.cc mpr_numeric.cc
Note: See TracChangeset
for help on using the changeset viewer.