source: trunk/third/gstreamer/docs/htmlinstall.mak @ 21005

Revision 21005, 470 bytes checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r21004, which included commits to RCS files with non-trunk default branches.
Line 
1# this file adds rules for installing html subtrees
2# I really don't like this hack, but automake doesn't seem to want to
3# install directory trees :(
4
5if DOC_HTML
6install-data-local: html
7        $(mkinstalldirs) $(DESTDIR)$(docdir)
8        cp -pr $(HTML_DAT) $(DESTDIR)$(docdir)
9
10uninstall-local:
11        for part in $(HTML_DAT); do rm -rf $(DESTDIR)$(docdir)/$$part; done
12        if test -d $(DESTDIR)$(docdir); then rmdir $(DESTDIR)$(docdir); fi
13else
14install-data-local:
15uninstall-local:
16endif
Note: See TracBrowser for help on using the repository browser.