This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
forked from intel/hyperscan
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
101 lines (88 loc) · 1.52 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
##
## There are some more .gitignore files in subdirs, but this is the main place
## to add new entries. These are mostly for the common case when ue2 is built
## in place
##
# Autogenerated stuff that we don't want to know about
.deps
autom4te.cache
autojunk
.dirstamp
# Temp and swap files
*~
.*.swp
.sw?
# compiler output and binaries
*.a
*.o
*.lo
*.la
*.so
*.pyc
.libs
bin
# Merge files created by git.
*.orig
# sigs dir is handled externally
signatures
# but not the regression tests
!tools/hscollider/test_cases/signatures
# ignore pcre symlink if it exists
pcre
# but not pcre subdirs!
!pcre/
# ignore boost symlink if it exists
include/boost
# ignore sqlite3 symlink if it exists
sqlite3
# Generated files
src/config.h
src/config.h.in
src/hs_version.h
src/parser/Parser.cpp
# Generated PCRE files
pcre/pcre_chartables.c
pcre/pcregrep
pcre/pcretest
# Autoconf/automake/libtool noise
Makefile
Makefile.in
aclocal.m4
config.cache
config.log
config.status
configure
libhs.pc
libtool
m4/libtool.m4
m4/ltoptions.m4
m4/ltsugar.m4
m4/ltversion.m4
m4/lt~obsolete.m4
src/stamp-h1
# Docs
!doc/dev-reference/Makefile # not generated
doc/dev-reference/doxygen_sqlite3.db
doc/dev-reference/doxygen_xml/
doc/dev-reference/_build/
# Autotools noise in pcre
pcre/INSTALL
pcre/Makefile
pcre/Makefile.in
pcre/aclocal.m4
pcre/ar-lib
pcre/compile
pcre/config.*
pcre/configure
pcre/depcomp
pcre/install-sh
pcre/*.pc
pcre/libtool
pcre/ltmain.sh
pcre/missing
pcre/pcre-config
pcre/pcre.h
pcre/pcre_stringpiece.h
pcre/pcrecpparg.h
pcre/stamp-h1
pcre/test-driver