|
Revision 1, 478 bytes
(checked in by nEUrOO, 1 year ago)
|
--
|
| Line | |
|---|
| 1 |
all: ast oracle pre cpp |
|---|
| 2 |
ast: |
|---|
| 3 |
make -j2 -s -f ./src/php-ast/Makefile |
|---|
| 4 |
oracle: |
|---|
| 5 |
make -j2 -s -f ./src/php-oracle/Makefile |
|---|
| 6 |
pre: |
|---|
| 7 |
make -j2 -s -f ./src/php-preproc/Makefile |
|---|
| 8 |
cpp: |
|---|
| 9 |
make -j2 -s -f ./src/php-cpp/Makefile |
|---|
| 10 |
clean-ast: |
|---|
| 11 |
make -s -f ./src/php-ast/Makefile clean |
|---|
| 12 |
clean-oracle: |
|---|
| 13 |
make -s -f ./src/php-oracle/Makefile clean |
|---|
| 14 |
clean-pre: |
|---|
| 15 |
make -s -f ./src/php-preproc/Makefile clean |
|---|
| 16 |
clean-cpp: |
|---|
| 17 |
make -s -f ./src/php-cpp/Makefile clean |
|---|
| 18 |
clean: clean-ast clean-oracle clean-pre clean-cpp |
|---|