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

fixed problem with too many filenames in rm command

[[Imported from SVN: r4976]]
parent df059b4c
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.
Finish editing this message first!
Please register or to comment