fix: CI updates and bug fixes for CMake build (#1437)
[FMS.git] / .gitignore
blobc011342970893c70c927238cb2db49512261db0e
1 #***********************************************************************
2 #*                   GNU Lesser General Public License
3 #*
4 #* This file is part of the GFDL Flexible Modeling System (FMS).
5 #*
6 #* FMS is free software: you can redistribute it and/or modify it under
7 #* the terms of the GNU Lesser General Public License as published by
8 #* the Free Software Foundation, either version 3 of the License, or (at
9 #* your option) any later version.
11 #* FMS is distributed in the hope that it will be useful, but WITHOUT
12 #* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 #* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 #* for more details.
16 #* You should have received a copy of the GNU Lesser General Public
17 #* License along with FMS.  If not, see <http://www.gnu.org/licenses/>.
18 #***********************************************************************
19 # https://github.com/github/gitignore/blob/main/Fortran.gitignore
20 # github uses C++ template, this only includes what fms generates
22 *.a
23 *.o
24 *.mod
25 *.s
26 *.out
27 pathnames*
28 /*.zip
29 /*.tar.gz
30 *.swp
31 *.PC
32 *.so
33 core
35 Makefile
36 # From https://github.com/github/gitignore/blob/master/Autotools.gitignore
37 # http://www.gnu.org/software/automake
38 Makefile.in
39 /ar-lib
40 /mdate-sh
41 /py-compile
42 /test-driver
43 /ylwrap
44 *.log
45 *.trs
47 # http://www.gnu.org/software/autoconf
48 autom4te.cache
49 /autoscan.log
50 /autoscan-*.log
51 /aclocal.m4
52 /compile
53 /config.guess
54 /config.h.in
55 /config.log
56 /config.status
57 /config.sub
58 /configure
59 /configure.scan
60 /depcomp
61 /install-sh
62 /missing
63 /stamp-h1
64 .deps
66 # https://www.gnu.org/software/libtool/
67 libtool
68 /ltmain.sh
69 *.lo
70 *.la
71 .libs
73 # http://www.gnu.org/software/texinfo
74 /texinfo.tex
76 # http://www.gnu.org/software/m4/
77 m4/libtool.m4
78 m4/ltoptions.m4
79 m4/ltsugar.m4
80 m4/ltversion.m4
81 m4/lt~obsolete.m4
83 # ignore build and install trees (from cmake)
84 build*/
85 install*/
87 # https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
88 .vscode/
89 settings.json
90 # VS Code files for those working on multiple tools
91 .vscode/*
92 *.code-workspace
93 # Local History for Visual Studio Code
94 .history/