blob: 7b2a365f973711086a347be07a1673079591d0b5 [file] [log] [blame]
Daniel Dunbarafed0992010-06-08 20:34:18 +00001##===- Makefile --------------------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9
10# If CLANG_LEVEL is not set, then we are the top-level Makefile. Otherwise, we
11# are being included from a subdirectory makefile.
12
13ifndef CLANG_LEVEL
14
15IS_TOP_LEVEL := 1
16CLANG_LEVEL := .
Daniel Dunbar073777f2009-03-24 03:00:12 +000017DIRS := include lib tools docs
Reid Spencer5f016e22007-07-11 17:01:13 +000018
Daniel Dunbar297b0832009-11-15 00:22:33 +000019PARALLEL_DIRS :=
20
21ifeq ($(BUILD_EXAMPLES),1)
22 PARALLEL_DIRS += examples
23endif
Daniel Dunbarafed0992010-06-08 20:34:18 +000024endif
Daniel Dunbar297b0832009-11-15 00:22:33 +000025
Daniel Dunbarafed0992010-06-08 20:34:18 +000026###
27# Common Makefile code, shared by all Clang Makefiles.
28
29# Set LLVM source root level.
30LEVEL := $(CLANG_LEVEL)/../..
31
32# Include LLVM common makefile.
Reid Spencer5f016e22007-07-11 17:01:13 +000033include $(LEVEL)/Makefile.common
34
Daniel Dunbarafed0992010-06-08 20:34:18 +000035###
36# Clang Top Level specific stuff.
37
38ifeq ($(IS_TOP_LEVEL),1)
39
Mike Stumpadc981a2009-01-20 21:10:41 +000040ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
Daniel Dunbara9829ae2009-12-21 23:28:06 +000041$(RecursiveTargets)::
Mike Stumpadc981a2009-01-20 21:10:41 +000042 $(Verb) if [ ! -f test/Makefile ]; then \
43 $(MKDIR) test; \
44 $(CP) $(PROJ_SRC_DIR)/test/Makefile test/Makefile; \
45 fi
46endif
47
Reid Spencer5f016e22007-07-11 17:01:13 +000048test::
Kovarththanan Rajaratnam61736b42010-03-18 13:56:20 +000049 @ $(MAKE) -C test
Gabor Greifab72ffe2008-03-18 06:14:16 +000050
51report::
Chris Lattner9d294b92008-04-06 22:32:01 +000052 @ $(MAKE) -C test report
Reid Spencer5f016e22007-07-11 17:01:13 +000053
54clean::
Chris Lattner9d294b92008-04-06 22:32:01 +000055 @ $(MAKE) -C test clean
Gabor Greif5267d7c2008-03-20 14:28:22 +000056
Mike Stump8ba82b32009-02-12 02:25:47 +000057tags::
Kovarththanan Rajaratnam61736b42010-03-18 13:56:20 +000058 $(Verb) etags `find . -type f -name '*.h' -or -name '*.cpp' | \
59 grep -v /lib/Headers | grep -v /test/`
Mike Stump8ba82b32009-02-12 02:25:47 +000060
Daniel Dunbar432eeec2009-03-18 05:59:14 +000061cscope.files:
Daniel Dunbar073777f2009-03-24 03:00:12 +000062 find tools lib include -name '*.cpp' \
Daniel Dunbar432eeec2009-03-18 05:59:14 +000063 -or -name '*.def' \
64 -or -name '*.td' \
65 -or -name '*.h' > cscope.files
66
67.PHONY: test report clean cscope.files
Daniel Dunbarafed0992010-06-08 20:34:18 +000068
69endif