mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
c10bf6d129
the release/snapshot machine.
24 lines
583 B
Bash
Executable File
24 lines
583 B
Bash
Executable File
#! /bin/sh
|
|
|
|
STD='make -f Makefile.am LEX="flex -L" YACC="bison -y -l" srcdir=.'
|
|
|
|
(cd Zend && eval "$STD zend-parser.c zend-scanner.c zend-scanner-cc.cc")
|
|
|
|
files="Makefile main/Makefile ext/standard/Makefile"
|
|
sh build/fastgen.sh . yes no $files
|
|
touch .deps main/.deps ext/standard/libs.mk
|
|
|
|
cat > config_vars.mk <<EOF
|
|
LEX=flex -L
|
|
YACC=bison -y -l
|
|
EOF
|
|
|
|
(cd main && make configuration-parser.c configuration-scanner.c)
|
|
(cd ext/standard && make parsedate.c)
|
|
|
|
rm config_vars.mk .deps ext/standard/libs.mk $files
|
|
|
|
f=ext/standard/url_scanner_ex.c
|
|
cp $f $f.orig
|
|
grep -v '#line ' $f.orig > $f
|