1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
export ROOT=$(CURDIR)
%:
dh $@
override_dh_clean:
dh_clean xhtml/*.3clc
dh_clean man/Makefile.xmldeps
dh_clean man/section-to-page.xml
pkg_xml = opencl-1.2-html-doc
pkg_man = opencl-1.2-man-doc
override_dh_installdocs:
dh_installdocs -p$(pkg_xml) xhtml/*.html xhtml/*.css xhtml/*.jpg xhtml/*.gif
override_dh_installman:
dh_installman -p$(pkg_man) man/*.3clc
dh_installdocs -p$(pkg_man)
override_dh_auto_install:
get-orig-source:
./debian/get-orig-source
|