mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
Fix a bug in manual/Makefile.am: bad shell script for make disting .ps files. Couple of final fixes to libs/Makefil...
Original commit message from CVS: Fix a bug in manual/Makefile.am: bad shell script for make disting .ps files. Couple of final fixes to libs/Makefile.am, too. Add a few things to cvsignores.
This commit is contained in:
parent
8b4b05dc1e
commit
cf22a00363
4 changed files with 11 additions and 8 deletions
1
docs/libs/.gitignore
vendored
1
docs/libs/.gitignore
vendored
|
@ -1,5 +1,6 @@
|
|||
Makefile
|
||||
Makefile.in
|
||||
tmpl
|
||||
html
|
||||
sgml
|
||||
gstreamer-libs-unused.txt
|
||||
|
|
|
@ -36,12 +36,14 @@ tmpl/$(DOC_MODULE)-unused.sgml: $(DOC_MODULE)-decl.txt $(DOC_MODULE)-sections.tx
|
|||
sgml/$(DOC_MODULE)-doc.bottom: tmpl/$(DOC_MODULE)-unused.sgml
|
||||
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR)
|
||||
|
||||
all-local: html
|
||||
|
||||
clean-local:
|
||||
$(RM) -rf *~ *.bak *.signals *-unused.txt *.args tmpl html sgml tmpl/*.bak $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
|
||||
|
||||
install-data-local: html
|
||||
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
|
||||
(installfiles=`echo $(srcdir)/html/*.html`; \
|
||||
@$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
|
||||
@(installfiles=`echo $(srcdir)/html/*.html`; \
|
||||
if test "$$installfiles" = '$(srcdir)/html/*.html'; \
|
||||
then echo '-- Nothing to install' ; \
|
||||
else \
|
||||
|
@ -55,13 +57,12 @@ install-data-local: html
|
|||
gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(HTML_DIR)|| true; \
|
||||
fi)
|
||||
|
||||
uninstall-local: html
|
||||
@echo '-- Uninstalling '$(DESTDIR)$(TARGET_DIR) ; \
|
||||
$(RM) -rf $(DESTDIR)$(TARGET_DIR)
|
||||
|
||||
dist-hook: html
|
||||
mkdir $(distdir)/html
|
||||
mkdir $(distdir)/sgml
|
||||
mkdir $(distdir)/tmpl
|
||||
-cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html
|
||||
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
|
||||
-cp $(srcdir)/sgml/*.sgml $(distdir)/sgml
|
||||
-cp $(srcdir)/sgml/*.bottom $(srcdir)/sgml/*.top $(distdir)/sgml
|
||||
|
||||
.PHONY : html
|
||||
|
|
1
docs/manual/.gitignore
vendored
1
docs/manual/.gitignore
vendored
|
@ -2,6 +2,7 @@ Makefile
|
|||
Makefile.in
|
||||
*.bak
|
||||
.deps
|
||||
images
|
||||
gstreamer-manual
|
||||
gstreamer-manual.pdf
|
||||
gstreamer-manual.ps
|
||||
|
|
|
@ -112,7 +112,7 @@ pdfdist: pdfdocs
|
|||
|
||||
psdocs: $(PSFILES)
|
||||
psdist: psdocs
|
||||
@for a $(PSFILES) ; do \
|
||||
@for a in $(PSFILES) ; do \
|
||||
if [ -r $$a ] ; then \
|
||||
echo "Adding $$a to distribution" ; \
|
||||
cp -a $$a $(distdir)/ ; \
|
||||
|
|
Loading…
Reference in a new issue