-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
15 lines (13 loc) · 873 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
BEEBASM?=beebasm
.PHONY:all
all:
$(BEEBASM) -i 1-source-files/main-sources/elite-readme.asm
$(BEEBASM) -i 1-source-files/main-sources/elite-disc-1.asm -do 2-assembled-output/side1.ssd
$(BEEBASM) -i 1-source-files/main-sources/elite-disc-2.asm -do 2-assembled-output/side2.ssd
dfsimage create 3-compiled-game-discs/elite-compendium-bbc-micro.dsd
dfsimage backup --title="Compendium" --bootopt=EXEC --from 2-assembled-output/side1.ssd --to -1 3-compiled-game-discs/elite-compendium-bbc-micro.dsd
dfsimage backup --title="Compendium" --from 2-assembled-output/side2.ssd --to -2 3-compiled-game-discs/elite-compendium-bbc-micro.dsd
.PHONY:b2
b2:
curl -G "http://localhost:48075/reset/b2"
curl -H "Content-Type:application/binary" --upload-file "3-compiled-game-discs/elite-compendium-bbc-micro.dsd" "http://localhost:48075/run/b2?name=elite-compendium-bbc-micro.dsd"