mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +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
|
||||||
Makefile.in
|
Makefile.in
|
||||||
|
tmpl
|
||||||
html
|
html
|
||||||
sgml
|
sgml
|
||||||
gstreamer-libs-unused.txt
|
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
|
sgml/$(DOC_MODULE)-doc.bottom: tmpl/$(DOC_MODULE)-unused.sgml
|
||||||
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR)
|
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR)
|
||||||
|
|
||||||
|
all-local: html
|
||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
$(RM) -rf *~ *.bak *.signals *-unused.txt *.args tmpl html sgml tmpl/*.bak $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
|
$(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
|
install-data-local: html
|
||||||
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
|
@$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
|
||||||
(installfiles=`echo $(srcdir)/html/*.html`; \
|
@(installfiles=`echo $(srcdir)/html/*.html`; \
|
||||||
if test "$$installfiles" = '$(srcdir)/html/*.html'; \
|
if test "$$installfiles" = '$(srcdir)/html/*.html'; \
|
||||||
then echo '-- Nothing to install' ; \
|
then echo '-- Nothing to install' ; \
|
||||||
else \
|
else \
|
||||||
|
@ -55,13 +57,12 @@ install-data-local: html
|
||||||
gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(HTML_DIR)|| true; \
|
gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(HTML_DIR)|| true; \
|
||||||
fi)
|
fi)
|
||||||
|
|
||||||
|
uninstall-local: html
|
||||||
|
@echo '-- Uninstalling '$(DESTDIR)$(TARGET_DIR) ; \
|
||||||
|
$(RM) -rf $(DESTDIR)$(TARGET_DIR)
|
||||||
|
|
||||||
dist-hook: html
|
dist-hook: html
|
||||||
mkdir $(distdir)/html
|
mkdir $(distdir)/html
|
||||||
mkdir $(distdir)/sgml
|
|
||||||
mkdir $(distdir)/tmpl
|
|
||||||
-cp $(srcdir)/html/*.html $(srcdir)/html/*.css $(distdir)/html
|
-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
|
.PHONY : html
|
||||||
|
|
1
docs/manual/.gitignore
vendored
1
docs/manual/.gitignore
vendored
|
@ -2,6 +2,7 @@ Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
*.bak
|
*.bak
|
||||||
.deps
|
.deps
|
||||||
|
images
|
||||||
gstreamer-manual
|
gstreamer-manual
|
||||||
gstreamer-manual.pdf
|
gstreamer-manual.pdf
|
||||||
gstreamer-manual.ps
|
gstreamer-manual.ps
|
||||||
|
|
|
@ -112,7 +112,7 @@ pdfdist: pdfdocs
|
||||||
|
|
||||||
psdocs: $(PSFILES)
|
psdocs: $(PSFILES)
|
||||||
psdist: psdocs
|
psdist: psdocs
|
||||||
@for a $(PSFILES) ; do \
|
@for a in $(PSFILES) ; do \
|
||||||
if [ -r $$a ] ; then \
|
if [ -r $$a ] ; then \
|
||||||
echo "Adding $$a to distribution" ; \
|
echo "Adding $$a to distribution" ; \
|
||||||
cp -a $$a $(distdir)/ ; \
|
cp -a $$a $(distdir)/ ; \
|
||||||
|
|
Loading…
Reference in a new issue