[Python-checkins] r86360 - python/branches/py3k-cdecimal/Lib/test/mpdecimal/Makefile.vc

stefan.krah python-checkins at python.org
Tue Nov 9 14:59:01 CET 2010


Author: stefan.krah
Date: Tue Nov  9 14:59:01 2010
New Revision: 86360

Log:
Do not echo unimportant commands.

Modified:
   python/branches/py3k-cdecimal/Lib/test/mpdecimal/Makefile.vc

Modified: python/branches/py3k-cdecimal/Lib/test/mpdecimal/Makefile.vc
==============================================================================
--- python/branches/py3k-cdecimal/Lib/test/mpdecimal/Makefile.vc	(original)
+++ python/branches/py3k-cdecimal/Lib/test/mpdecimal/Makefile.vc	Tue Nov  9 14:59:01 2010
@@ -79,12 +79,12 @@
 
 
 $(LIBSTATIC): Makefile $(OBJS)
-	if exist $@ del $(LIBSTATIC)
+	- at if exist $@ del $(LIBSTATIC)
 	lib $(LFLAGS) /out:$(LIBSTATIC) $(OBJS)
 
 
 $(LIBSHARED): Makefile $(OBJS)
-	if exist $@ del $(LIBSHARED)
+	- at if exist $@ del $(LIBSHARED)
 	link $(LFLAGS) /out:$(LIBSHARED) /implib:$(LIBIMPORT) $(OBJS)
 	mt -manifest $(LIBSHARED).manifest -outputresource:$(LIBSHARED);2
 
@@ -173,25 +173,25 @@
 
 check:\
 $(BUILDLIB)
-	copy /y $(BUILDLIB) tests && \
-        cd tests && \
-        copy /y Makefile.vc Makefile && \
-      	nmake UFLAGS="$(UFLAGS)" CFLAGS="$(CFLAGS)" USELIB="$(USELIB)" && \
-	runshort.bat
+	- at copy /y $(BUILDLIB) tests
+	- at cd tests
+	- at copy /y Makefile.vc Makefile
+	- at nmake UFLAGS="$(UFLAGS)" CFLAGS="$(CFLAGS)" USELIB="$(USELIB)"
+	- at runshort.bat
 
 extended:\
 Makefile $(BUILDLIB)
-	copy /y $(BUILDLIB) tests && \
-        cd tests && \
-        copy /y Makefile.vc Makefile && \
-       	nmake UFLAGS="$(UFLAGS)" CFLAGS="$(CFLAGS)" USELIB="$(USELIB)" extended
+	- at copy /y $(BUILDLIB) tests
+	- at cd tests
+	- at copy /y Makefile.vc Makefile
+	- at nmake UFLAGS="$(UFLAGS)" CFLAGS="$(CFLAGS)" USELIB="$(USELIB)" extended
 
 extended_gmp:\
 Makefile $(BUILDLIB)
-	copy /y $(BUILDLIB) tests && \
-	cd tests && \
-	copy /y Makefile.vc Makefile && \
-	nmake UFLAGS="$(UFLAGS)" CFLAGS="$(CFLAGS)" USELIB="$(USELIB)" GMPINC=$(GMPINC) GMPLIB=$(GMPLIB) extended_gmp
+	- at copy /y $(BUILDLIB) tests
+	- at cd tests
+	- at copy /y Makefile.vc Makefile
+	- at nmake UFLAGS="$(UFLAGS)" CFLAGS="$(CFLAGS)" USELIB="$(USELIB)" GMPINC=$(GMPINC) GMPLIB=$(GMPLIB) extended_gmp
 
 
 FORCE:
@@ -228,6 +228,6 @@
 	- at if exist *.exe del *.exe
 	- at if exist python\cdecimal.pyd del python\cdecimal.pyd
 	- at if exist python\*.pyc del python\*.pyc
-	cd tests && copy /y Makefile.vc Makefile && nmake clean
+	- at cd tests && copy /y Makefile.vc Makefile && nmake clean
 
 


More information about the Python-checkins mailing list