Changeset 3c473c in git
- Timestamp:
- Jul 17, 2010, 11:16:03 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- f9f879c1f6d30f79ea772c2280be1b75d3256e46
- Parents:
- 5993263e7b80e15ba43d9e5bae47b11d5a90ae90
- Files:
-
- 4 edited
- 171 moved
Legend:
- Unmodified
- Added
- Removed
-
Makefile.in
r599326 r3c473c 218 218 219 219 220 BINDIST_DIRS = kernel Singular doc IntegerProgramming modules220 BINDIST_DIRS = kernel Singular doc IntegerProgramming dyn_modules 221 221 222 222 SHAREDIST_DIRS = Singular doc emacs -
configure
r599326 r3c473c 3007 3007 SUBDIRS="$SUBDIRS emacs" 3008 3008 fi 3009 if test -d modules; then3010 SUBDIRS="$SUBDIRS modules"3011 fi 3012 if test -d " modules"; then3013 CONFIG_SUBDIRS=$CONFIG_SUBDIRS" modules"3014 BUILD_SUBDIRS=$BUILD_SUBDIRS" modules"3009 if test -d dyn_modules; then 3010 SUBDIRS="$SUBDIRS dyn_modules" 3011 fi 3012 if test -d "dyn_modules"; then 3013 CONFIG_SUBDIRS=$CONFIG_SUBDIRS" dyn_modules" 3014 BUILD_SUBDIRS=$BUILD_SUBDIRS" dyn_modules" 3015 3015 fi 3016 3016 -
configure.in
r599326 r3c473c 848 848 dnl SUBDIRS="$SUBDIRS rpm" 849 849 dnl fi 850 if test -d modules; then851 SUBDIRS="$SUBDIRS modules"852 fi 853 if test -d " modules"; then854 dnl OUTPUT_MAKEFILES=$OUTPUT_MAKEFILES" modules/Makefile"855 CONFIG_SUBDIRS=$CONFIG_SUBDIRS" modules"856 BUILD_SUBDIRS=$BUILD_SUBDIRS" modules"850 if test -d dyn_modules; then 851 SUBDIRS="$SUBDIRS dyn_modules" 852 fi 853 if test -d "dyn_modules"; then 854 dnl OUTPUT_MAKEFILES=$OUTPUT_MAKEFILES" dyn_modules/Makefile" 855 CONFIG_SUBDIRS=$CONFIG_SUBDIRS" dyn_modules" 856 BUILD_SUBDIRS=$BUILD_SUBDIRS" dyn_modules" 857 857 fi 858 858 … … 860 860 if test "$with_svd" = yes; then 861 861 AC_MSG_RESULT(yes) 862 dnl OUTPUT_MAKEFILES=$OUTPUT_MAKEFILES" modules/Makefile"862 dnl OUTPUT_MAKEFILES=$OUTPUT_MAKEFILES" dyn_modules/Makefile" 863 863 CONFIG_SUBDIRS=$CONFIG_SUBDIRS" svd" 864 864 BUILD_SUBDIRS=$BUILD_SUBDIRS" svd" -
dyn_modules/modgen/Makefile.in
r599326 r3c473c 46 46 ## 47 47 CFLAGS += --no-rtti --no-exceptions -O3 -w -fomit-frame-pointer -pipe -fno-implicit-templates \ 48 -g -I${includedir} -I../include -I ../../kernel -I../../Singular-DNDEBUG -DMODULE_GENERATOR \48 -g -I${includedir} -I../include -I${topsrcdir}/.. -DNDEBUG -DMODULE_GENERATOR \ 49 49 -D${SING_UNAME} 50 50 LIBS += -L/usr/local/lib -
dyn_modules/modgen/typmap.h
r599326 r3c473c 8 8 /* MYYSTYPE avoids including of Singular's struct.h, which is not needed. */ 9 9 #define MYYSTYPE 10 #include < tok.h>10 #include <Singular/tok.h> 11 11 #undef MYYSTYPE 12 12 -
tests/CMakeLists.txt
r599326 r3c473c 17 17 18 18 set(test_srcs main.cpp 19 Singleton.cpp19 # Singleton.cpp 20 20 ) 21 21
Note: See TracChangeset
for help on using the changeset viewer.