-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
108 lines (97 loc) · 2.42 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#########################################################################
# #
# File ID: ./.gitignore #
# Author: Copyright (C) 2015-2019, 2021-2023 Mark Grant #
# #
# This file is maintained in the project at:- #
# https://github.com/m-grant-prg/project-misc #
# new versions are merely copied to consumer projects. #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# N.B. #
# If a file pattern to be ignored can only exist in a specific #
# subdirectory, please add it to a gitignore file in that subdirectory. #
# #
# N.B. #
# After changes to any gitignore file please run #
# 'git ls-files -i --exclude-standard' #
# to determine if any tracked files are now ignored. #
# #
#########################################################################
#########################################################################
# #
# Changelog #
# #
# Date Author Version Description #
# #
# 07/06/2019 MG 1.0.1 Initial release. #
# 16/06/2019 MG 1.0.2 Add test-driver which is auto-generated #
# when make check is setup and TESTS run. #
# 18/07/2021 MG 1.0.3 Add ctags. #
# Refine AutoTools section. #
# 27/09/2021 MG 1.0.4 Add exclusion of tags temporary files. #
# 28/09/2021 MG 1.0.5 Add exclusion of .bak files. #
# 02/11/2021 MG 1.0.6 Create editor section and add .vimrc #
# 21/11/2021 MG 1.0.7 Tighten SPDX tag. #
# 18/08/2022 MG 1.0.8 Remove local vimrc exclusion. #
# 04/10/2022 MG 1.0.9 Exclude build-aux directory. Used by #
# AC_CONFIG_AUX_DIR. #
# 03/01/2023 MG 1.0.10 Add *.tmp files. #
# 23/02/2023 MG 1.0.11 Add a comment that this file is #
# maintained in another project. #
# #
#########################################################################
# AutoTools
compile
config.guess
config.sub
configure
configure.scan
depcomp
INSTALL
install-sh
ltmain.sh
missing
test-driver
**/*.la
**/*.lo
**/*.o
**/.deps/
**/.dirstamp
**/.libs/
**/aclocal.*
**/ar-lib
**/autom4te.cache/
**/build-aux/
**/config.h.in
**/libtool
**/Makefile
**/Makefile.in
# Backup Files
**/*~
**/*.bak
# C Extras
**/cscope.*
# Ctags
**/tags
**/tags.*
# Editors
**/*.swp
# General
**/*.log
**/*.tar.gz
**/*.tmp
**/patches
# Java Extras
**/Version.java
# My Project Structure
**/atbuild
**/conffiles
# NetBeans
**/build
**/dist
**/distribution
**/target
/nbproject/private/