Skip to content

Commit 38d9121

Browse files
committed
Added .gitignore file
1 parent bafec66 commit 38d9121

1 file changed

Lines changed: 119 additions & 0 deletions

File tree

.gitignore

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
# SmallBasic build related
2+
# ------------------------
3+
# SmallBasic dynamically generates a lot of files when
4+
# built from source. This list should help declutter the
5+
# `git status` output
6+
Makefile
7+
Makefile.in
8+
INSTALL
9+
README
10+
.dirstamp
11+
build_kwp
12+
*.sbu
13+
acinclude.m4
14+
aclocal.m4
15+
autom4te.cache
16+
compile
17+
config.guess
18+
config.h
19+
config.h.in
20+
config.status
21+
config.sub
22+
configure
23+
depcomp
24+
install-sh
25+
missing
26+
*.dat
27+
src/common/libsb_common.a
28+
src/platform/console/sbasic
29+
src/ui/kwp.h
30+
stamp-h1
31+
tsave.txt
32+
Test-Results
33+
34+
# C/C++/Obj-C
35+
# -----------
36+
*.o
37+
*.deps
38+
39+
# Gradle
40+
# ------
41+
.gradle/*
42+
**/build/*
43+
/buildSrc/build
44+
/subprojects/*/build
45+
/subprojects/docs/src/samples/*/*/build
46+
/subprojects/internal-android-performance-testing/build-android-libs
47+
48+
# Maven
49+
# -----
50+
**/target/*
51+
52+
# IDEA
53+
# ----
54+
.idea
55+
.shelf
56+
/*.iml
57+
/*.ipr
58+
/*.iws
59+
/buildSrc/*.iml
60+
/buildSrc/*.ipr
61+
/buildSrc/*.iws
62+
/buildSrc/out
63+
/out
64+
/subprojects/*/*.iml
65+
/subprojects/*/out
66+
67+
# Eclipse
68+
# -------
69+
*.classpath
70+
*.project
71+
*.settings
72+
/bin
73+
/subprojects/*/bin
74+
atlassian-ide-plugin.xml
75+
76+
# NetBeans
77+
# --------
78+
.nb-gradle
79+
.nb-gradle-properties
80+
81+
# Vim
82+
# ---
83+
*.sw[op]
84+
85+
# Emacs
86+
# -----
87+
*~
88+
89+
# Textmate
90+
# --------
91+
.textmate
92+
93+
# Sublime Text
94+
# ------------
95+
*.sublime-*
96+
97+
# jEnv
98+
# ----
99+
.java-version
100+
101+
# OS X
102+
# ----
103+
.DS_Store
104+
105+
# HPROF
106+
# -----
107+
*.hprof
108+
109+
# Work dirs
110+
# ---------
111+
/incoming-distributions
112+
/intTestHomeDir
113+
114+
# Logs
115+
# ----
116+
/*.log
117+
118+
# oh-my-zsh gradle plugin
119+
.gradletasknamecache

0 commit comments

Comments
 (0)