0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-19 12:48:32 +00:00

Makefile: avoid a superfluous fork

* targets.mk: Avoid superfluous fork in implementation of clean
  targets.
This commit is contained in:
Achim Gratz 2012-08-22 08:04:56 +02:00
parent dd76fceddc
commit 142a25b353

View file

@ -118,9 +118,7 @@ autoloads: lisp
cleandirs:
$(foreach dir, $(SUBDIRS), $(MAKE) -C $(dir) cleanall;)
clean: cleanrel
$(MAKE) -C lisp clean
$(MAKE) -C doc clean
clean: cleanrel cleanlisp cleandoc
cleanall: cleandirs cleantest
-$(FIND) . \( -name \*~ -o -name \*# -o -name .#\* \) -exec $(RM) {} \;