summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-26 07:05:09 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-26 07:05:09 +0000
commit90c29494121e3a4cefb5cae5d272178bbc49d3a9 (patch)
tree53037328cc01126f11aa350264390c34c831d396 /Makefile
parente817154d4b7e19b9f3d47194ca105b6e9673ff90 (diff)
downloadllvm-90c29494121e3a4cefb5cae5d272178bbc49d3a9.tar.gz
llvm-90c29494121e3a4cefb5cae5d272178bbc49d3a9.tar.bz2
llvm-90c29494121e3a4cefb5cae5d272178bbc49d3a9.tar.xz
Reduce the number of EXTRA_DIST files since Makefile.rules now handles the
autoconf directory automagically. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17249 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 10 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 64cef1643b..c11e7946cd 100644
--- a/Makefile
+++ b/Makefile
@@ -15,17 +15,21 @@ DIRS += runtime
OPTIONAL_DIRS = examples projects
endif
-EXTRA_DIST := llvm.spec include configure \
- autoconf/AutoRegen.sh autoconf/LICENSE.TXT autoconf/README.TXT \
- autoconf/aclocal.m4 autoconf/config.guess autoconf/config.sub \
- autoconf/configure.ac autoconf/depcomp autoconf/install-sh \
- autoconf/ltmain.sh autoconf/missing autoconf/mkinstalldirs \
- autoconf/m4
+EXTRA_DIST := test llvm.spec include
+
include $(LEVEL)/Makefile.common
dist-hook::
@$(ECHO) Eliminating CVS directories from distribution
$(VERB) rm -rf `find $(TopDistDir) -type d -name CVS -print`
+ @$(ECHO) Eliminating files constructed by configure
+ $(VERB) rm -f \
+ $(TopDistDir)/include/llvm/ADT/hash_map \
+ $(TopDistDir)/include/llvm/ADT/hash_set \
+ $(TopDistDir)/include/llvm/ADT/iterator \
+ $(TopDistDir)/include/llvm/Config/config.h \
+ $(TopDistDir)/include/llvm/Support/DataTypes.h \
+ $(TopDistDir)/include/llvm/Support/ThreadSupport.h
test :: all
cd test; $(MAKE)