extras-buildsys/common Makefile,NONE,1.1

Daniel Williams (dcbw) fedora-extras-commits at redhat.com
Sun Jun 26 14:52:26 UTC 2005


Author: dcbw

Update of /cvs/fedora/extras-buildsys/common
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv6600/common

Added Files:
	Makefile 
Log Message:
2005-06-25  Dan Williams <dcbw at redhat.com>

    * We have a name: "(The) Plague".  We come to eat your packages.

    * Add Makefiles, install common stuff in python site-packages,
        and convert files to use config from /etc




--- NEW FILE Makefile ---
LIBDIR=/usr/lib
DESTDIR=''
INSTALL=/usr/bin/install

PYVERSION=$(shell python -c "import sys; x = sys.version_info; print '%s.%s' % (x[0], x[1])")
PYMODULEDIR=$(DESTDIR)$(LIBDIR)/python$(PYVERSION)/site-packages/$(PKGNAME)

FILES = \
	CommonErrors.py \
	FileDownloader.py \
	HTTPSURLopener.py \
	SimpleHTTPSServer.py \
	SimpleSSLXMLRPCServer.py \
	SSLCommon.py \
	SSLXMLRPCServerProxy.py \
	__init__.py

clean:
	rm -f *.pyc *.pyo *~ *.bak

install:
	mkdir -p $(PYMODULEDIR)
	for file in $(FILES); do $(INSTALL) -m 644 $$file $(PYMODULEDIR)/$$file; done





More information about the fedora-extras-commits mailing list