-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitignore
46 lines (46 loc) · 1.19 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
# Ignore object files
*.o
# Ignore static archive libraries
*.a
# Ignore shared libraries
*.so*
# Ignore emacs backup files
*~
# Ignore Java bytecode files
*.class
# Ignore Java archive files
*.jar
# Ignore nohup files
nohup.out
# Ignore the dist directory that is created by runghc ./Setup.hs build
dist
# Ignore .hi files
*.hi
# Ignore the C2HS.hs file, which is copied by c2hs --copy-library -v
C2HS.hs
# Ignore the .token files, which are generated by ANTLR
*.tokens
# Ignore .chi files
*.chi
# Ignore the .chs.h files generated by c2hs
*.chs.h
# Ignore the lexer .c files that are generated by ANTLR
*Lexer.c
# Ignore the lexer .c files that are generated by ANTLR
*Lexer.h
# Ignore the parser .c files that are generated by ANTLR
*Parser.c
# Ignore the parser .c files that are generated by ANTLR
*Parser.h
# Ignore the _stub.c files that are gerated by ghc
*_stub.c
# Ignore the _stub.c files that are gerated by ghc
*_stub.h
# Ignore the *Tokens.h header file that is generated by antlrcmkenums
*Tokens.h
# Ignore the .hs files generated from the .chs files
src/tapl/arith/ArithInterface.hs
src/tapl/fulluntyped/FullUntypedInterface.hs
# Ignore the executables
src/tapl/arith/arith
src/tapl/fulluntyped/fulluntyped