[Pcsclite-cvs-commit] r6882 - trunk/HandlerTest

ludovic.rousseau at free.fr ludovic.rousseau at free.fr
Tue Mar 25 09:56:11 UTC 2014


Author: rousseau
Date: 2014-03-25 09:56:11 +0000 (Tue, 25 Mar 2014)
New Revision: 6882

Modified:
   trunk/HandlerTest/Makefile
Log:
Use $(MAKE) instead of make

Fix the warning:
make[1]: warning: jobserver unavailable: using -j1.  Add `+' to parent make rule.


Modified: trunk/HandlerTest/Makefile
===================================================================
--- trunk/HandlerTest/Makefile	2014-03-23 15:16:49 UTC (rev 6881)
+++ trunk/HandlerTest/Makefile	2014-03-25 09:56:11 UTC (rev 6882)
@@ -1,11 +1,11 @@
 # $Id$
 
 all:
-	make -C Host all
+	$(MAKE) -C Host all
 
 clean:
-	make -C Host clean
+	$(MAKE) -C Host clean
 
 distclean:
-	make -C Host distclean
+	$(MAKE) -C Host distclean
 




More information about the Pcsclite-cvs-commit mailing list