aboutsummaryrefslogtreecommitdiff
path: root/Demos/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-05-07 07:11:25 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-05-07 07:11:25 +0000
commit1acf6dfebeef8112b7df381b71253cebc75c16f3 (patch)
tree07828972cd7a3fde174c0da3bbcc77dce5c821a7 /Demos/makefile
parent791588dba9d6a880345dcce4e5ab7fa98d47e8c7 (diff)
Change over instances of "make" in the makefiles to "$(MAKE)" to allow for the make tool to be overridden.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1247 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/makefile')
-rw-r--r--Demos/makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/makefile b/Demos/makefile
index af8932b9..c5736cb8 100644
--- a/Demos/makefile
+++ b/Demos/makefile
@@ -14,6 +14,6 @@
# code.
%:
- make -C Device $@
- make -C Host $@
- make -C DualRole $@
+ $(MAKE) -C Device $@
+ $(MAKE) -C Host $@
+ $(MAKE) -C DualRole $@