* build also db

This commit is contained in:
peter 2000-09-01 22:02:10 +00:00
parent d711221036
commit aa583a3c0b
14 changed files with 229 additions and 133 deletions

View File

@ -6,20 +6,17 @@
units=db ddg_ds ddg_rec mysqldb
examples=testds createds mtest tested
[defaults]
defaultcpu=i386
[require]
options=-S2
packages=fcl mysql
[install]
unitsubdir=fcl
packagename=fcl
[dirs]
fpcdir=../..
targetdir=.
[libs]
libgcc=1
targetdir=../$(OS_TARGET)
[rules]
db$(PPUEXT): db.pp fields.inc dataset.inc dbs.inc

16
fcl/db/tests/Makefile.fpc Normal file
View File

@ -0,0 +1,16 @@
#
# Makefile.fpc for TDataSet Tests
#
[targets]
programs=testds createds mtest tested
[require]
options=-S2
packages=fcl mysql
[dirs]
fpcdir=../../..
[libs]
libgcc=1

View File

@ -66,7 +66,26 @@ begin
end.
{
$Log$
Revision 1.2 2000-07-13 11:32:56 michael
+ removed logs
Revision 1.1 2000-09-01 22:02:10 peter
* build also db
Revision 1.1 2000/07/13 06:31:27 michael
+ Initial import
Revision 1.6 2000/01/07 01:24:32 peter
* updated copyright to 2000
Revision 1.5 2000/01/06 01:20:32 peter
* moved out of packages/ back to topdir
Revision 1.1 2000/01/03 19:33:05 peter
* moved to packages dir
Revision 1.3 1999/11/11 17:31:09 michael
+ Added Checks for all simple field types.
+ Initial implementation of Insert/Append
Revision 1.2 1999/10/24 17:07:54 michael
+ Added copyright header
}

View File

@ -181,8 +181,23 @@ begin
end.
{
$Log$
Revision 1.2 2000-07-13 11:32:56 michael
+ removed logs
$Log$
Revision 1.1 2000-09-01 22:02:10 peter
* build also db
Revision 1.1 2000/07/13 06:31:27 michael
+ Initial import
Revision 1.5 2000/01/07 01:24:32 peter
* updated copyright to 2000
Revision 1.4 2000/01/06 01:20:32 peter
* moved out of packages/ back to topdir
Revision 1.1 2000/01/03 19:33:06 peter
* moved to packages dir
Revision 1.2 1999/10/24 17:07:54 michael
+ Added copyright header
}

View File

@ -178,7 +178,26 @@ begin
end.
{
$Log$
Revision 1.2 2000-07-13 11:32:56 michael
+ removed logs
Revision 1.1 2000-09-01 22:02:10 peter
* build also db
Revision 1.1 2000/07/13 06:31:28 michael
+ Initial import
Revision 1.6 2000/01/07 01:24:32 peter
* updated copyright to 2000
Revision 1.5 2000/01/06 01:20:32 peter
* moved out of packages/ back to topdir
Revision 1.1 2000/01/03 19:33:06 peter
* moved to packages dir
Revision 1.3 1999/11/11 17:31:09 michael
+ Added Checks for all simple field types.
+ Initial implementation of Insert/Append
Revision 1.2 1999/10/24 17:07:54 michael
+ Added copyright header
}

View File

@ -236,7 +236,35 @@ begin
end.
{
$Log$
Revision 1.2 2000-07-13 11:32:56 michael
+ removed logs
Revision 1.1 2000-09-01 22:02:10 peter
* build also db
Revision 1.1 2000/07/13 06:31:28 michael
+ Initial import
Revision 1.6 2000/01/07 01:24:32 peter
* updated copyright to 2000
Revision 1.5 2000/01/06 01:20:32 peter
* moved out of packages/ back to topdir
Revision 1.1 2000/01/03 19:33:06 peter
* moved to packages dir
Revision 1.3 1999/12/01 22:11:02 michael
+ tested edit and insert methods
Revision 1.2 1999/12/01 10:11:58 michael
+ test of insert works now
Revision 1.1 1999/11/14 19:26:17 michael
+ Initial implementation
Revision 1.3 1999/11/11 17:31:09 michael
+ Added Checks for all simple field types.
+ Initial implementation of Insert/Append
Revision 1.2 1999/10/24 17:07:54 michael
+ Added copyright header
}

View File

@ -3,7 +3,8 @@
#
[targets]
units=classes $(INCUNITS) $(XMLUNITS) $(SHEDITUNITS)
dirs=../xml ../shedit
units=classes $(INCUNITS)
rst=ssockets cachecls
[defaults]
@ -24,20 +25,16 @@ libname=fpfcl
fpcdir=../..
targetdir=.
incdir=$(INC)
sourcesdir=$(INC) $(XML) $(SHEDIT)
sourcesdir=$(INC)
[presettings]
# Include files
INC=../inc
XML=../xml
SHEDIT=../shedit
# INCUNITS,XMLUNITS is defined in makefile.inc
# INCUNITS is defined in makefile.inc
# They are default units for all platforms.
include $(INC)/Makefile.inc
include $(XML)/Makefile.inc
include $(SHEDIT)/Makefile.inc
[rules]
@ -46,6 +43,3 @@ classes$(PPUEXT): $(addprefix $(INC)/,$(INCNAMES)) classes$(PASEXT)
inifiles$(PPUEXT): classes$(PPUEXT) $(INC)/inifiles$(PASEXT)
ezcgi$(PPUEXT): $(INC)/ezcgi$(PASEXT)
shedit$(PPUEXT): $(SHEDIT)/shedit$(PASEXT)
$(COMPILER) $(SHEDIT)/shedit$(PASEXT) -I$(SHEDIT) $(REDIR)

View File

@ -3,7 +3,8 @@
#
[targets]
units=classes $(INCUNITS) $(XMLUNITS) $(SHEDITUNITS) process asyncio ssockets http
dirs=../db ../xml ../shedit
units=classes $(INCUNITS) process asyncio ssockets http
rst=ssockets cachecls
[defaults]
@ -25,20 +26,16 @@ libversion=1.0
fpcdir=../..
targetdir=.
incdir=$(INC)
sourcesdir=$(INC) $(XML) $(SHEDIT)
sourcesdir=$(INC)
[presettings]
# Include files
INC=../inc
XML=../xml
SHEDIT=../shedit
# INCUNITS,XMLUNITS is defined in makefile.inc
# INCUNITS is defined in makefile.inc
# They are default units for all platforms.
include $(INC)/Makefile.inc
include $(XML)/Makefile.inc
include $(SHEDIT)/Makefile.inc
[rules]
@ -48,7 +45,4 @@ inifiles$(PPUEXT): classes$(PPUEXT) $(INC)/inifiles$(PASEXT)
ezcgi$(PPUEXT): $(INC)/ezcgi$(PASEXT)
shedit$(PPUEXT): $(SHEDIT)/shedit$(PASEXT)
$(COMPILER) $(SHEDIT)/shedit$(PASEXT) -I$(SHEDIT) $(REDIR)
process$(PPUEXT): process$(PASEXT) process.inc

View File

@ -3,7 +3,8 @@
#
[targets]
units=classes $(INCUNITS) $(XMLUNITS) $(SHEDITUNITS)
dirs=../xml ../shedit
units=classes $(INCUNITS)
[defaults]
defaulttarget=os2
@ -15,8 +16,6 @@ packages=paszlib
[install]
unitsubdir=fcl
packagename=fcl
sourcesubdir=fcl
sourcetopdir=..
[libs]
libname=fpfcl
@ -25,20 +24,16 @@ libname=fpfcl
fpcdir=../..
targetdir=.
incdir=$(INC)
sourcesdir=$(INC) $(XML) $(SHEDIT)
sourcesdir=$(INC)
[presettings]
# Include files
INC=../inc
XML=../xml
SHEDIT=../shedit
# INCUNITS,XMLUNITS is defined in makefile.inc
# INCUNITS is defined in makefile.inc
# They are default units for all platforms.
include $(INC)/Makefile.inc
include $(XML)/Makefile.inc
include $(SHEDIT)/Makefile.inc
[rules]
@ -47,6 +42,3 @@ classes$(PPUEXT): $(addprefix $(INC)/,$(INCNAMES)) classes$(PASEXT)
inifiles$(PPUEXT): classes$(PPUEXT) $(INC)/inifiles$(PASEXT)
ezcgi$(PPUEXT): $(INC)/ezcgi$(PASEXT)
shedit$(PPUEXT): $(SHEDIT)/shedit$(PASEXT)
$(COMPILER) $(SHEDIT)/shedit$(PASEXT) -I$(SHEDIT) $(REDIR)

21
fcl/shedit/Makefile.fpc Normal file
View File

@ -0,0 +1,21 @@
#
# Makefile.fpc for XML for FCL
#
[targets]
units=doc_text shedit sh_xml sh_pas
[require]
options=-S2
packages=fcl
[install]
unitsubdir=fcl
packagename=fcl
[dirs]
fpcdir=../..
targetdir=../$(OS_TARGET)
[rules]
vpath %$(PPUEXT) $(UNITTARGETDIR)

View File

@ -1,6 +0,0 @@
#
# This makefile sets some needed variable, common to all targets
#
SHEDITUNITS=doc_text shedit sh_xml sh_pas

View File

@ -3,7 +3,8 @@
#
[targets]
units=classes $(INCUNITS) $(XMLUNITS) $(SHEDITUNITS) process fileinfo
dirs=../xml ../shedit
units=classes $(INCUNITS) process fileinfo
rst=ssockets cachecls
[defaults]
@ -24,20 +25,16 @@ libname=fpfcl
fpcdir=../..
targetdir=.
incdir=$(INC)
sourcesdir=$(INC) $(XML) $(SHEDIT)
sourcesdir=$(INC)
[presettings]
# Include files
INC=../inc
XML=../xml
SHEDIT=../shedit
# INCUNITS,XMLUNITS is defined in makefile.inc
# INCUNITS is defined in makefile.inc
# They are default units for all platforms.
include $(INC)/Makefile.inc
include $(XML)/Makefile.inc
include $(SHEDIT)/Makefile.inc
[rules]
@ -47,7 +44,4 @@ inifiles$(PPUEXT): classes$(PPUEXT) $(INC)/inifiles$(PASEXT)
ezcgi$(PPUEXT): $(INC)/ezcgi$(PASEXT)
shedit$(PPUEXT): $(SHEDIT)/shedit$(PASEXT)
$(COMPILER) $(SHEDIT)/shedit$(PASEXT) -I$(SHEDIT) $(REDIR)
process$(PPUEXT): process$(PASEXT) process.inc

18
fcl/xml/Makefile.fpc Normal file
View File

@ -0,0 +1,18 @@
#
# Makefile.fpc for XML for FCL
#
[targets]
units=dom htmldoc xmlcfg xmlread xmlstreaming xmlwrite
[require]
options=-S2
packages=fcl
[install]
unitsubdir=fcl
packagename=fcl
[dirs]
fpcdir=../..
targetdir=../$(OS_TARGET)

View File

@ -1,5 +0,0 @@
#
# This makefile sets some needed variable, common to all targets
#
XMLUNITS=dom xmlread xmlwrite xmlcfg xmlstreaming