michael@9: #!/usr/bin/make -f michael@9: # -*- makefile -*- michael@9: # Sample debian/rules that uses debhelper. michael@9: # This file was originally written by Joey Hess and Craig Small. michael@9: # As a special exception, when this file is copied by dh-make into a michael@9: # dh-make output file, you may use that output file without restriction. michael@9: # This special exception was added by Craig Small in version 0.37 of dh-make. michael@9: michael@9: # Uncomment this to turn on verbose mode. michael@9: #export DH_VERBOSE=1 michael@9: michael@9: michael@9: michael@9: michael@9: michael@9: configure: configure-stamp michael@9: configure-stamp: michael@9: dh_testdir michael@9: # qmake PREFIX=/usr# Uncomment this line for use without Qt Creator michael@9: michael@9: touch configure-stamp michael@9: michael@9: michael@9: build: build-stamp michael@9: michael@9: build-stamp: configure-stamp michael@9: dh_testdir michael@9: michael@9: # Add here commands to compile the package. michael@9: # $(MAKE) # Uncomment this line for use without Qt Creator michael@9: #docbook-to-man debian/schachuhr.sgml > schachuhr.1 michael@9: michael@9: touch $@ michael@9: michael@9: clean: michael@9: dh_testdir michael@9: dh_testroot michael@9: rm -f build-stamp configure-stamp michael@9: michael@9: # Add here commands to clean up after the build process. michael@9: $(MAKE) clean michael@9: michael@9: dh_clean michael@9: michael@9: install: build michael@9: dh_testdir michael@9: dh_testroot michael@9: dh_clean -k michael@9: dh_installdirs michael@9: michael@9: # Add here commands to install the package into debian/schachuhr. michael@9: $(MAKE) INSTALL_ROOT="$(CURDIR)"/debian/schachuhr install michael@9: michael@9: michael@9: # Build architecture-independent files here. michael@9: binary-indep: build install michael@9: # We have nothing to do by default. michael@9: michael@9: # Build architecture-dependent files here. michael@9: binary-arch: build install michael@9: dh_testdir michael@9: dh_testroot michael@9: dh_installchangelogs michael@9: dh_installdocs michael@9: dh_installexamples michael@9: # dh_install michael@9: # dh_installmenu michael@9: # dh_installdebconf michael@9: # dh_installlogrotate michael@9: # dh_installemacsen michael@9: # dh_installpam michael@9: # dh_installmime michael@9: # dh_python michael@9: # dh_installinit michael@9: # dh_installcron michael@9: # dh_installinfo michael@9: dh_installman michael@9: dh_link michael@9: dh_strip michael@9: dh_compress michael@9: dh_fixperms michael@9: # dh_perl michael@9: # dh_makeshlibs michael@9: dh_installdeb michael@9: # dh_shlibdeps # Uncomment this line for use without Qt Creator michael@9: dh_gencontrol michael@9: dh_md5sums michael@9: dh_builddeb michael@9: michael@9: binary: binary-indep binary-arch michael@9: .PHONY: build clean binary-indep binary-arch binary install configure