2004-04-24 02:10:56 +02:00
|
|
|
#===- ./Makefile -------------------------------------------*- Makefile -*--===#
|
2003-10-21 00:26:57 +02: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 02:10:56 +02:00
|
|
|
#===------------------------------------------------------------------------===#
|
2001-06-06 22:29:01 +02:00
|
|
|
LEVEL = .
|
2004-08-29 21:33:21 +02:00
|
|
|
DIRS = lib/System lib/Support utils lib tools
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2004-10-25 10:27:37 +02:00
|
|
|
|
2004-02-04 00:05:24 +01:00
|
|
|
ifneq ($(MAKECMDGOALS),tools-only)
|
|
|
|
DIRS += runtime
|
2004-08-24 18:32:21 +02:00
|
|
|
OPTIONAL_DIRS = examples projects
|
2004-02-04 00:05:24 +01:00
|
|
|
endif
|
|
|
|
|
2004-10-26 09:05:09 +02:00
|
|
|
EXTRA_DIST := test llvm.spec include
|
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2004-10-25 10:27:37 +02:00
|
|
|
dist-hook::
|
|
|
|
@$(ECHO) Eliminating CVS directories from distribution
|
|
|
|
$(VERB) rm -rf `find $(TopDistDir) -type d -name CVS -print`
|
2004-10-26 09:05:09 +02:00
|
|
|
@$(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
|
2004-10-25 10:27:37 +02:00
|
|
|
|
2001-06-06 22:29:01 +02:00
|
|
|
test :: all
|
|
|
|
cd test; $(MAKE)
|
2003-08-12 20:51:51 +02:00
|
|
|
|
2004-02-03 23:56:40 +01:00
|
|
|
tools-only: all
|