mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-11 21:38:46 +00:00
![Chris Lattner](/assets/img/avatar_default.png)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29032 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
622 B
Makefile
21 lines
622 B
Makefile
##===- projects/Stacker/lib/compiler/Makefile --------------*- Makefile -*-===##
|
|
|
|
LEVEL := ../..
|
|
LIBRARYNAME := stkr_compiler
|
|
EXTRA_DIST := Lexer.cpp.cvs Lexer.l.cvs \
|
|
StackerParser.cpp.cvs StackerParser.h.cvs StackerParser.y.cvs
|
|
REQUIRES_EH := 1
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
ifdef PARSE_DEBUG
|
|
INCLUDES += -DPARSE_DEBUG
|
|
endif
|
|
|
|
# Disable -pedantic for this library, as bison output isn't necessarily
|
|
# -pedantic clean.
|
|
CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts))
|
|
CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
|
|
|
|
$(ObjDir)/Lexer.o : $(PROJ_SRC_DIR)/StackerParser.h
|