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
|
SUBDIRS = figures
gpiv_helpdir = $(datadir)/gnome/help/gpiv/C
gpiv_help_DATA = \
index.html \
intro.html \
gpiv.html \
piv_intro.html \
topic.dat
EXTRA_DIST = Makefile.in
#EXTRA_DIST = $(gpiv_help_DATA)
##
##SGML_FILES = \
## gpiv.sgml
# files that aren't in a binary/data/library target have to be listed here
# to be included in the tarball when you 'make dist'
##EXTRA_DIST = \
## topic.dat
## $(SGML_FILES)
## The - before the command means to ignore it if it fails. that way
## people can still build the software without the docbook tools
all:
#index.html: index.html
# -cp index.html .
#intro.html: intro.html
# -cp intro.html .
#gpiv.html: gpiv.html
# -cp gpiv/gpiv.html .
#piv_intro.html: gpiv/piv_intro.html
# -cp piv_intro.html .
##gpiv/gpiv.html: $(SGML_FILES)
## -db2html gpiv.sgml
## when we make dist, we include the generated HTML so people don't
## have to have the docbook tools
dist-hook:
-cp *.html $(distdir)
-cp *.dat $(distdir)
# mkdir $(distdir)/gpiv
# -cp gpiv/*.html gpiv/*.css $(distdir)/gpiv
# -cp gpiv.html $(distdir)
#install-data-local: gpiv.html
# $(mkinstalldirs) $(gpiv_helpdir)/images
# -for file in $(srcdir)/gpiv/*.html $(srcdir)/gpiv/*.css; do \
# basefile=`basename $$file`; \
# $(INSTALL_DATA) $(srcdir)/$$file $(gpiv_helpdir)/$$basefile; \
# done
##gpiv.ps: gpiv.sgml
## -db2ps $<
##gpiv.rtf: gpiv.sgml
## -db2rtf $<
|