-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
92 lines (76 loc) · 1.46 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
# NOTE! Please use 'git ls-files -i --exclude-standard'
# command after changing this file, to see if there are
# any tracked files which get ignored after the change.
#
# (compile "git ls-files -i --exclude-standard")
Makefile
Makefile.in
.deps
*.o
*.lo
*.la
.libs
*.orig
*~
\#*#
/autom4te.cache
/compile
/config.guess
/config.log
/config.status
/config.sub
/configure
/depcomp
/install-sh
/libtool
/ltmain.sh
/aclocal.m4
/m4/libtool.m4
/m4/ltoptions.m4
/m4/ltsugar.m4
/m4/ltversion.m4
/m4/lt~obsolete.m4
/missing
/ylwrap
/ar-lib
/ngspice.pc
/src/frontend/parse-bison.*
/src/spicelib/parser/inpptree-parser.*
/src/include/ngspice/config.h.in
/src/include/ngspice/config.h
/src/include/ngspice/stamp-h1
/src/maths/cmaths/test_cx_cph
/src/maths/cmaths/test_cx_j
/src/maths/cmaths/test_cx_mag
/src/maths/cmaths/test_cx_ph
/src/spicelib/devices/adms/*/*.*
!/src/spicelib/devices/adms/admst/*.*
!/src/spicelib/devices/adms/*/admsva/*.*
/src/ngmakeidx
/src/ngmultidec
/src/ngnutmeg
/src/ngproc2mod
/src/ngsconvert
/src/ngspice
/src/ngspice.idx
/src/spinit
/release*
/debug*
/visualc-tcl*
# Swap files for Vim
**/*.swp
**/*.swo
# Patches
**/*.patch
# Visual Studio user options files
**/*.vcxproj.user
.vscode/
src/frontend/parse-bison.c
src/frontend/parse-bison.h
src/spicelib/parser/inpptree-parser.c
src/spicelib/parser/inpptree-parser.h
# Visual Studio Code user options files
.vscode/
test_cases/diode/__pycache__/*
test_cases/diode/test_osdi/*
test_cases/diode/test_built_in/*