2003-10-21 00:26:57 +02:00
|
|
|
##===- ./Makefile ------------------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2001-06-06 22:29:01 +02:00
|
|
|
LEVEL = .
|
2003-10-05 21:28:27 +02:00
|
|
|
DIRS = lib/Support utils lib tools runtime
|
2003-06-11 15:55:44 +02:00
|
|
|
OPTIONAL_DIRS = projects
|
2001-06-06 22:29:01 +02:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
|
|
|
test :: all
|
|
|
|
cd test; $(MAKE)
|
2003-08-12 20:51:51 +02:00
|
|
|
|
|
|
|
distclean:: clean
|
|
|
|
$(VERB) $(RM) -rf $(LEVEL)/Makefile.config \
|
|
|
|
$(LEVEL)/include/Config/config.h \
|
|
|
|
$(LEVEL)/autoconf/autom4te.cache \
|
|
|
|
$(LEVEL)/config.log \
|
|
|
|
$(LEVEL)/TAGS
|
|
|
|
|
2003-10-21 20:08:10 +02:00
|
|
|
tools-only:
|
|
|
|
@for dir in lib/Support utils lib tools; do $(MAKE) -C $$dir; done
|
|
|
|
|
2003-10-08 01:44:10 +02:00
|
|
|
configure: autoconf/configure.ac autoconf/aclocal.m4
|
2004-01-13 08:09:56 +01:00
|
|
|
cd autoconf && aclocal && autoconf -o ../configure configure.ac
|
2003-10-07 19:12:11 +02:00
|
|
|
|
2003-10-08 01:44:10 +02:00
|
|
|
include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4
|
2004-01-13 08:09:56 +01:00
|
|
|
autoheader -I autoconf autoconf/configure.ac
|
2003-10-08 01:44:10 +02:00
|
|
|
|
2003-12-10 19:41:20 +01:00
|
|
|
# Install support for llvm include files.
|
|
|
|
|
|
|
|
.PHONY: install-includes
|
|
|
|
|
|
|
|
install-includes:
|
|
|
|
$(MKDIR) $(includedir)/llvm
|
|
|
|
cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(includedir)/llvm
|
|
|
|
|
|
|
|
install:: install-includes
|
|
|
|
|