summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-08-12 18:51:51 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-08-12 18:51:51 +0000
commitd741bcfa1612e418216450b1893bb0763341f24d (patch)
tree881710234460ee1bea2b3efc4cd65dbae465c8df /Makefile
parent8ab1ef265a6547ab13c10a26c994610bd3ad9d9e (diff)
downloadllvm-d741bcfa1612e418216450b1893bb0763341f24d.tar.gz
llvm-d741bcfa1612e418216450b1893bb0763341f24d.tar.bz2
llvm-d741bcfa1612e418216450b1893bb0763341f24d.tar.xz
Merged in changes between PRE11_ROOT and LLVM_PRE111 (i.e. the beginning of
the pre-release 1.1 branch and pre-release 1.1.1). Made the USE_SPEC option work. Silenced unnecessary error output from the cmp command when checking for updates to lex/yacc generated files. This fixes a problem where we get error messages the first time the file is generated. Fixed the distclean option. It is now in the Makefile (i.e. only runs in the top level source directory), removes more files, and plays nicely with external project Makefiles. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7780 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6f31665eb6..b7824d5060 100644
--- a/Makefile
+++ b/Makefile
@@ -6,3 +6,11 @@ include $(LEVEL)/Makefile.common
test :: all
cd test; $(MAKE)
+
+distclean:: clean
+ $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \
+ $(LEVEL)/include/Config/config.h \
+ $(LEVEL)/autoconf/autom4te.cache \
+ $(LEVEL)/config.log \
+ $(LEVEL)/TAGS
+