| Revision: | 1.1 |
| Committed: | Wed Aug 27 20:34:13 2003 UTC (23 years, 1 month ago) by gashuffer |
| Branch: | MAIN |
| CVS Tags: | rel-0_95, rel-1_1, rel-1_0, rel-1_3, rel-1_2, last_stable, HEAD |
| Log Message: | Adding a debian/ subdirectory |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | gashuffer | 1.1 | #!/usr/bin/make -f |
| 2 | |||
| 3 | #export DH_VERBOSE=1 | ||
| 4 | |||
| 5 | D=`pwd`/debian/root-tail | ||
| 6 | |||
| 7 | build: build-stamp | ||
| 8 | |||
| 9 | build-stamp: | ||
| 10 | dh_testdir | ||
| 11 | $(MAKE) root-tail | ||
| 12 | touch build-stamp | ||
| 13 | |||
| 14 | clean: | ||
| 15 | dh_testroot | ||
| 16 | dh_testdir | ||
| 17 | $(MAKE) -i clean | ||
| 18 | rm -f build-stamp | ||
| 19 | dh_clean | ||
| 20 | |||
| 21 | install: build | ||
| 22 | dh_testroot | ||
| 23 | dh_testdir | ||
| 24 | dh_installdirs | ||
| 25 | install root-tail $D/usr/bin/ | ||
| 26 | |||
| 27 | binary-indep: | ||
| 28 | |||
| 29 | binary-arch: install | ||
| 30 | dh_testdir | ||
| 31 | dh_testroot | ||
| 32 | dh_installdocs README | ||
| 33 | dh_installchangelogs Changes | ||
| 34 | dh_installman root-tail.man | ||
| 35 | dh_strip | ||
| 36 | dh_link | ||
| 37 | dh_compress | ||
| 38 | dh_fixperms | ||
| 39 | dh_installdeb | ||
| 40 | dh_shlibdeps | ||
| 41 | dh_gencontrol | ||
| 42 | dh_md5sums | ||
| 43 | dh_builddeb | ||
| 44 | |||
| 45 | binary: binary-indep binary-arch | ||
| 46 | |||
| 47 | .PHONY: build clean binary-arch binary install |