-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
81 lines (73 loc) · 973 Bytes
/
.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
# Ignore build artifacts
build/
# Ignore compiled Common-Lisp files
*.FASL
*.fasl
*.fas
*.lisp-temp
*.dfsl
*.pfsl
*.d64fsl
*.p64fsl
*.lx64fsl
*.lx32fsl
*.dx64fsl
*.dx32fsl
*.fx64fsl
*.fx32fsl
*.sx64fsl
*.sx32fsl
*.wx64fsl
*.wx32fsl
# Ignore etags/ctags
TAGS
GPATH
GRTAGS
GTAGS
# Ignore C object files and libraries
*.o
*.so
*.a
*.log
*.tmp
# Emacs/Vim Backup/Auto-Save files
*~
.#*
\#*\#
,*
# MacOS thing
.DS_Store
# Verilog files
**.v
# Documentation & Autoconf/Automake stuff
/aclocal.m4
/autom4te.cache
/build-aux
/config.status
/configure
/doc/*.1
/doc/.dirstamp
/doc/contributing.*.texi
/doc/tcl2cl*.aux
/doc/tcl2cl*.cp
/doc/tcl2cl*.cps
/doc/tcl2cl*.fn
/doc/tcl2cl*.fns
/doc/tcl2cl*.html
/doc/tcl2cl*.info
/doc/tcl2cl*.info-[0-9]
/doc/tcl2cl*.ky
/doc/tcl2cl*.pdf
/doc/tcl2cl*.pg
/doc/tcl2cl*.toc
/doc/tcl2cl*.t2p
/doc/tcl2cl*.tp
/doc/tcl2cl*.vr
/doc/tcl2cl*.vrs
/doc/tcl2cl.*.texi
/doc/stamp-vti
/doc/version.texi
/doc/version-*.texi
/m4/*
Makefile
Makefile.in