Distclean Tools/javascript
This commit is contained in:
parent
cc1ff55be4
commit
46ce4d3ba9
2 changed files with 8 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -64,3 +64,6 @@ javascript: $(JS_INTERPRETER_OBJS)
|
|||
clean:
|
||||
rm -f *.o
|
||||
rm -f javascript
|
||||
|
||||
distclean: clean
|
||||
rm -f Makefile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue