Add .gitignore files to the makeBase{App,Ext} templates

This commit is contained in:
Andrew Johnson
2022-09-01 12:56:35 -05:00
parent a8e8d22c31
commit ede35aa152
4 changed files with 51 additions and 0 deletions

View File

@ -5,6 +5,7 @@ include $(TOP)/configure/CONFIG
TEMPLATES_DIR = makeBaseApp
TEMPLATES += top/Makefile
TEMPLATES += top/.gitignore
TEMPLATES += top/configure/CONFIG
TEMPLATES += top/configure/CONFIG_SITE
TEMPLATES += top/configure/Makefile

29
src/template/base/top/.gitignore vendored Normal file
View File

@ -0,0 +1,29 @@
# Install directories
/bin/
/cfg/
/db/
/dbd/
/html/
/include/
/lib/
/templates/
# Local configuration files
/configure/*.local
# iocBoot generated files
/iocBoot/*ioc*/cdCommands
/iocBoot/*ioc*/dllPath.bat
/iocBoot/*ioc*/envPaths
/iocBoot/*ioc*/relPaths.sh
# Build directories
O.*/
# Common files created by other tools
/QtC-*
/.vscode/
*.orig
*.log
.*.swp
.DS_Store

View File

@ -5,6 +5,7 @@ include $(TOP)/configure/CONFIG
TEMPLATES_DIR = makeBaseExt
TEMPLATES += top/Makefile
TEMPLATES += top/.gitignore
TEMPLATES += top/README
TEMPLATES += top/configure/CONFIG
TEMPLATES += top/configure/CONFIG_SITE

20
src/template/ext/top/.gitignore vendored Normal file
View File

@ -0,0 +1,20 @@
# Install directories
/bin/
/cfg/
/html/
/include/
/lib/
# Local configuration files
/configure/*.local
# Build directories
O.*/
# Common files created by other tools
/QtC-*
/.vscode/
*.orig
*.log
.*.swp
.DS_Store