Skip to content
Snippets Groups Projects
Commit 5eabed57 authored by Christian Engwer's avatar Christian Engwer
Browse files

fixed problem with too many filenames in rm command

[[Imported from SVN: r808]]
parent b6b07535
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,10 @@ install-data-local: html-dist
done
uninstall-local:
rm -f $(DESTDIR)/$(doxygendir)/*.html $(DESTDIR)/$(doxygendir)/*.css \
$(DESTDIR)/$(doxygendir)/*.png $(DESTDIR)/$(doxygendir)/*.gif
rm -f $(DESTDIR)/$(doxygendir)/*.html
rm -f $(DESTDIR)/$(doxygendir)/*.css
rm -f $(DESTDIR)/$(doxygendir)/*.png
rm -f $(DESTDIR)/$(doxygendir)/*.gif
# what files does the doxygen-generated stuff depend on (find-syntax)
DEPENDON = -name \*.cc -o -name \*.hh -o -name \*.png
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment