blob: f9b1ec1f960fc31c5ceedd7b6eaea2ed6a2e738d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/make -f
# -*- makefile -*-
%:
dh $@
override_dh_auto_build:
pod2man $(CURDIR)/bin/cil > $(CURDIR)/cil.1
dh_auto_build
override_dh_auto_install:
dh_auto_install
rm -rf $(CURDIR)/debian/cil/usr/share/man/man1/cil.1p
override_dh_clean:
dh_clean
rm -rf $(CURDIR)/cil.1
|