mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
3795e5a571
Original commit message from CVS: * common/Makefile.am: * docs/Makefile.am: * docs/faq/Makefile.am: * docs/gst/Makefile.am: * docs/libs/Makefile.am: * docs/manual/Makefile.am: * docs/plugins/Makefile.am: * docs/pwg/Makefile.am: * docs/slides/Makefile.am: * docs/upload.mak: * common/upload.mak: move upload.mak to common
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
### this is the part you can customize if you need to
|
|
|
|
# base name of doc
|
|
DOC = pwg
|
|
# formats defined for upload.mak
|
|
FORMATS=html ps pdf
|
|
|
|
# main xml file
|
|
MAIN = $(DOC).xml
|
|
# all xml sources
|
|
XML = $(notdir $(wildcard $(srcdir)/*.xml))
|
|
# base style sheet
|
|
CSS = base.css
|
|
|
|
# image sources
|
|
PNG_SRC =
|
|
FIG_SRC = $(notdir $(wildcard $(srcdir)/*.fig))
|
|
|
|
# extra sources to copy in build directory
|
|
EXTRA_SRC =
|
|
|
|
### this is the generic bit and you shouln't need to change this
|
|
|
|
# get the generic docbuilding Makefile stuff
|
|
include $(srcdir)/../manuals.mak
|
|
# get the generic upload target
|
|
include $(top_srcdir)/common/upload.mak
|
|
|
|
### this is standard automake stuff
|
|
|
|
# package up all the source
|
|
EXTRA_DIST = $(SRC)
|
|
|
|
# install documentation
|
|
pwgdir = $(docdir)/$(DOC)
|
|
pwg_DATA = $(PDF_DAT) $(PS_DAT)
|
|
|
|
include $(srcdir)/../htmlinstall.mak
|