1
|
1 ## Process this file with automake to produce Makefile.in
|
|
2
|
|
3 man_MANS=gftp.1
|
|
4 SUBDIRS=sample.gftp
|
306
|
5 EXTRA_DIST=USERS-GUIDE gftp.1 gftp.desktop gftp.lsm gftp.png parse-netrc.pl \
|
|
6 gftp-faq.sgml
|
1
|
7
|
534
|
8 Utilitiesdir = $(datadir)/applications
|
1
|
9 Utilities_DATA = gftp.desktop
|
|
10
|
|
11 Iconsdir = $(datadir)/pixmaps
|
|
12 Icons_DATA = gftp.png
|
307
|
13
|
|
14 if HAVE_DOCBOOK
|
|
15
|
|
16 html:
|
|
17 if test -w $(srcdir); then \
|
|
18 (cd $(srcdir); \
|
|
19 db2html -u gftp-faq.sgml); \
|
|
20 fi
|
|
21
|
|
22 pdf:
|
|
23 if test -w $(srcdir); then \
|
|
24 (cd $(srcdir); db2pdf gftp-faq.sgml); \
|
|
25 fi
|
|
26
|
310
|
27 clean:
|
|
28 rm -rf gftp-faq gftp-faq.junk gftp-faq.pdf
|
|
29
|
307
|
30 dist-hook: html
|
|
31 cp $(srcdir)/gftp-faq/gftp-faq.html $(distdir)/../README.html
|
|
32 html2text -nobs -o $(distdir)/../README -style pretty $(srcdir)/gftp-faq/gftp-faq.html
|
|
33
|
|
34 else
|
|
35
|
|
36 html:
|
|
37 echo "***"
|
|
38 echo "*** Warning: FAQ not built"
|
|
39 echo "***"
|
|
40
|
|
41 pdf:
|
|
42 echo "***"
|
|
43 echo "*** Warning: FAQ not built"
|
|
44 echo "***"
|
|
45
|
|
46 dist-hook:
|
|
47 echo "***"
|
|
48 echo "*** Warning: FAQ not built"
|
|
49 echo "*** DISTRIBUTION IS INCOMPLETE"
|
|
50 echo "***"
|
|
51
|
|
52 endif
|
|
53
|