diff options
author | Sascha Schumann <sas@php.net> | 1999-12-30 03:13:21 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-30 03:13:21 +0000 |
commit | 7070605a17479b6408789aa6fb1489f0fd42f44c (patch) | |
tree | b27314d6d47730453b9f779a73c81ab74f07b697 /genfiles | |
parent | f2f8d38efa3ccbaa05affaf8fcab24786ef452de (diff) | |
download | php-git-7070605a17479b6408789aa6fb1489f0fd42f44c.tar.gz |
Let genfiles work in the new environment
Diffstat (limited to 'genfiles')
-rwxr-xr-x | genfiles | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -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 + + |