XSLTools

packages/ubuntu-hoary/python2.4-xsltools/debian/rules

547:5d64fa39751a
2007-01-18 paulb [project @ 2007-01-18 22:59:04 by paulb] Added resource generation.
     1 #!/usr/bin/make -f     2 # Sample debian/rules that uses debhelper.     3 # GNU copyright 1997 to 1999 by Joey Hess.     4      5 # Uncomment this to turn on verbose mode.     6 #export DH_VERBOSE=1     7      8 # This is the debhelper compatibility version to use.     9 export DH_COMPAT=4    10     11     12     13 build: build-stamp    14 	/usr/bin/python2.4 setup.py build    15 build-stamp:     16 	touch build-stamp    17     18 configure:    19 	# Do nothing    20     21 clean:    22 	dh_testdir    23 	dh_testroot    24 	rm -f build-stamp    25     26 	-rm -rf build    27     28 	dh_clean    29     30 install: build    31 	dh_testdir    32 	dh_testroot    33 	dh_clean -k    34 	/usr/bin/python2.4 tools/prepare_demo.py    35 	/usr/bin/python2.4 setup.py install --no-compile --prefix=$(CURDIR)/debian/python2.4-xsltools/usr    36     37 # Build architecture-independent files here.    38 binary-indep: install    39 	tools/apidocs.sh    40 	dh_testdir    41 	dh_testroot    42     43 	dh_installdocs    44 	dh_installdeb    45 	dh_gencontrol    46 	dh_md5sums    47 	dh_builddeb    48 # We have nothing to do by default.    49     50 binary: binary-indep     51 .PHONY: build clean binary-indep binary install