source: git/dyn_modules/bigintm/SConstruct @ 5cdbfe

spielwiese
Last change on this file since 5cdbfe was e6d9a32, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: bigintm as a module sample ADD: public blackbox_default_OpM ADD: more commands/ops From: Oleksandr Motsak <motsak@mathematik.uni-kl.de> git-svn-id: file:///usr/local/Singular/svn/trunk@13940 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 498 bytes
Line 
1# Emacs edit mode for this file is -*- python -*-
2env = Environment()
3
4import os
5SINGULAR_HOME="./../.."
6
7SING_INCLUDES=[SINGULAR_HOME, SINGULAR_HOME+"/omalloc"]
8# , SINGULAR_HOME+"/factory"
9
10
11sing_psico_int_if = env.SharedLibrary('bigintm',
12                               ["bigintm.cc", "mod_main.cc"],
13                               SHLIBPREFIX="", LDMODULESUFFIX=".so",
14                               CPPPATH = SING_INCLUDES,
15                               LIBS=[])
16
17Default(sing_psico_int_if)
18
Note: See TracBrowser for help on using the repository browser.