mirror of
https://github.com/php/php-src.git
synced 2026-03-28 18:22:42 +01:00
To prevent build failures like: make: *** No rule to make target '/code/master/ext/json/php_json_scanner_defs.h', needed by 'ext/json/json_scanner.lo'. Stop.
6 lines
402 B
Makefile
6 lines
402 B
Makefile
ext\json\json_scanner.c ext\json\php_json_scanner_defs.h: ext\json\json_scanner.re ext\json\json_parser.tab.h
|
|
$(RE2C) $(RE2C_FLAGS) -t ext/json/php_json_scanner_defs.h --no-generation-date -bci -o ext/json/json_scanner.c ext/json/json_scanner.re
|
|
|
|
ext\json\json_parser.tab.c ext\json\json_parser.tab.h: ext\json\json_parser.y
|
|
$(BISON) --defines -l ext/json/json_parser.y -o ext/json/json_parser.tab.c
|