diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-08-22 03:20:27 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-08-22 03:20:27 +0000 |
commit | f8d630a0fa5dfdbf64ab875372fe83a3742926dc (patch) | |
tree | 5447a3decc4560c2aeefd4611ea4cc78f802f605 /Makefile.common | |
parent | ddd575101d97d6167fd4a011e2d4f02c7afa9935 (diff) |
Fix clean command to clean in /shared when that is used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3449 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 60ce5f1f89..5770ada827 100644 --- a/Makefile.common +++ b/Makefile.common @@ -351,7 +351,7 @@ $(BUILD_ROOT)/Debug/%.o: %.cpp $(BUILD_ROOT)/Debug/.dir # Clean nukes the tree clean:: - rm -rf Debug Release Depend + rm -rf $(BUILD_ROOT)/Debug $(BUILD_ROOT)/Release $(BUILD_ROOT)/Depend rm -f core *.o *.d *.so *~ *.flc # If dependancies were generated for the file that included this file, |