aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Duggan <aduggan@synaptics.com>2014-07-14 12:02:48 -0700
committerAndrew Duggan <aduggan@synaptics.com>2014-07-14 12:02:48 -0700
commitfe4fb5ad413ba1f67e4e476d7cbcfe1e0d21481b (patch)
tree7838364b48fe01a0f557f71cf746fce13a6d23f0
parentfa10fc81f34dc0c973230b06392dec346c717b4c (diff)
downloadrmi4utils-fe4fb5ad413ba1f67e4e476d7cbcfe1e0d21481b.tar.gz
Use the make variable so that the correct make gets used.
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 2925fbb..4ad5ad3 100644
--- a/Makefile
+++ b/Makefile
@@ -2,17 +2,17 @@ NDK_PROJECT_PATH=$(PWD)
export NDK_PROJECT_PATH
all:
- make -C rmidevice all
- make -C rmi4update all
- make -C rmihidtool all
+ $(MAKE) -C rmidevice all
+ $(MAKE) -C rmi4update all
+ $(MAKE) -C rmihidtool all
clean:
- make -C rmidevice clean
- make -C rmi4update clean
- make -C rmihidtool clean
+ $(MAKE) -C rmidevice clean
+ $(MAKE) -C rmi4update clean
+ $(MAKE) -C rmihidtool clean
android:
ndk-build NDK_APPLICATION_MK=Application.mk
android-clean:
- ndk-build NDK_APPLICATION_MK=Application.mk clean \ No newline at end of file
+ ndk-build NDK_APPLICATION_MK=Application.mk clean