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 = .
|
2004-02-04 00:05:24 +01:00
|
|
|
DIRS = lib/Support utils lib tools
|
2003-06-11 15:55:44 +02:00
|
|
|
OPTIONAL_DIRS = projects
|
2001-06-06 22:29:01 +02:00
|
|
|
|
2004-02-04 00:05:24 +01:00
|
|
|
ifneq ($(MAKECMDGOALS),tools-only)
|
|
|
|
DIRS += runtime
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
|
2004-02-03 23:56:40 +01:00
|
|
|
tools-only: all
|
2003-10-21 20:08:10 +02:00
|
|
|
|
2004-01-22 22:54:51 +01:00
|
|
|
# Install support for llvm include files:
|
2003-12-10 19:41:20 +01:00
|
|
|
.PHONY: install-includes
|
|
|
|
|
|
|
|
install-includes:
|
|
|
|
$(MKDIR) $(includedir)/llvm
|
2004-01-22 00:28:03 +01:00
|
|
|
cd include && find * '!' '(' -name '*~' -o -name .cvsignore ')' -print | grep -v CVS | pax -rwdvpe $(DESTDIR)$(includedir)/llvm
|
2003-12-10 19:41:20 +01:00
|
|
|
|
|
|
|
install:: install-includes
|
|
|
|
|
2004-01-22 22:54:51 +01:00
|
|
|
# Build tags database for Emacs/Xemacs:
|
|
|
|
.PHONY: tags
|
|
|
|
|
|
|
|
TAGS: tags
|
|
|
|
|
|
|
|
all:: tags
|
|
|
|
|
|
|
|
tags:
|
|
|
|
$(ETAGS) $(ETAGSFLAGS) `find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h'`
|
|
|
|
|