Skip to content

Commit

Permalink
Let genfiles work in the new environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Schumann committed Dec 30, 1999
1 parent f2f8d38 commit 7070605
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions genfiles
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,18 @@
STD='make -f Makefile.am LEX=flex YACC="bison -y" srcdir=.'

(cd Zend && eval "$STD zend-parser.c zend-scanner.c zend-scanner-cc.cc")
eval "$STD configuration-parser.c configuration-scanner.c"
(cd ext/standard && eval "$STD parsedate.c")

files="Makefile ext/standard/Makefile"
sh build/fastgen.sh . yes $files

cat > config_vars.mk <<EOF
LEX=flex
YACC=bison -y
EOF

make configuration-parser.c configuration-scanner.c
(cd ext/standard && make parsedate.c)

rm config_vars.mk $files


0 comments on commit 7070605

Please sign in to comment.