forked from extern/shorewall_code
60beb2f1d2
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@7501 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
46 lines
761 B
Makefile
Executable File
46 lines
761 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
#
|
|
# Shorewall firewall (http://www.shorewall.net)
|
|
# debianized version
|
|
|
|
SRWLDOC=$(CURDIR)/debian/shorewall-doc/usr/share/doc/shorewall-doc
|
|
|
|
build: build-stamp
|
|
build-stamp:
|
|
dh_testdir
|
|
touch build-stamp
|
|
sh debian/build-htmldocs
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp
|
|
rm -rf html/
|
|
rm -f manpages/*.htm*
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs
|
|
cp images/* $(SRWLDOC)/html/images/
|
|
|
|
binary-indep: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installdocs
|
|
dh_link
|
|
dh_installchangelogs
|
|
dh_compress
|
|
dh_fixperms
|
|
dh_installdeb
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary-arch: build install
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install
|