diff --git a/src/makeBaseApp/top/exampleApp/Db/Makefile b/src/makeBaseApp/top/exampleApp/Db/Makefile index 5bcb6dd83..68a293502 100644 --- a/src/makeBaseApp/top/exampleApp/Db/Makefile +++ b/src/makeBaseApp/top/exampleApp/Db/Makefile @@ -8,22 +8,19 @@ include $(TOP)/configure/CONFIG #DB_OPT = YES #---------------------------------------------------- -# Optimization needs the name of the appropriate -# dbd file (compare with ../src/Makefile.Vx) -#DBDNAME = exampleApp.dbd +# Create and install (or just install) dbd files +# .dbd will be created from Include.dbd +#DBD += example.dbd #---------------------------------------------------- -# Add databases, templates, substitutions like this +# Create and install (or just install) +# databases, templates, substitutions like this DB += dbExample1.db dbExample2.db #---------------------------------------------------- # Declare template files which do not show up in DB #USES_TEMPLATE += dbExample2.template -#---------------------------------------------------- -# The following line is for local dbd expansion -#DBDEXPAND = exampleInclude.dbd - -include $(TOP)/configure/RULES.Db +include $(TOP)/configure/RULES #---------------------------------------- # ADD RULES AFTER THIS LINE diff --git a/src/makeBaseApp/top/simpleApp/Db/Makefile b/src/makeBaseApp/top/simpleApp/Db/Makefile index ffe017479..14f5573de 100644 --- a/src/makeBaseApp/top/simpleApp/Db/Makefile +++ b/src/makeBaseApp/top/simpleApp/Db/Makefile @@ -9,9 +9,8 @@ include $(TOP)/configure/CONFIG #DB_OPT = YES #---------------------------------------------------- -# Optimization needs the name of the appropriate -# dbd file (compare with ../src/Makefile.Vx) -#DBDNAME = _APPNAME_.dbd +# Creation of .dbd file from Include.dbd +#DBDNAME += _APPNAME_.dbd #---------------------------------------------------- # Add databases, templates, substitutions like this @@ -21,10 +20,6 @@ include $(TOP)/configure/CONFIG # Declare template files which do not show up in DB #USES_TEMPLATE += _APPNAME_.template -#---------------------------------------------------- -# The following lines are for local dbd expansion -#DBDEXPAND = _APPNAME_Include.dbd - -include $(TOP)/configure/RULES.Db +include $(TOP)/configure/RULES #---------------------------------------- # ADD RULES AFTER THIS LINE