(file) Return to Makefile CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / WQL

File: [Pegasus] / pegasus / src / Pegasus / WQL / Makefile (download)
Revision: 1.3, Tue Dec 25 04:22:45 2001 UTC (22 years, 6 months ago) by mike
Branch: MAIN
CVS Tags: pre-meta-dispatcher, async_dispatcher, VERSION_1_09, VERSION_1_08, VERSION_1_07
Changes since 1.2: +1 -2 lines
Eliminated use of DYNAMIC_LIBRARIES in all makefiles (this variable is
now automatically generated from the LIBRARIES variable).

ROOT = ../../..

DIR = Pegasus/WQL

include $(ROOT)/mak/config.mak

LOCAL_DEFINES = -DPEGASUS_WQL_INTERNAL

EXTRA_INCLUDES = -Int_includes

LIBRARY = pegwql

LIBRARIES = pegcommon

SOURCES = \
    WQLSelectStatement.cpp \
    WQLYACC.cpp \
    WQLLEX.cpp \
    WQLSimplePropertySource.cpp \
    WQLPropertySource.cpp \
    WQLParserState.cpp \
    WQLOperation.cpp \
    WQLOperand.cpp \
    WQLParser.cpp

SOURCES_X = \
    WQLLEX.cpp \

include $(ROOT)/mak/library.mak

##------------------------------------------------------------------------------
##
## Rules to build LEX AND YACC sources:
##
## To make these files type: "make grammar"
##
##------------------------------------------------------------------------------


##
## This pushes BISON_SIMPLE into the environment so that bison will use this 
## rather than looking for /usr/local/share/bison.simple.
##

grammar: yacc_rule lex_rule

export BISON_SIMPLE = bison.simple

##
## Lex rule:
##
lex_rule:
	$(LEX) -oWQLLEX.cpp -PWQL_ WQL.l
	$(TOUCH) WQLLEX.cpp

##
## Yacc rule:
##
yacc_rule:
ifeq ($(YACC),yacc)
	$(YACC) -vd -p WQL_ WQL.y
	$(COPY) y.tab.c WQLYACC.cpp
	$(COPY) y.tab.h WQLYACC.h
	$(RM) y.tab.c y.tab.h
	$(TOUCH) WQLYACC.cpp WQLYACC.h
else
	$(YACC) -vd -oWQLtemp -p WQL_ WQL.y
	$(COPY) WQLtemp WQLYACC.cpp
	$(COPY) WQLtemp.h WQLYACC.h
	$(RM) WQLtemp WQLtemp.h WQLtemp.output wqltemp.out
	$(TOUCH) WQLYACC.cpp WQLYACC.h
endif

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2