diff options
| author | Graydon Hoare <[email protected]> | 2010-07-06 13:51:39 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-06 13:51:39 -0700 |
| commit | a3f260963092aa370487ae767c163b0244bf5f0f (patch) | |
| tree | de658983d58f42188dc7aaf3b04a6694681ed0da /src | |
| parent | Change from 'spawner' to 'supervisor' in rust_task, and add an unsupervise call. (diff) | |
| download | rust-a3f260963092aa370487ae767c163b0244bf5f0f.tar.xz rust-a3f260963092aa370487ae767c163b0244bf5f0f.zip | |
Add native-clean target.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index d0b9652c..9c61d6a3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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) |