mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
2a39aad141
Original commit message from CVS: Remove many unwanted generated files from distributions.
107 lines
2.8 KiB
Makefile
107 lines
2.8 KiB
Makefile
# Included by directories containing manuals.
|
|
# Expects the following to be defined:
|
|
# manualname
|
|
# htmlname
|
|
# sgml_files
|
|
# fig_files
|
|
# eps_files
|
|
# png_files
|
|
|
|
PDFFILES=$(manualname).pdf
|
|
PSFILES=$(manualname).ps
|
|
|
|
if HAVE_FIG2DEV_PNG
|
|
PNGS_TO_MAKE=$(png_files)
|
|
else
|
|
PNGS_TO_MAKE=
|
|
endif
|
|
|
|
$(manualname)/$(htmlname): $(sgml_files) $(PNGS_TO_MAKE)
|
|
if HAVE_DB2HTML
|
|
db2html $(manualname).sgml
|
|
else
|
|
@echo "Can't build $@: don't have db2html tool"
|
|
endif
|
|
|
|
$(manualname).pdf: $(manualname).ps
|
|
if HAVE_PS2PDF
|
|
@if [ -r $< ] ; then ps2pdf $< $@ ; fi
|
|
else
|
|
@echo "Can't build $@: don't have ps2pdf tool"
|
|
endif
|
|
|
|
if HAVE_FIG2DEV_EPS
|
|
$(manualname).ps: $(sgml_files) $(eps_files)
|
|
else
|
|
$(manualname).ps: $(sgml_files)
|
|
endif
|
|
if HAVE_DB2PS
|
|
@if [ -r $< ] ; then db2ps $(manualname).sgml ; fi
|
|
else
|
|
@echo "Can't build $@: don't have db2ps tool"
|
|
endif
|
|
|
|
images :
|
|
mkdir images
|
|
|
|
if HAVE_FIG2DEV_PNG
|
|
images/%.png : %.fig images
|
|
fig2dev -L png -s 16 $< $@
|
|
endif
|
|
|
|
if HAVE_FIG2DEV_EPS
|
|
images/%.eps : %.fig images
|
|
fig2dev -L eps -s 16 -m 0.5 $< $@
|
|
endif
|
|
|
|
$(manualname)/images:
|
|
@if [ -d $(manualname) ] ; then \
|
|
if [ -d images ] ; then \
|
|
ln -sf ../images $(manualname)/images ;\
|
|
fi \
|
|
fi
|
|
|
|
htmldocs: $(manualname)/$(htmlname) $(manualname)/images
|
|
pdfdocs: $(PDFFILES)
|
|
psdocs: $(PSFILES)
|
|
|
|
# Data to install, in the usual automake way
|
|
docdatadir = $(datadir)/gstreamer
|
|
docdata_DATA = $(PDFFILES) $(PSFILES)
|
|
|
|
htmlinst: htmldocs
|
|
@if [ -r $(manualname)/$(htmlname) ] ; then \
|
|
echo "Installing $(manualname)" ; \
|
|
$(mkinstalldirs) $(DESTDIR)$(docdatadir)/$(manualname) ; \
|
|
$(mkinstalldirs) $(DESTDIR)$(docdatadir)/$(manualname)/images ; \
|
|
$(INSTALL_DATA) $(manualname)/*.html $(DESTDIR)$(docdatadir)/$(manualname) ; \
|
|
for a in "x" $(png_files); do \
|
|
if [ "x$$a" != "xx" ] ; then \
|
|
if [ -r $$a ] ; then \
|
|
$(INSTALL_DATA) $$a $(DESTDIR)$(docdatadir)/$(manualname)/images ; \
|
|
fi; fi; done \
|
|
else \
|
|
if [ -r $(srcdir)/$(manualname)/$(htmlname) ] ; then \
|
|
echo "Installing $(srcdir)/$(manualname)" ; \
|
|
$(mkinstalldirs) $(DESTDIR)$(docdatadir)/$(manualname) ; \
|
|
$(mkinstalldirs) $(DESTDIR)$(docdatadir)/$(manualname)/images ; \
|
|
$(INSTALL_DATA) $(srcdir)/$(manualname)/*.html $(DESTDIR)$(docdatadir)/$(manualname) ; \
|
|
for a in "x" $(png_files); do \
|
|
if [ "x$$a" != "xx" ] ; then \
|
|
if [ -r $$a ] ; then \
|
|
$(INSTALL_DATA) $$a $(DESTDIR)$(docdatadir)/$(manualname)/images ; \
|
|
fi; fi; done \
|
|
else \
|
|
echo "NOT installing HTML documentation: not present, and can't generate" ; \
|
|
fi \
|
|
fi
|
|
|
|
htmluninst:
|
|
$(RM) -rf $(DESTDIR)$(docdatadir)/$(manualname)
|
|
|
|
all-local: htmldocs pdfdocs psdocs
|
|
clean-local:
|
|
$(RM) -rf $(manualname)/ $(manualname).junk/ images/*.eps images/*.png *.eps *.png *.ps *.pdf *.aux *.dvi *.log *.tex DBTOHTML_OUTPUT_DIR*
|
|
install-data-local: htmlinst
|
|
uninstall-local: htmluninst
|
|
|