Distclean Tools/javascript

This commit is contained in:
Karl Wette 2014-05-28 21:19:06 +02:00
commit 46ce4d3ba9
2 changed files with 8 additions and 1 deletions

View file

@ -403,7 +403,7 @@ clean-ccache:
DISTCLEAN-DEAD = config.status config.log config.cache swig.spec Makefile mkmf.log libtool preinst-swig
distclean-helper: distclean-test-suite distclean-examples distclean-dead
distclean-helper: distclean-test-suite distclean-examples distclean-tools distclean-dead
distclean: distclean-source distclean-ccache distclean-helper
@ -429,6 +429,10 @@ distclean-examples:
distclean-ccache:
@test -z "$(ENABLE_CCACHE)" || (cd $(CCACHE) && $(MAKE) $(FLAGS) distclean)
distclean-tools:
@echo distcleaning Tools
@cd Tools/javascript && $(MAKE) $(FLAGS) distclean
distclean-dead:
rm -f $(DISTCLEAN-DEAD)
rm -rf autom4te.cache

View file

@ -64,3 +64,6 @@ javascript: $(JS_INTERPRETER_OBJS)
clean:
rm -f *.o
rm -f javascript
distclean: clean
rm -f Makefile