mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
1a3888c760
Original commit message from CVS: Merge HEAD from CAPS-ROOT to CAPS-MERGE-1
16 lines
381 B
Makefile
16 lines
381 B
Makefile
# this file adds rules for installing html subtrees
|
|
# I really don't like this hack, but automake doesn't seem to want to
|
|
# install directory trees :(
|
|
|
|
if DOC_HTML
|
|
install-data-local: html
|
|
mkdir -p $(docdir)
|
|
cp -pr $(HTML_DAT) $(docdir)
|
|
|
|
uninstall-local:
|
|
for part in $(HTML_DAT); do rm -rf $(docdir)/$$part; done
|
|
rmdir $(docdir)
|
|
else
|
|
install-data-local:
|
|
uninstall-local:
|
|
endif
|