source: git/Singular/dyn_modules/subsets/Makefile.am @ 9fe6c3

spielwiese
Last change on this file since 9fe6c3 was 9fe6c3, checked in by Hans Schoenemann <hannes@…>, 5 years ago
add: subsets(kn,) in subsets.so (all subsets of 1..n with k elements)
  • Property mode set to 100644
File size: 997 bytes
Line 
1ACLOCAL_AMFLAGS = -I ../../m4
2
3if SI_BUILTIN_SUBSETS
4  noinst_LTLIBRARIES=subsets.la
5  P_PROCS_MODULE_LDFLAGS = -module
6  P_PROCS_CPPFLAGS_COMMON = -DSTATIC_VERSION
7else
8  module_LTLIBRARIES=subsets.la
9  moduledir = $(libexecdir)/singular/MOD
10  P_PROCS_CPPFLAGS_COMMON = -DDYNAMIC_VERSION
11# Add under Mac OS X: -flat_namespace -weak_reference_mismatches weak -undefined dynamic_lookup
12  P_PROCS_MODULE_LDFLAGS = -module -export-dynamic -avoid-version -flat_namespace -weak_reference_mismatches weak -undefined dynamic_lookup
13endif
14MYINCLUDES =  -I${top_srcdir} -I${top_builddir} \
15      -I${top_srcdir}/libpolys -I${top_builddir}/libpolys \
16      $(FACTORY_INCLUDES) $(RESOURCES_INCLUDES) $(OMALLOC_INCLUDES) \
17      $(FLINT_CFLAGS) $(NTL_CPPFLAGS) $(GMP_CPPFLAGS) $(GOOGLE_PERFTOOLS_CFLAGS)
18
19
20subsets_la_CPPFLAGS  = ${MYINCLUDES} ${P_PROCS_CPPFLAGS_COMMON}
21subsets_la_LDFLAGS   = ${AM_LDFLAGS} ${P_PROCS_MODULE_LDFLAGS} $(SINGULAR_LDFLAGS)
22SOURCES = subsets.cc
23subsets_la_SOURCES   = $(SOURCES)
24
Note: See TracBrowser for help on using the repository browser.