gstreamer/docs/htmlinstall.mak
Thomas Vander Stichele f8e21cbdbe minor fix to force html build
Original commit message from CVS:
minor fix to force html build
2003-10-08 15:05:09 +00:00

12 lines
321 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 :(
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)