Skip to content

Commit a95fb0b

Browse files
committed
pk3ds: correct website url and remove cheats
It's pk3ds.com, not pk3ds.org. I'm not sure how I got the tld wrong when I added it to the archive. Cheat DBs weren't removed. I believe you can use usrcheat.dat instead of ENG.dat and whatnot.
1 parent 7c045f7 commit a95fb0b

File tree

541 files changed

+21
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

541 files changed

+21
-21
lines changed
File renamed without changes.

archive/pk3ds.com/old/Makefile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.PHONY: package
2+
3+
export TOPDIR := $(shell pwd $(CURDIR))
4+
export BASE := pk3ds.com/$(shell basename $(CURDIR))
5+
export OUT := $(TOPDIR)/../../../out
6+
export COMMON := $(TOPDIR)/../../../common-kernels
7+
8+
package: directory pk3ds.com_Kernel_2.12.zip pk3ds.com_3DS_V2.2.0-4J_upgrade_package.zip pk3ds.com_DSi_V1.43_upgrade_package.zip
9+
10+
directory:
11+
mkdir -p $(OUT)/$(BASE)
12+
13+
pk3ds.com_3DS_V2.2.0-4J_upgrade_package.zip: directory
14+
cd $(TOPDIR)/pk3ds.com_3DS_V2.2.0-4J_upgrade_package && zip -r $(OUT)/$(BASE)/$@ *
15+
16+
pk3ds.com_DSi_V1.43_upgrade_package.zip: directory
17+
cd $(TOPDIR)/pk3ds.com_DSi_V1.43_upgrade_package && zip -r $(OUT)/$(BASE)/$@ *
18+
19+
pk3ds.com_Kernel_2.12.zip: directory
20+
cd $(TOPDIR)/pk3ds.com_Kernel_2.12 && zip -r $(OUT)/$(BASE)/$@ *
21+

0 commit comments

Comments
 (0)