| Index: native_client_sdk/src/examples/Makefile
|
| diff --git a/native_client_sdk/src/examples/Makefile b/native_client_sdk/src/examples/Makefile
|
| index 2bbcaf6879701fd0fe3c367543afd5d2752b5146..e89a7f998f7769ac75fdde1cdf0b8802385506a3 100644
|
| --- a/native_client_sdk/src/examples/Makefile
|
| +++ b/native_client_sdk/src/examples/Makefile
|
| @@ -24,6 +24,11 @@ TARGET_LIST+=$(1)_TARGET
|
| $(1)_TARGET:
|
| +$(MAKE) -C $(1)
|
|
|
| +VERSIONS_LIST+=$(1)_VERSIONS
|
| +.PHONY: $(1)_VERSIONS
|
| +$(1)_VERSIONS:
|
| + +$(MAKE) -C $(1) all_versions
|
| +
|
| CLEAN_LIST+=$(1)_CLEAN
|
| .PHONY: $(1)_CLEAN
|
| $(1)_CLEAN:
|
| @@ -39,6 +44,9 @@ __DEPENDENCIES__
|
| all: $(TARGET_LIST)
|
| echo "Done building targets."
|
|
|
| +all_versions: $(VERSIONS_LIST)
|
| + echo "Done building all versions."
|
| +
|
| clean: $(CLEAN_LIST)
|
| echo "Done cleaning targets."
|
|
|
|
|