1 ##===- lib/AsmParser/Makefile ------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
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.
8 ##===----------------------------------------------------------------------===##
11 LIBRARYNAME
:= LLVMAsmParser
13 EXTRA_DIST
:= Lexer.
cpp.cvs Lexer.l.cvs \
14 llvmAsmParser.
cpp.cvs llvmAsmParser.h.cvs llvmAsmParser.y.cvs
16 include $(LEVEL
)/Makefile.common
18 # Disable -pedantic for this library, as bison output isn't necessarily
20 CompileCommonOpts
:= $(filter-out -pedantic
,$(CompileCommonOpts
))
21 CompileCommonOpts
:= $(filter-out -Wno-long-long
,$(CompileCommonOpts
))
24 # Make the object code file for the lexer depend upon the header file generated
25 # by the Bison parser. This prevents the Lexer from being compiled before the
26 # header file it needs is built.
27 $(ObjDir
)/Lexer.o
: $(PROJ_SRC_DIR
)/llvmAsmParser.h