Changeset View
Changeset View
Standalone View
Standalone View
support/xhpast/Makefile
| Show All 22 Lines | |||||
| endif | endif | ||||
| ROOT = ../../src/parser/xhpast | ROOT = ../../src/parser/xhpast | ||||
| .PHONY: all | .PHONY: all | ||||
| all: xhpast | all: xhpast | ||||
| clean: | clean: | ||||
| rm --force xhpast parser.yacc.output libxhpast.a *.o | rm -f xhpast parser.yacc.output libxhpast.a *.o | ||||
| cleanall: clean | cleanall: clean | ||||
| rm --force scanner.lex.hpp scanner.lex.cpp parser.yacc.hpp parser.yacc.cpp | rm -f scanner.lex.hpp scanner.lex.cpp parser.yacc.hpp parser.yacc.cpp | ||||
| rm --force node_names.hpp parser_nodes.php | rm -f node_names.hpp parser_nodes.php | ||||
| .PHONY: install | .PHONY: install | ||||
| install: xhpast | install: xhpast | ||||
| cp xhpast $(ROOT)/bin/xhpast | cp xhpast $(ROOT)/bin/xhpast | ||||
| .PHONY: parser scanner | .PHONY: parser scanner | ||||
| parser: parser.yacc.hpp parser.yacc.cpp | parser: parser.yacc.hpp parser.yacc.cpp | ||||
| scanner: scanner.lex.hpp scanner.lex.cpp | scanner: scanner.lex.hpp scanner.lex.cpp | ||||
| Show All 25 Lines | |||||