nostrademons / eve-language

A purely functional programming language intended for practical programming.

This URL has Read+Write access

eve-language / .gitignore
100644 46 lines (36 sloc) 0.715 kb
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 vim swap files and Emacs backups
*.swp
*.swo
*~
 
# Ignore Haskell intermediate files
*.hi
*.o
 
# Ignore LLVM bytecode files
*.bc
 
# Ignore the executable and generated lexer/parser
bootstrap/eve
bootstrap/test
bootstrap/lex
bootstrap/parse
bootstrap/Lexer.hs
bootstrap/Parser.hs
 
# Ditto in bootstrap_compiler
bootstrap_compiler/eve
bootstrap_compiler/Lexer.hs
bootstrap_compiler/Parser.hs
 
# Ignore prototype executables
prototypes/autoconf/src/hello
 
# Ignore svn directories, in case we accidentally copy one over
.svn
 
# Ignore autoconf and automake generated files
Makefile
config.h
config.log
config.status
.deps
stamp-h1
 
# Ignore LLVM output directories
Debug
Release
 
# Ignore Mac stuff
.DS_Store