[llvm-commits] CVS: llvm/Makefile
Reid Spencer
reid at x10sys.com
Tue Oct 26 00:05:20 PDT 2004
Changes in directory llvm:
Makefile updated: 1.32 -> 1.33
---
Log message:
Reduce the number of EXTRA_DIST files since Makefile.rules now handles the
autoconf directory automagically.
---
Diffs of the changes: (+10 -6)
Index: llvm/Makefile
diff -u llvm/Makefile:1.32 llvm/Makefile:1.33
--- llvm/Makefile:1.32 Mon Oct 25 03:27:37 2004
+++ llvm/Makefile Tue Oct 26 02:05:09 2004
@@ -15,17 +15,21 @@
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)
More information about the llvm-commits
mailing list