2004-04-24 00:10:56 +00:00
|
|
|
#===- ./Makefile -------------------------------------------*- Makefile -*--===#
|
2003-10-20 22:26:57 +00:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
2004-04-24 00:10:56 +00:00
|
|
|
#===------------------------------------------------------------------------===#
|
2001-06-06 20:29:01 +00:00
|
|
|
LEVEL = .
|
2004-08-29 19:33:21 +00:00
|
|
|
DIRS = lib/System lib/Support utils lib tools
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2004-10-25 08:27:37 +00:00
|
|
|
|
2004-02-03 23:05:24 +00:00
|
|
|
ifneq ($(MAKECMDGOALS),tools-only)
|
|
|
|
DIRS += runtime
|
2004-08-24 16:32:21 +00:00
|
|
|
OPTIONAL_DIRS = examples projects
|
2004-02-03 23:05:24 +00:00
|
|
|
endif
|
|
|
|
|
2004-10-26 07:05:09 +00:00
|
|
|
EXTRA_DIST := test llvm.spec include
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2004-10-25 08:27:37 +00:00
|
|
|
dist-hook::
|
2004-10-30 09:19:36 +00:00
|
|
|
$(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 \
|
2004-10-26 07:05:09 +00:00
|
|
|
$(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
|
2004-10-25 08:27:37 +00:00
|
|
|
|
2004-10-30 09:19:36 +00:00
|
|
|
check ::
|
|
|
|
cd test; $(MAKE)
|
2003-08-12 18:51:51 +00:00
|
|
|
|
2004-02-03 22:56:40 +00:00
|
|
|
tools-only: all
|
2004-11-07 04:59:52 +00:00
|
|
|
|
|
|
|
check-dejagnu:
|
2004-11-08 05:44:05 +00:00
|
|
|
$(MAKE) -C test check-dejagnu TESTSUITE=$(TESTSUITE)
|