-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (28 loc) · 903 Bytes
/
Copy pathMakefile
File metadata and controls
33 lines (28 loc) · 903 Bytes
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
MADS=mads
ATR=atr
all: bbcbasic.atr
bbcbasic.atr: autorun.sys
cp atr/clean25.atr bbcbasic.atr
$(ATR) bbcbasic.atr put autorun.sys
$(ATR) bbcbasic.atr put test/clocksp.bbc
$(ATR) bbcbasic.atr put test/rphone.bbc
$(ATR) bbcbasic.atr put test/wphone.bbc
$(ATR) bbcbasic.atr put test/rainbow.bbc
$(ATR) bbcbasic.atr put test/dli.bbc
$(ATR) bbcbasic.atr put test/sound.bbc
$(ATR) bbcbasic.atr put test/mathspd.bbc
$(ATR) bbcbasic.atr put test/allchars.bbc
$(ATR) bbcbasic.atr put test/copybar.bbc
$(ATR) bbcbasic.atr put test/overbar.bbc
$(ATR) bbcbasic.atr put data/apricot.fnt
$(ATR) bbcbasic.atr put test/asm1.bbc
$(ATR) bbcbasic.atr put test/owl.bbc
$(ATR) bbcbasic.atr put test/curve.bbc
$(ATR) bbcbasic.atr put test/dmscfp.bbc
# $(ATR) bbcbasic.atr put test/dlie.bbc
autorun.sys: main.s
$(MADS) -l:debug.lst -o:$@ $<
clean:
rm -f *.sys *.lst *.atr
cleaner: clean
rm -f *~ */*~