forked from chapmajs/glitchworks_monitor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
76 lines (46 loc) · 1.18 KB
/
Makefile
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
RMFLAGS = -f
ASM = a85
RM = rm
all: 8085r1 8085r3 certek2 cpm80 cscc imsai1 mits1 mits2 mits3 sds100 sds200 tdlsmb vgzcb
8085r1: sm8085r1
sm8085r1:
$(ASM) sm8085r1.asm -o sm8085r1.hex -l sm8085r1.prn
8085r3: sm8085r3
sm8085r3:
$(ASM) sm8085r3.asm -o sm8085r3.hex -l sm8085r3.prn
certek2: smcertk2
smcertk2:
$(ASM) smcertk2.asm -o smcertk2.hex -l smcertk2.prn
cpm80: smcpm80
smcpm80:
$(ASM) smcpm80.asm -o smcpm80.hex -l smcpm80.prn
cscc: smcscc
smcscc:
$(ASM) smcscc.asm -o smcscc.hex -l smcscc.prn
imsai1: smimsai1
smimsai1:
$(ASM) smimsai1.asm -o smimsai1.hex -l smimsai1.prn
mits1: smmits1
smmits1:
$(ASM) smmits1.asm -o smmits1.hex -l smmits1.prn
mits2: smmits2
smmits2:
$(ASM) smmits2.asm -o smmits2.hex -l smmits2.prn
mits3: smmits3
smmits3:
$(ASM) smmits3.asm -o smmits3.hex -l smmits3.prn
sds100: smsds100
smsds100:
$(ASM) smsds100.asm -o smsds100.hex -l smsds100.prn
sds200: smsds200
smsds200:
$(ASM) smsds200.asm -o smsds200.hex -l smsds200.prn
tdlsmb: smtdlsmb
smtdlsmb:
$(ASM) smtdlsmb.asm -o smtdlsmb.hex -l smtdlsmb.prn
vgzcb: smvgzcb
smvgzcb:
$(ASM) smvgzcb.asm -o smvgzcb.hex -l smvgzcb.prn
clean:
$(RM) $(RMFLAGS) *.hex *.prn
distclean: clean