[rtems-libbsd commit] Use $(MAKE) not make so -jN works
Joel Sherrill
joel at rtems.org
Fri Mar 9 22:38:16 UTC 2012
Module: rtems-libbsd
Branch: master
Commit: 25b33174d60dc267833fc0fb538e2c2254fd1554
Changeset: http://git.rtems.org/rtems-libbsd/commit/?id=25b33174d60dc267833fc0fb538e2c2254fd1554
Author: Joel Sherrill <joel.sherrill at oarcorp.com>
Date: Fri Mar 9 16:38:01 2012 -0600
Use $(MAKE) not make so -jN works
---
Makefile | 2 +-
freebsd-to-rtems.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 9526c53..5543c9e 100644
--- a/Makefile
+++ b/Makefile
@@ -375,7 +375,7 @@ $(LIB): $(C_O_FILES)
$(AR) rcu $@ $^
lib_usb:
- make $(LIB)
+ $(MAKE) $(LIB)
install: $(LIB)
install -d $(INSTALL_BASE)/include
diff --git a/freebsd-to-rtems.py b/freebsd-to-rtems.py
index 1c99d4d..6a3c836 100755
--- a/freebsd-to-rtems.py
+++ b/freebsd-to-rtems.py
@@ -405,7 +405,7 @@ class ModuleManager:
'\t$(AR) rcu $@ $^\n' \
'\n' \
'lib_usb:\n' \
- '\tmake $(LIB)\n' \
+ '\t$(MAKE) $(LIB)\n' \
'\n' \
'install: $(LIB)\n' \
'\tinstall -d $(INSTALL_BASE)/include\n' \
More information about the vc
mailing list