-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.gitignore
120 lines (103 loc) · 1.55 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# -----------------
# SECTION: BINARIES
# -----------------
# Ignore MESCC tool chain binaries
cpm.exe
cpm2.exe
cpm_player.exe
cc.com
cc.COM
CC.COM
ccopt.com
ccopt.COM
CCOPT.COM
zsm.com
ZSM.COM
hextocom.com
hextocom.COM
HEXTOCOM.COM
link.com
LINK.COM
prntosym.com
prntosym.COM
PRNTOSYM.COM
zmac.exe
# Don't ignore binaries in MESCC directory
!/mescc/*.exe
!/mescc/*.com
!/mescc/*.COM
# Don't ignore some CP/M binaries in ZSM directory
!/zsm/hextocom.com
!/zsm/hextocom.COM
!/zsm/HEXTOCOM.COM
!/zsm/prntosym.com
!/zsm/prntosym.COM
!/zsm/PRNTOSYM.COM
# ------------------------
# SECTION: MESCC LIBRARIES
# ------------------------
# Ignore MESCC libraries
alloc.h
atexit.h
bsearch.h
clock.h
conio.h
cpm.h
ctype.h
fileio.h
fprintf.h
mem.h
mescc.h
printf.h
qsort.h
rand.h
redir.h
setjmp.h
sprintf.h
stdbool.h
string.h
xprintf.h
z80.h
# Don't ignore MESCC libraries in mescc directory
!/mescc/*.h
# ---------------------------
# SECTION: INTERMEDIATE FILES
# ---------------------------
# Ignore intermediate HEX files
*.HEX
# Ignore intermediate ZSM files
*.ZSM
# Ignore intermediate PRN files
*.PRN
# Ignore ZIP files
*.zip
# Don't ignore intermediate ZSM files in ZSM sub-directories
!/zsm/zsm*/*.ZSM
# ----------------
# SECTION: FOLDERS
# ----------------
# Ignore backup folders
backup/
# Ignore ZMAC output folders
zout/
# -----------------------
# SECTION: WHOLE PROJECTS
# -----------------------
# Ignore some projects for now
/adv
/ddfont
/star
/threads
/wp
/thingies
/ui
/ttygames
/chip-8
/libs
/mescc_tests
/snippets
/startrek
/vi
/rogue
/totalwar
/ui_old_style