diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-09-03 23:19:53 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-09-03 23:19:53 +0000 |
commit | 40b062fdf86143b89d674bcb6c63659014999ff0 (patch) | |
tree | ca02fb0abea8b685bb9ff04c8b99ea6733d141db /runtime/Makefile | |
parent | 23f7d5131cf9519b90ac4fc2d200671d128b5464 (diff) | |
download | external_llvm-40b062fdf86143b89d674bcb6c63659014999ff0.zip external_llvm-40b062fdf86143b89d674bcb6c63659014999ff0.tar.gz external_llvm-40b062fdf86143b89d674bcb6c63659014999ff0.tar.bz2 |
Clean up some "clean:" targets so they use $(VERB) and don't print anything
by default, like every other "clean" target in LLVM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16161 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/Makefile')
-rw-r--r-- | runtime/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/Makefile b/runtime/Makefile index 46fc9c9..3ddf2bd 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -28,5 +28,5 @@ include $(LEVEL)/Makefile.common install:: clean:: - rm -f $(DESTLIBBYTECODE)/* + $(VERB) rm -f $(DESTLIBBYTECODE)/* |