2004-09-04 19:48:50 +00:00
|
|
|
##===- projects/Stacker/lib/compiler/Makefile --------------*- Makefile -*-===##
|
2003-11-23 17:52:55 +00:00
|
|
|
|
2004-10-28 01:25:28 +00:00
|
|
|
LEVEL := ../..
|
|
|
|
LIBRARYNAME := stkr_compiler
|
2006-04-12 20:55:23 +00:00
|
|
|
EXTRA_DIST := Lexer.cpp.cvs Lexer.l.cvs \
|
|
|
|
StackerParser.cpp.cvs StackerParser.h.cvs StackerParser.y.cvs
|
2006-07-07 00:20:39 +00:00
|
|
|
REQUIRES_EH := 1
|
2003-11-23 17:52:55 +00:00
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
|
|
|
ifdef PARSE_DEBUG
|
|
|
|
INCLUDES += -DPARSE_DEBUG
|
|
|
|
endif
|
2004-10-22 21:02:08 +00:00
|
|
|
|
2006-06-02 18:21:11 +00:00
|
|
|
# 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))
|
|
|
|
|
2005-08-27 18:50:39 +00:00
|
|
|
$(ObjDir)/Lexer.o : $(PROJ_SRC_DIR)/StackerParser.h
|
2006-08-25 17:15:23 +00:00
|
|
|
$(ObjDir)/StackerCompiler.o : $(PROJ_SRC_DIR)/StackerParser.h
|