|
Revision 117, 1.2 kB
(checked in by paravoid, 5 years ago)
|
|
Add WHOIS server (whoind) to revision control
|
| Line | |
|---|
| 1 | #!/usr/bin/make -f |
|---|
| 2 | # -*- makefile -*- |
|---|
| 3 | # Sample debian/rules that uses debhelper. |
|---|
| 4 | # This file was originally written by Joey Hess and Craig Small. |
|---|
| 5 | # As a special exception, when this file is copied by dh-make into a |
|---|
| 6 | # dh-make output file, you may use that output file without restriction. |
|---|
| 7 | # This special exception was added by Craig Small in version 0.37 of dh-make. |
|---|
| 8 | |
|---|
| 9 | # Uncomment this to turn on verbose mode. |
|---|
| 10 | #export DH_VERBOSE=1 |
|---|
| 11 | |
|---|
| 12 | configure: configure-stamp |
|---|
| 13 | configure-stamp: |
|---|
| 14 | dh_testdir |
|---|
| 15 | |
|---|
| 16 | touch configure-stamp |
|---|
| 17 | |
|---|
| 18 | build: build-stamp |
|---|
| 19 | |
|---|
| 20 | build-stamp: configure-stamp |
|---|
| 21 | dh_testdir |
|---|
| 22 | |
|---|
| 23 | pod2man --section=8 --release="whoind 0.9" whoind > whoind.8 |
|---|
| 24 | |
|---|
| 25 | touch build-stamp |
|---|
| 26 | |
|---|
| 27 | clean: |
|---|
| 28 | dh_testdir |
|---|
| 29 | dh_testroot |
|---|
| 30 | rm -f build-stamp configure-stamp |
|---|
| 31 | |
|---|
| 32 | -rm -f whoind.8 |
|---|
| 33 | |
|---|
| 34 | dh_clean |
|---|
| 35 | |
|---|
| 36 | install: build |
|---|
| 37 | dh_testdir |
|---|
| 38 | dh_testroot |
|---|
| 39 | dh_clean -k |
|---|
| 40 | dh_installdirs |
|---|
| 41 | |
|---|
| 42 | # Build architecture-independent files here. |
|---|
| 43 | binary: build install |
|---|
| 44 | dh_testdir |
|---|
| 45 | dh_testroot |
|---|
| 46 | dh_installchangelogs |
|---|
| 47 | dh_installdocs |
|---|
| 48 | dh_installexamples |
|---|
| 49 | dh_install |
|---|
| 50 | dh_installinit |
|---|
| 51 | dh_installman |
|---|
| 52 | dh_link |
|---|
| 53 | dh_compress |
|---|
| 54 | dh_fixperms |
|---|
| 55 | dh_perl |
|---|
| 56 | dh_installdeb |
|---|
| 57 | dh_shlibdeps |
|---|
| 58 | dh_gencontrol |
|---|
| 59 | dh_md5sums |
|---|
| 60 | dh_builddeb |
|---|
| 61 | |
|---|
| 62 | .PHONY: build clean binary install configure |
|---|