| Index: native_client_sdk/src/examples/Makefile
|
| ===================================================================
|
| --- native_client_sdk/src/examples/Makefile (revision 121652)
|
| +++ native_client_sdk/src/examples/Makefile (working copy)
|
| @@ -15,7 +15,6 @@
|
| # Define the default target
|
| all:
|
|
|
| -
|
| #
|
| # Target Macro
|
| #
|
| @@ -26,7 +25,7 @@
|
| TARGET_LIST+=$(1)_TARGET
|
| .PHONY: $(1)_TARGET
|
| $(1)_TARGET:
|
| - +cd $(1) && $(MAKE)
|
| + +$(MAKE) -C $(1)
|
| endef
|
|
|
|
|
| @@ -35,7 +34,7 @@
|
|
|
|
|
| all: $(TARGET_LIST)
|
| - echo "Done building targets, running webserver."
|
| + echo "Done building targets."
|
|
|
| RUN: all
|
| echo "Staring up python webserver."
|
|
|