mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
7943699850
Original commit message from CVS: uninstall fixes
16 lines
470 B
Makefile
16 lines
470 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
|
|
$(mkinstalldirs) $(DESTDIR)$(docdir)
|
|
cp -pr $(HTML_DAT) $(DESTDIR)$(docdir)
|
|
|
|
uninstall-local:
|
|
for part in $(HTML_DAT); do rm -rf $(DESTDIR)$(docdir)/$$part; done
|
|
if test -d $(DESTDIR)$(docdir); then rmdir $(DESTDIR)$(docdir); fi
|
|
else
|
|
install-data-local:
|
|
uninstall-local:
|
|
endif
|