(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.10, Mon Aug 9 22:29:58 2004 UTC (19 years, 10 months ago) by kumpf
Branch: MAIN
CVS Tags: CQL_2_5_BRANCH
Changes since 1.9: +4 -4 lines
BUG#: 1772
TITLE: [HP-SK] All command line parameters in Makefiles should be enclosed in double quotes

DESCRIPTION: OpenVMS requires MAKE parameters that need to maintain case (mixed or upper) to be enclosed in double quotes.  This should NOT affect any other O/S. This change also fixes Bug # 1773 (Use of echo in makefiles should use ECHO Macro).

ROOT = ../../..

DIR = Pegasus/WQL

include $(ROOT)/mak/config.mak

LOCAL_DEFINES = -DPEGASUS_WQL_INTERNAL -DPEGASUS_INTERNALONLY

ifneq ($(OS), HPUX) 
  ifndef PEGASUS_LSB
	EXTRA_INCLUDES = -Int_includes
  endif
endif

LIBRARY = pegwql

LIBRARIES = \
   pegcommon

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

SOURCES_X = \
    WQLLEX.cpp \

include $(ROOT)/mak/library.mak
include $(ROOT)/mak/install.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