Add a new interface
[oota-llvm.git] / Makefile
index ae3ffa2a52e2abc02974645614000ae2301f9da5..d2a4fbf0224f7bbe84d100d26cc62f4ca0e0832d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,39 +14,39 @@ DIRS += runtime
 OPTIONAL_DIRS = examples projects
 endif
 
-include $(LEVEL)/Makefile.common
+EXTRA_DIST := test llvm.spec include
 
-test :: all
-       cd test; $(MAKE)
+include $(LEVEL)/Makefile.common
 
-distclean:: clean
-       $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \
-                         $(LEVEL)/include/llvm/Config/config.h \
-                         $(LEVEL)/autoconf/autom4te.cache \
-                         $(LEVEL)/config.log \
-                         $(LEVEL)/TAGS
+.PHONY: debug-opt-prof
+debug-opt-prof:
+       $(Echo) Building Debug Version
+       $(Verb) $(MAKE)
+       $(Echo)
+       $(Echo) Building Optimized Version
+       $(Echo)
+       $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
+       $(Echo)
+       $(Echo) Building Profiling Version
+       $(Echo)
+       $(Verb) $(MAKE) ENABLE_PROFILING=1
+
+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
+
+check :: 
+       cd test; $(MAKE) 
 
 tools-only: all
 
-# Install support for llvm include files:
-.PHONY: install-includes
-
-install-includes:
-       $(MKDIR) $(DESTDIR)$(includedir)/llvm
-       cd include && find * -path '*/Internal' -prune -o '(' '!' '(' -name '*~' -o -name .cvsignore ')' -print ')' | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm
-ifneq ($(BUILD_SRC_ROOT),$(BUILD_OBJ_ROOT))
-       cd $(BUILD_SRC_ROOT)/include && find * -path '*/Internal' -prune -o '(' '!' '(' -name '*~' -o -name .cvsignore ')' -print ')' | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm
-endif
-
-install:: install-includes
-
-# Build tags database for Emacs/Xemacs:
-.PHONY: tags
-
-TAGS: tags
-
-all::
-
-tags:
-       find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h' | $(ETAGS) $(ETAGSFLAGS) -
-
+check-dejagnu:
+       $(MAKE) -C test check-dejagnu TESTSUITE=$(TESTSUITE)