#!/usr/bin/make -f INSTALL = install INSTALL_FILE = $(INSTALL) -p -o root -g root -m 644 INSTALL_DIR = $(INSTALL) -p -d -o root -g root -m 755 INSTALL_SCRIPT = $(INSTALL) -p -o root -g root -m 755 %: dh $@ override_dh_auto_install: $(INSTALL_DIR) debian/tmp \ debian/tmp/etc \ debian/tmp/etc/thttpd \ debian/tmp/etc/logcheck/ignore.d.server \ debian/tmp/etc/logcheck/ignore.d.workstation \ debian/tmp/etc/init.d \ debian/tmp/etc/logrotate.d $(INSTALL_FILE) debian/throttle.conf debian/tmp/etc/thttpd/throttle.conf $(INSTALL_FILE) debian/thttpd.conf debian/tmp/etc/thttpd/thttpd.conf $(INSTALL_FILE) debian/ignore.d.server/thttpd debian/tmp/etc/logcheck/ignore.d.server/thttpd $(INSTALL_FILE) debian/ignore.d.workstation/thttpd debian/tmp/etc/logcheck/ignore.d.workstation/thttpd $(INSTALL_FILE) debian/logrotate.d/thttpd debian/tmp/etc/logrotate.d/thttpd $(INSTALL_SCRIPT) debian/init.d/thttpd debian/tmp/etc/init.d/thttpd dh_auto_install