You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
394 B

#! /bin/sh
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")
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