Changeset 250362 in git
- Timestamp:
- Apr 28, 2005, 3:47:18 PM (18 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 334528e3e39f179787209937e64726b13ef8abd8
- Parents:
- 206aedd33eed428572db003225435f779d12d30d
- Location:
- modules/modgen
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/modgen/Makefile.in
r206aed r250362 28 28 INSTALL_PROGRAM = @INSTALL_PROGRAM@ 29 29 INSTALL_DATA = @INSTALL_DATA@ 30 MKINSTALLDIRS = ./mkinstalldirs31 30 LN_S = @LN_S@ 32 31 … … 38 37 BINDIST_NAME = ${DISTROOT_NAME}-${SINGUNAME} 39 38 SHAREDIST_NAME = ${DISTROOT_NAME}-share 40 MKINSTALLDIRS = $(topsrcdir)/Singular/mkinstalldirs39 MKINSTALLDIRS = ../../Singular/mkinstalldirs 41 40 LN_S = @LN_S@ 42 INSTALL = $(topsrcdir)/Singular/install-sh -c41 INSTALL = ../../Singular/install-sh -c 43 42 INSTALL_PROGRAM = ${INSTALL} 44 43 INSTALL_DATA = ${INSTALL} -m 644 … … 49 48 ## 50 49 CFLAGS += --no-rtti --no-exceptions -O3 -w -fomit-frame-pointer -pipe -fno-implicit-templates \ 51 -g -I${includedir} -I../include -I../../ Singular -DNDEBUG -DMODULE_GENERATOR \50 -g -I${includedir} -I../include -I../../kernel -I../../Singular -DNDEBUG -DMODULE_GENERATOR \ 52 51 -D${SING_UNAME} 53 52 LIBS += -L/usr/local/lib -lgmp -
modules/modgen/makefile.cc
r206aed r250362 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: makefile.cc,v 1.1 3 2002-09-26 09:55:10 anneExp $ */4 /* $Id: makefile.cc,v 1.14 2005-04-28 13:47:17 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: lib parsing … … 16 16 #include <febase.h> 17 17 #include <grammar.h> 18 #include <structs.h> 19 #include <tok.h> 18 20 #include <ipid.h> 19 21 #include <ipshell.h> 20 #include <structs.h>21 22 #include <subexpr.h> 22 #include <tok.h>23 23 #include <regex.h> 24 24 … … 98 98 fprintf(fp, "CXX\t= gcc\n"); 99 99 #warning "PROBLEM: nice place for include file has to be found" 100 fprintf(fp, "CFLAGS\t= -DNDEBUG -DBUILD_MODULE -I. -I%s/ Singular -I%s/include\n",PREFIX,EXEC_PREFIX);101 fprintf(fp, "DCFLAGS\t= -DBUILD_MODULE -I. -I%s/ Singular -I%s/include\n",PREFIX,EXEC_PREFIX);100 fprintf(fp, "CFLAGS\t= -DNDEBUG -DBUILD_MODULE -I. -I%s/kernel -I%s/Singular -I%s/include\n",PREFIX,PREFIX,EXEC_PREFIX); 101 fprintf(fp, "DCFLAGS\t= -DBUILD_MODULE -I. -I%s/kernel -I%s/Singular -I%s/include\n",PREFIX,PREFIX,EXEC_PREFIX); 102 102 fprintf(fp, "#LD\t=\n"); 103 103 fprintf(fp, "\n"); -
modules/modgen/misc.cc
r206aed r250362 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: misc.cc,v 1.2 2 2003-06-11 21:33:18 krueger Exp $ */4 /* $Id: misc.cc,v 1.23 2005-04-28 13:47:18 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: lib parsing … … 11 11 #include <febase.h> 12 12 #include <grammar.h> 13 #include <structs.h> 14 #include <tok.h> 13 15 #include <ipid.h> 14 16 #include <ipshell.h> 15 17 #include <structs.h> 16 18 #include <subexpr.h> 17 #include <tok.h>18 19 #include <regex.h> 19 20 … … 174 175 175 176 /* first and last entry of tok.h cannot be grepped */ 176 //case ATTRIB_CMD: strcpy(name,"ATTRIB_CMD"); break;177 case POLY_CMD: strcpy(name,"POLY_CMD"); break;178 case MATRIX_CMD: strcpy(name,"MATRIX_CMD"); break;179 177 case MAX_TOK: strcpy(name,"MAX_TOK"); break; 178 case ALIAS_CMD: strcpy(name,"ALIAS_CMD"); break; 180 179 default: strcpy(name,"(null)"); 181 180 }
Note: See TracChangeset
for help on using the changeset viewer.