[Zope-CVS] CVS: Packages/WinBuilders/mk - spreadwrapper.mk:1.1.2.4

Tim Peters tim.one at comcast.net
Tue Feb 3 18:19:18 EST 2004


Update of /cvs-repository/Packages/WinBuilders/mk
In directory cvs.zope.org:/tmp/cvs-serv5163/mk

Modified Files:
      Tag: tim-zrs-branch
	spreadwrapper.mk 
Log Message:
Fixed some comments.  Used new COPY_AND_WINDOWIZE_LINEENDS from common.mk.


=== Packages/WinBuilders/mk/spreadwrapper.mk 1.1.2.3 => 1.1.2.4 ===
--- Packages/WinBuilders/mk/spreadwrapper.mk:1.1.2.3	Tue Feb  3 16:14:00 2004
+++ Packages/WinBuilders/mk/spreadwrapper.mk	Tue Feb  3 18:19:17 2004
@@ -1,6 +1,8 @@
 # Builds the Python Spread wrapper module.
-# Puts spread.pyd into build/bin, and various text files (Windowsized and
-# renamed) into build/doc.
+# Puts:
+#     spread.pyd into build/lib/python/
+#     testspread.py into build/lib/python/SpreadTest/
+#     various text files (Windowsized and renamed) into build/doc
 
 # Download the wrapper module tarball, from
 # http://www.python.org/other/spread/.
@@ -54,25 +56,13 @@
 	$(TOUCH) $@
 
 $(BUILD_DIR)/doc/spreadwrapper_doc.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/doc.txt
-	$(MKDIR) $(@D)
-	$(CP) $< $@
-	unix2dos $@
-	$(TOUCH) $@
+	$(COPY_AND_WINDOWIZE_LINEENDS)
 
 $(BUILD_DIR)/doc/SPREADWRAPPER_LICENSE.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/LICENSE
-	$(MKDIR) $(@D)
-	$(CP) $< $@
-	unix2dos $@
-	$(TOUCH) $@
+	$(COPY_AND_WINDOWIZE_LINEENDS)
 
 $(BUILD_DIR)/doc/SPREADWRAPPER_README.txt: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/README
-	$(MKDIR) $(@D)
-	$(CP) $< $@
-	unix2dos $@
-	$(TOUCH) $@
+	$(COPY_AND_WINDOWIZE_LINEENDS)
 
 $(BUILD_DIR)/lib/python/SpreadTest/testspread.py: $(SRC_DIR)/$(SPREADWRAPPER_DIR)/testspread.py
-	$(MKDIR) $(@D)
-	$(CP) $< $@
-	unix2dos $@
-	$(TOUCH) $@
+	$(COPY_AND_WINDOWIZE_LINEENDS)




More information about the Zope-CVS mailing list