#!/usr/bin/make -f # Note that I have to refer to debhelper programs witrh ./, to make sure # I run the most current ones. That's also why there is a symlink to the # current dh_lib in this debian/ directory. # If any automatic script generation is done in building this package, # be sure to use the new templates from this package. export DH_AUTOSCRIPTDIR=autoscripts export DH_VERBOSE=1 test_files=dh_lib build: ./dh_testdir $(test_files) clean: ./dh_testdir $(test_files) ./dh_testroot ./dh_clean # Build architecture-dependent files here. binary-arch: build # We have nothing to do by default. # Build architecture-independent files here. binary-indep: build ./dh_testdir $(test_files) ./dh_testroot ./dh_clean install -d debian/tmp/usr/bin find . -perm +111 -maxdepth 1 -type f \ -exec install -p {} debian/tmp/usr/bin \; install -d debian/tmp/usr/lib/debhelper cp dh_lib debian/tmp/usr/lib/debhelper cp -a autoscripts debian/tmp/usr/lib/debhelper ./dh_installdocs TODO README ./dh_installexamples examples/* ./dh_installmenu ./dh_installmanpages ./dh_installchangelogs ./dh_compress ./dh_installdebfiles ./dh_fixperms ./dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary