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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
#-*- mode: makefile; tab-width: 4; -*-
#
include(../qmake.inc)
win32 {
QMAKE_RUN_CC = @echo
QMAKE_RUN_CXX = @echo
QMAKE_LINK = @echo
}
!win32 {
QMAKE_RUN_CC = @echo > /dev/null
QMAKE_RUN_CXX = @echo > /dev/null
QMAKE_LINK = @echo > /dev/null
}
TARGET = doc
doc.files = AUTHORS \
ChangeLog \
COPYING \
Credits \
README.floppyfw \
README.ipf \
README.ipfw \
README.ipt \
README.pf \
README.routing \
README.iosacl \
README.pix \
README.policy_import \
FWBuilder-Routing-LICENSE.txt \
PatchAcceptancePolicy.txt \
ReleaseNotes_2.1.7.html \
ReleaseNotes_2.1.7.txt \
ReleaseNotes_2.1.8.html \
ReleaseNotes_2.1.8.txt \
ReleaseNotes_2.1.9.html \
ReleaseNotes_2.1.9.txt \
ReleaseNotes_2.1.10.html \
ReleaseNotes_2.1.10.txt \
ReleaseNotes_2.1.11.html \
ReleaseNotes_2.1.11.txt \
ReleaseNotes_2.1.12.html \
ReleaseNotes_2.1.12.txt \
ReleaseNotes_2.1.13.html \
ReleaseNotes_2.1.13.txt \
ReleaseNotes_2.1.14.html \
ReleaseNotes_2.1.14.txt \
ReleaseNotes_2.1.15.html \
ReleaseNotes_2.1.15.txt \
ReleaseNotes_2.1.16.html \
ReleaseNotes_2.1.16.txt \
ReleaseNotes_2.1.17.html \
ReleaseNotes_2.1.17.txt \
ReleaseNotes_2.1.18.html \
ReleaseNotes_2.1.18.txt \
ReleaseNotes_2.1.19.html \
ReleaseNotes_2.1.19.txt
doc.path = $(DDIR)$$DOCDIR
man.files = fwbedit.1 \
fwblookup.1 \
fwbuilder.1 \
fwb_ipf.1 \
fwb_ipfw.1 \
fwb_ipt.1 \
fwb_pf.1 \
fwb_pix.1 \
fwb_iosacl.1 \
man.path = $(DDIR)$$MANDIR/man1
INSTALLS -= target
INSTALLS += doc
INSTALLS += man
|