-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
20 lines (13 loc) · 824 Bytes
/
Makefile
File metadata and controls
20 lines (13 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
u1.0:
cp sfc/dkc1_u1.0.sfc target/dkc1hack_u1.0.sfc && cd src && asar -Drom_revision=0 --fix-checksum=off main.asm ../target/dkc1hack_u1.0.sfc && cd -
u1.1:
cp sfc/dkc1_u1.1.sfc target/dkc1hack_u1.1.sfc && cd src && asar -Drom_revision=1 --fix-checksum=off main.asm ../target/dkc1hack_u1.1.sfc && cd -
u1.2:
cp sfc/dkc1_u1.2.sfc target/dkc1hack_u1.2.sfc && cd src && asar -Drom_revision=2 --fix-checksum=off main.asm ../target/dkc1hack_u1.2.sfc && cd -
j1.0:
cp sfc/dkc1_j1.0.sfc target/dkc1hack_j1.0.sfc && cd src && asar -Drom_revision=3 --fix-checksum=off main.asm ../target/dkc1hack_j1.0.sfc && cd -
j1.1:
cp sfc/dkc1_j1.1.sfc target/dkc1hack_j1.1.sfc && cd src && asar -Drom_revision=4 --fix-checksum=off main.asm ../target/dkc1hack_j1.1.sfc && cd -
all: u1.0 u1.1 u1.2 j1.0 j1.1
clean:
rm -f target/*.sfc