# Makefile.in for Zope 3.3.1 # # This makefile provides two interesting targets: # # build build the software # install install the software default: build PYTHON=/usr/local/bin/python2.4 TESTOPTS=-v prefix=/usr/local/www/Zope3 .PHONY: build build: $(PYTHON) install.py -q build # The "install" target skips the distutils build step since that's # handled via the dependency on the build target. # install: build $(PYTHON) install.py -q install --skip-build --home "$(prefix)" check test: build $(PYTHON) test.py $(TESTOPTS)