#!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 CFLAGS = -Wall -g clean: dh_testdir dh_testroot python setup.py clean rm -rf build rm -f build-stamp configure-stamp dh_clean # Nothing to do to build the package. build: install: dh_testdir dh_testroot python ./setup.py install --no-compile --prefix=$(CURDIR)/debian/musiclibrarian/usr --install-layout=deb binary-indep: install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installman debian/music-librarian.1 dh_installmenu dh_link dh_strip dh_compress dh_fixperms dh_python2 rm -rf $(CURDIR)/debian/musiclibrarian/usr/lib dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary-arch: binary: binary-indep .PHONY: clean binary-indep binary install build