Remove the use of LLVMGCCARCH. Instead, query the compiler for the
[oota-llvm.git] / Makefile
1 ##===- ./Makefile ------------------------------------------*- Makefile -*-===##
2
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
7
8 ##===----------------------------------------------------------------------===##
9 LEVEL = .
10 DIRS = lib/Support utils lib tools runtime
11 OPTIONAL_DIRS = projects
12
13 include $(LEVEL)/Makefile.common
14
15 test :: all
16         cd test; $(MAKE)
17
18 distclean:: clean
19         $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \
20                           $(LEVEL)/include/Config/config.h \
21                           $(LEVEL)/autoconf/autom4te.cache \
22                           $(LEVEL)/config.log \
23                           $(LEVEL)/TAGS
24
25 tools-only:
26         @for dir in lib/Support utils lib tools; do $(MAKE) -C $$dir; done
27
28 configure: autoconf/configure.ac autoconf/aclocal.m4
29         cd autoconf && aclocal && autoconf -o ../configure configure.ac
30
31 include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4
32         autoheader -I autoconf autoconf/configure.ac
33
34 # Install support for llvm include files.
35
36 .PHONY: install-includes
37
38 install-includes:
39         $(MKDIR) $(includedir)/llvm
40         cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(includedir)/llvm
41
42 install:: install-includes
43