Changeset 250362 in git


Ignore:
Timestamp:
Apr 28, 2005, 3:47:18 PM (19 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
334528e3e39f179787209937e64726b13ef8abd8
Parents:
206aedd33eed428572db003225435f779d12d30d
Message:
*anne/hannes: include dir ....


git-svn-id: file:///usr/local/Singular/svn/trunk@7926 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
modules/modgen
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • modules/modgen/Makefile.in

    r206aed r250362  
    2828INSTALL_PROGRAM = @INSTALL_PROGRAM@
    2929INSTALL_DATA    = @INSTALL_DATA@
    30 MKINSTALLDIRS   = ./mkinstalldirs
    3130LN_S            = @LN_S@
    3231
     
    3837BINDIST_NAME    = ${DISTROOT_NAME}-${SINGUNAME}
    3938SHAREDIST_NAME  = ${DISTROOT_NAME}-share
    40 MKINSTALLDIRS   = $(topsrcdir)/Singular/mkinstalldirs
     39MKINSTALLDIRS   = ../../Singular/mkinstalldirs
    4140LN_S            = @LN_S@
    42 INSTALL         = $(topsrcdir)/Singular/install-sh -c
     41INSTALL         = ../../Singular/install-sh -c
    4342INSTALL_PROGRAM = ${INSTALL}
    4443INSTALL_DATA    = ${INSTALL} -m 644
     
    4948##
    5049CFLAGS  += --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 \
    5251        -D${SING_UNAME}
    5352LIBS    += -L/usr/local/lib -lgmp
  • modules/modgen/makefile.cc

    r206aed r250362  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: makefile.cc,v 1.13 2002-09-26 09:55:10 anne Exp $ */
     4/* $Id: makefile.cc,v 1.14 2005-04-28 13:47:17 Singular Exp $ */
    55/*
    66* ABSTRACT: lib parsing
     
    1616#include <febase.h>
    1717#include <grammar.h>
     18#include <structs.h>
     19#include <tok.h>
    1820#include <ipid.h>
    1921#include <ipshell.h>
    20 #include <structs.h>
    2122#include <subexpr.h>
    22 #include <tok.h>
    2323#include <regex.h>
    2424
     
    9898  fprintf(fp, "CXX\t= gcc\n");
    9999#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);
    102102  fprintf(fp, "#LD\t=\n");
    103103  fprintf(fp, "\n");
  • modules/modgen/misc.cc

    r206aed r250362  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: misc.cc,v 1.22 2003-06-11 21:33:18 krueger Exp $ */
     4/* $Id: misc.cc,v 1.23 2005-04-28 13:47:18 Singular Exp $ */
    55/*
    66* ABSTRACT: lib parsing
     
    1111#include <febase.h>
    1212#include <grammar.h>
     13#include <structs.h>
     14#include <tok.h>
    1315#include <ipid.h>
    1416#include <ipshell.h>
    1517#include <structs.h>
    1618#include <subexpr.h>
    17 #include <tok.h>
    1819#include <regex.h>
    1920
     
    174175
    175176    /* 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;
    179177    case MAX_TOK: strcpy(name,"MAX_TOK");       break;
     178    case ALIAS_CMD: strcpy(name,"ALIAS_CMD");       break;
    180179    default: strcpy(name,"(null)");
    181180  }
Note: See TracChangeset for help on using the changeset viewer.