Changeset 02bfd57 in git


Ignore:
Timestamp:
Sep 12, 2007, 11:35:01 AM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
47cbe51f7a7b4778b784defe59954887bbc0cbb7
Parents:
3952b09109e6bea4c8f045f60329ee2fd1e52cd6
Message:
*hannes: generation of scanner.cc/grammar.cc


git-svn-id: file:///usr/local/Singular/svn/trunk@10299 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/Makefile.in

    r3952b09 r02bfd57  
    292292##
    293293.l.cc:
    294         @if test "x${LEX}" = x; then \
     294        @if test -r scanner.cc; then \
     295                touch scanner.cc ;\
     296        else \
     297        if test "x${LEX}" = x; then \
    295298                echo Error: no lex given, could not rebuilt scanner.cc;\
    296299                exit 1; \
     
    300303
    301304.y.cc:
    302         @if test "x${BISON}" = x; then \
     305        @if test -r grammar.cc; then \
     306                touch grammar.cc ;\
     307        else \
     308        if test "x${BISON}" = x; then \
    303309                echo Error: no bison given, could not rebuilt grammar.cc;\
    304310                exit 1; \
     311        fi;\
     312        ${BISON} -d -t -o grammar.cc $<;\
     313        chmod +x testgh;\
     314        ./testgh;\
    305315        fi
    306         ${BISON} -d -t -o grammar.cc $<
    307         chmod +x testgh
    308         ./testgh
    309316
    310317.cc.o: 
Note: See TracChangeset for help on using the changeset viewer.