[Zope-CVS] CVS: Packages/WinBuilders - Makefile.spread:1.1.2.1
Tim Peters
tim.one at comcast.net
Mon Feb 2 20:22:51 EST 2004
Update of /cvs-repository/Packages/WinBuilders
In directory cvs.zope.org:/tmp/cvs-serv6809
Added Files:
Tag: tim-zrs-branch
Makefile.spread
Log Message:
Dead simple makefile to repackage the Spread executables.
=== Added File Packages/WinBuilders/Makefile.spread ===
# Justs repackages the Spread binaries.
# Puts binaries into build/bin.
# XXX We should include Spread's sample.spread.conf. Where to put it?
# See README.txt for system requirements.
# Download the binary distribution of Spread, from http://www.spread.org/.
# Unpack into the root of your drive.
# Run this to repackage for distribution.
SPREAD_VERSION=3.17.1
SPREAD_DIR=$(CYGROOT)/spread-bin-$(SPREAD_VERSION)
default: install
build: install
install: $(BUILD_DIR)/bin/spread.exe
$(BUILD_DIR)/bin/spread.exe:
$(MKDIR) "$(BUILD_DIR)"
$(MKDIR) "$(BUILD_DIR)/bin"
$(CP) "$(SPREAD_DIR)/win/spread.exe" \
"$(SPREAD_DIR)/win/sprecv.exe" \
"$(SPREAD_DIR)/win/spsend.exe" \
"$(SPREAD_DIR)/win/sptuser.exe" \
"$(SPREAD_DIR)/win/spflooder.exe" \
"$(BUILD_DIR)/bin"
include mk/common.mk
More information about the Zope-CVS
mailing list