Changeset 02bfd57 in git for Singular/Makefile.in
- Timestamp:
- Sep 12, 2007, 11:35:01 AM (16 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 47cbe51f7a7b4778b784defe59954887bbc0cbb7
- Parents:
- 3952b09109e6bea4c8f045f60329ee2fd1e52cd6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.in
r3952b09 r02bfd57 292 292 ## 293 293 .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 \ 295 298 echo Error: no lex given, could not rebuilt scanner.cc;\ 296 299 exit 1; \ … … 300 303 301 304 .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 \ 303 309 echo Error: no bison given, could not rebuilt grammar.cc;\ 304 310 exit 1; \ 311 fi;\ 312 ${BISON} -d -t -o grammar.cc $<;\ 313 chmod +x testgh;\ 314 ./testgh;\ 305 315 fi 306 ${BISON} -d -t -o grammar.cc $<307 chmod +x testgh308 ./testgh309 316 310 317 .cc.o:
Note: See TracChangeset
for help on using the changeset viewer.