Add native-clean target.

This commit is contained in:
Graydon Hoare 2010-07-06 13:51:39 -07:00
parent b1eeb9b825
commit a3f2609630
1 changed files with 4 additions and 1 deletions

View File

@ -753,7 +753,7 @@ distcheck:
# Cleanup
######################################################################
.PHONY: clean tidy
.PHONY: clean native-clean tidy
tidy:
@$(call CFG_ECHO, check: formatting)
@ -762,6 +762,9 @@ tidy:
../README \
$(filter-out $(GENERATED) $(PKG_3RDPARTY), $(PKG_FILES))
runtime-clean:
$(CFG_QUIET)rm -f $(RUNTIME_OBJS) $(CFG_RUNTIME)
clean:
@$(call CFG_ECHO, cleaning)
$(CFG_QUIET)rm -f $(RUNTIME_OBJS)