2003-10-21 00:26:57 +02:00
|
|
|
##===- lib/AsmParser/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
|
|
|
|
2005-02-01 02:47:12 +01:00
|
|
|
LEVEL = ../..
|
2004-10-28 02:43:24 +02:00
|
|
|
LIBRARYNAME := LLVMAsmParser
|
|
|
|
BUILT_SOURCES := llvmAsmParser.cpp llvmAsmParser.h Lexer.cpp
|
2001-06-06 22:29:01 +02:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2003-06-30 23:59:07 +02:00
|
|
|
#
|
2004-10-28 02:43:24 +02:00
|
|
|
# Make the object code file for the lexer depend upon the header file generated
|
|
|
|
# by the Bison parser. This prevents the Lexer from being compiled before the
|
|
|
|
# header file it needs is built.
|
|
|
|
$(OBJDIR)/Lexer.o: llvmAsmParser.h
|