2003-10-20 22:26:57 +00:00
|
|
|
##===- lib/VMCore/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 20:29:01 +00:00
|
|
|
LEVEL = ../..
|
2004-10-27 23:18:45 +00:00
|
|
|
LIBRARYNAME = LLVMCore
|
2005-08-14 15:14:34 +00:00
|
|
|
|
2006-03-09 19:55:06 +00:00
|
|
|
BUILT_SOURCES = $(LEVEL)/include/llvm/Intrinsics.gen
|
2006-03-09 19:53:27 +00:00
|
|
|
|
2005-08-14 15:14:34 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
ifeq ($(ARCH),Alpha)
|
2005-08-13 05:09:50 +00:00
|
|
|
BUILD_ARCHIVE = 1
|
2005-08-14 15:14:34 +00:00
|
|
|
endif
|
2005-08-13 05:09:50 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2006-03-09 20:29:41 +00:00
|
|
|
$(LEVEL)/include/llvm/Intrinsics.gen: $(LEVEL)/include/llvm/Intrinsics.td $(TBLGEN)
|
2006-03-13 17:57:31 +00:00
|
|
|
$(Echo) Building Intrinsics.gen from Intrinsics.td
|
2006-03-09 19:53:27 +00:00
|
|
|
$(Verb) $(TableGen) $< -o $@ -gen-intrinsic
|
|
|
|
|