View | Details | Raw Unified | Return to issue 10820
Collapse All | Expand All

(-)connectivity/inc/connectivity/sqlparse.hxx (-1 / +1 lines)
Lines 74-80 Link Here
74
#ifndef FLEX_SCANNER
74
#ifndef FLEX_SCANNER
75
#ifndef BISON_INCLUDED
75
#ifndef BISON_INCLUDED
76
#define BISON_INCLUDED
76
#define BISON_INCLUDED
77
#include <connectivity/sqlbison.hxx>
77
#include <sqlbison.hxx>
78
#endif
78
#endif
79
#endif
79
#endif
80
#endif
80
#endif
(-)connectivity/prj/d.lst (-1 / +1 lines)
Lines 21-27 Link Here
21
mkdir: %_DEST%\inc%_EXT%\connectivity\sdbcx
21
mkdir: %_DEST%\inc%_EXT%\connectivity\sdbcx
22
22
23
hedabu: ..\inc\connectivity\*.hxx %_DEST%\inc%_EXT%\connectivity\*.hxx
23
hedabu: ..\inc\connectivity\*.hxx %_DEST%\inc%_EXT%\connectivity\*.hxx
24
hedabu: ..\%__SRC%\inc\connectivity\sqlbison.hxx %_DEST%\inc%_EXT%\connectivity\sqlbison.hxx
24
hedabu: ..\%__SRC%\inc\sqlbison.hxx %_DEST%\inc%_EXT%\connectivity\sqlbison.hxx
25
hedabu: ..\inc\connectivity\sdbcx\*.hxx %_DEST%\inc%_EXT%\connectivity\sdbcx\*.hxx
25
hedabu: ..\inc\connectivity\sdbcx\*.hxx %_DEST%\inc%_EXT%\connectivity\sdbcx\*.hxx
26
26
27
27
(-)connectivity/source/parse/makefile.mk (-15 / +9 lines)
Lines 2-10 Link Here
2
#
2
#
3
#   $RCSfile: makefile.mk,v $
3
#   $RCSfile: makefile.mk,v $
4
#
4
#
5
#   $Revision: 1.8.20.1 $
5
#   $Revision: 1.8.20.1.2.1 $
6
#
6
#
7
#   last change: $Author: vg $ $Date: 2002/08/27 13:10:23 $
7
#   last change: $Author: armin $ $Date: 2002/10/18 16:14:53 $
8
#
8
#
9
#   The Contents of this file are made available subject to the terms of
9
#   The Contents of this file are made available subject to the terms of
10
#   either of the following licenses
10
#   either of the following licenses
Lines 67-78 Link Here
67
67
68
# --- Settings -----------------------------------------------------
68
# --- Settings -----------------------------------------------------
69
69
70
.INCLUDE :  svpre.mk
71
.INCLUDE :  settings.mk
70
.INCLUDE :  settings.mk
72
.INCLUDE :  sv.mk
73
71
74
# --- Files --------------------------------------------------------
72
# --- Files --------------------------------------------------------
75
73
74
YACCTARGET= $(MISC)$/sqlbison.cxx
75
YACCFILES= sqlbison.y
76
YACCFLAGS=-v -d -l -pSQLyy -bsql -o
77
76
SLOFILES =  \
78
SLOFILES =  \
77
		$(SLO)$/sqlNoException.obj	\
79
		$(SLO)$/sqlNoException.obj	\
78
		$(SLO)$/sqlbison.obj		\
80
		$(SLO)$/sqlbison.obj		\
Lines 92-107 Link Here
92
94
93
.INCLUDE :  target.mk
95
.INCLUDE :  target.mk
94
96
95
$(MISC)$/sqlflex.cxx:	sqlflex.l
97
$(MISC)$/%.cxx:	%.l
96
	+flex -i -8 -PSQLyy -L -o$(MISC)$/sqlflex.cxx sqlflex.l
98
	+flex -i -8 -PSQLyy -L -o$(MISC)$/sqlflex.cxx sqlflex.l
97
99
98
$(MISC)$/sqlbison.cxx: sqlbison.y
100
$(INCCOM)$/sqlbison.hxx : $(YACCTARGET)
99
	+bison -v -d -pSQLyy -l -bsql -o$(MISC)$/sqlbison.cxx sqlbison.y
101
$(EXCEPTIONSFILES) : $(INCCOM)$/sqlbison.hxx
100
	-$(MKDIR) $(OUT)$/inc$/connectivity
101
	+$(COPY) $(MISC)$/sqlbison.cxx.h $(OUT)$/inc$/connectivity$/sqlbison.hxx
102
103
$(SLO)$/sqlbison.obj : $(MISC)$/sqlbison.cxx
104
105
$(SLO)$/sqlflex.obj : $(MISC)$/sqlflex.cxx
106
107
sqliterator.cxx:	$(MISC)$/sqlbison.cxx
(-)connectivity/source/parse/sqlflex.l (-1 / +1 lines)
Lines 38-44 Link Here
38
#define SQLYYDEBUG 1
38
#define SQLYYDEBUG 1
39
#endif
39
#endif
40
40
41
#include "connectivity/sqlbison.hxx"
41
#include "sqlbison.hxx"
42
#endif
42
#endif
43
#ifndef _CONNECTIVITY_SQLSCAN_HXX
43
#ifndef _CONNECTIVITY_SQLSCAN_HXX
44
#include "sqlscan.hxx"
44
#include "sqlscan.hxx"
(-)connectivity/source/parse/sqlnode.cxx (-1 / +1 lines)
Lines 69-75 Link Here
69
#define YYBISON	  1
69
#define YYBISON	  1
70
#ifndef BISON_INCLUDED
70
#ifndef BISON_INCLUDED
71
#define BISON_INCLUDED
71
#define BISON_INCLUDED
72
#include <connectivity/sqlbison.hxx>
72
#include <sqlbison.hxx>
73
#endif
73
#endif
74
#ifndef _CONNECTIVITY_SQLPARSE_HXX
74
#ifndef _CONNECTIVITY_SQLPARSE_HXX
75
#include <connectivity/sqlparse.hxx>
75
#include <connectivity/sqlparse.hxx>

Return to issue 10820