Add Makefile system to create frontend

Run `./build.sh` in `archive` folder. It will loop through all kernels,
and copy to `<project-root>/out`.
This commit is contained in:
lifehackerhansol 2023-08-13 09:46:40 -07:00
parent 2c4bf9f2dc
commit a742b68bee
No known key found for this signature in database
GPG Key ID: 80FB184AFC0B3B0E
89 changed files with 1515 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
out

View File

@ -0,0 +1,23 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory 3DSLink_DS_V4.0B2.zip 3dslink.com_Blue_Kernel_1.64.zip Boot_Card_Blue_Card_V4.0B1.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
3DSLink_DS_V4.0B2.zip: directory
cd $(TOPDIR)/3DSLink_DS_V4.0B2 && zip -r $(OUT)/$(BASE)/$@ *
Boot_Card_Blue_Card_V4.0B1.zip: directory
cd $(TOPDIR)/Boot_Card_Blue_Card_V4.0B1 && zip -r $(OUT)/$(BASE)/$@ *
3dslink.com_Blue_Kernel_1.64.zip: directory
cd $(TOPDIR)/3dslink.com_Blue_Kernel_1.64 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp 3dslinkblue.jpg $(OUT)/$(BASE)

View File

@ -0,0 +1,19 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory Ace3DS+_R4iLS_Wood_R4_1.62.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
Ace3DS+_R4iLS_Wood_R4_1.62.zip: directory
mkdir tmp;cp -r Ace3DS+_R4iLS_Wood_R4_1.62/* $(COMMON)/Wood_R4Li_1.62/* tmp
cd tmp && zip -r $(OUT)/$(BASE)/$@
cd $(TOPDIR); rm -rf tmp
extdata: directory
cp ace3dsplus.jpg README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory Action_Replay_DSi_non-3DS_FWUpdate_v1.25.zip
directory:
mkdir -p $(OUT)/$(BASE)
Action_Replay_DSi_non-3DS_FWUpdate_v1.25.zip: directory
cd $(TOPDIR)/Action_Replay_DSi_non-3DS_FWUpdate_v1.25 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := CycloDS/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory CycloDS_Evolution_2.3.zip
directory:
mkdir -p $(OUT)/$(BASE)
CycloDS_Evolution_2.3.zip: directory
cd CycloDS_Evolution_2.3 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := CycloDS/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory CycloDS_iEvolution_2.3.zip
directory:
mkdir -p $(OUT)/$(BASE)
CycloDS_iEvolution_2.3.zip: directory
cd CycloDS_iEvolution_2.3 && zip -r $(OUT)/$(BASE)/$@ *

17
archive/CycloDS/Makefile Normal file
View File

@ -0,0 +1,17 @@
.PHONY: package directory CycloDS_Evolution CycloDS_iEvolution
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory CycloDS_Evolution CycloDS_iEvolution
directory:
mkdir -p $(OUT)/$(BASE)
CycloDS_Evolution:
make -C $@
CycloDS_iEvolution:
make -C $@

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory DS-Xtreme_FWUpdate_v1.1.2-fixed.zip old
directory:
mkdir -p $(OUT)/$(BASE)
DS-Xtreme_FWUpdate_v1.1.2-fixed.zip: directory
cd $(TOPDIR)/DS-Xtreme_FWUpdate_v1.1.2-fixed && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := DS-Xtreme/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory DS-Xtreme_FWUpdate_v1.1.2.zip
directory:
mkdir -p $(OUT)/$(BASE)
DS-Xtreme_FWUpdate_v1.1.2.zip: directory
cd $(TOPDIR)/DS-Xtreme_FWUpdate_v1.1.2 && zip -r $(OUT)/$(BASE)/$@ *

20
archive/EDGE/Makefile Normal file
View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory EDGE_OS_2.3.zip iEDGE_OS_2.3.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
EDGE_OS_2.3.zip: directory
cd $(TOPDIR)/EDGE_OS_2.3 && zip -r $(OUT)/$(BASE)/$@ *
iEDGE_OS_2.3.zip: directory
cd $(TOPDIR)/iEDGE_OS_2.3 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

17
archive/EZ-Flash/Makefile Normal file
View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory EZ-Flash_V+_oldVi_Kernel_2.0RC20.zip EZ-Flash_Vi_705_805_Kernel_3.0OB8.zip
directory:
mkdir -p $(OUT)/$(BASE)
EZ-Flash_V+_oldVi_Kernel_2.0RC20.zip: directory
cd $(TOPDIR)/EZ-Flash_V+_oldVi_Kernel_2.0RC20 && zip -r $(OUT)/$(BASE)/$@ *
EZ-Flash_Vi_705_805_Kernel_3.0OB8.zip: directory
cd $(TOPDIR)/EZ-Flash_Vi_705_805_Kernel_3.0OB8 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,19 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory Gateway_Blue_Wood_R4_1.62.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
Gateway_Blue_Wood_R4_1.62.zip: directory
mkdir tmp;cp -r Gateway_Blue_Wood_R4_1.62/* $(COMMON)/Wood_R4Li_1.62/* tmp
cd tmp && zip -r $(OUT)/$(BASE)/$@
cd $(TOPDIR); rm -rf tmp
extdata: directory
cp README.txt $(OUT)/$(BASE)

14
archive/N-Card/Makefile Normal file
View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory N-Card_FW_2.55_v27.zip
directory:
mkdir -p $(OUT)/$(BASE)
N-Card_FW_2.55_v27.zip: directory
cd $(TOPDIR)/N-Card_FW_2.55_v27 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory R4DS_Wood_R4_1.62.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
R4DS_Wood_R4_1.62.zip: directory
cd $(TOPDIR)/R4DS_Wood_R4_1.62 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := SuperCard/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory SuperCard_DSONE_EOS_sp6_20130129_5850fix.zip
directory:
mkdir -p $(OUT)/$(BASE)
SuperCard_DSONE_EOS_sp6_20130129_5850fix.zip: directory
cd $(TOPDIR)/SuperCard_DSONE_EOS_sp6_20130129_5850fix && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := SuperCard/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory SuperCard_DSONE_SDHC_EOS_sp6_20121206.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
SuperCard_DSONE_SDHC_EOS_sp6_20121206.zip: directory
cd $(TOPDIR)/SuperCard_DSONE_SDHC_EOS_sp6_20121206 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp SuperCard_DSONEi_FWUpdate_1.4.5.nds $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := SuperCard/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory SuperCard_DSTWO_EOS_1.14.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
SuperCard_DSTWO_EOS_1.14.zip: directory
cd $(TOPDIR)/SuperCard_DSTWO_EOS_1.14 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp -r SuperCard_DSTWO_FWUpdate* $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := SuperCard/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory extdata
directory:
mkdir -p $(OUT)/$(BASE)
extdata: directory
cp -r SuperCard_Lite_Rumble_FWUpdate* $(OUT)/$(BASE)

View File

@ -0,0 +1,26 @@
.PHONY: package DSONE DSONE_SDHC_DSONEi DSTWO Lite_Rumble
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory DSONE DSONE_SDHC_DSONEi DSTWO Lite_Rumble extdata
directory:
mkdir -p $(OUT)/$(BASE)
DSONE: directory
make -C $@
DSONE_SDHC_DSONEi: directory
make -C $@
DSTWO: directory
make -C $@
Lite_Rumble: directory
make -C $@
extdata: directory
cp README.txt $(OUT)/$(BASE)

14
archive/YSMenu/Makefile Normal file
View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory extdata
directory:
mkdir -p $(OUT)/$(BASE)
extdata: directory
cp -r DEMON_common $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory acekard.cc_Acekard_3_AKAIO_1.8.7.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
acekard.cc_Acekard_3_AKAIO_1.8.7.zip: directory
cd $(TOPDIR)/acekard.cc_Acekard_3_AKAIO_1.8.7 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp acekardcc.jpg $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := acekard.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory AKAIO_1.9.0-20121129.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
AKAIO_1.9.0-20121129.zip: directory
cd $(COMMON)/AKAIO_1.9.0-20121129 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp acekard*.jpg README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,18 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := acekard.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory AKAIO_1.9.0-20121129.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
AKAIO_1.9.0-20121129.zip: directory
cd $(COMMON)/AKAIO_1.9.0-20121129 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp -r Acekard_2i_FWUpdate $(OUT)/$(BASE)
cp acekard*.jpg README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := acekard.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory AceKard_akMenu_4.07.zip
directory:
mkdir -p $(OUT)/$(BASE)
AceKard_akMenu_4.07.zip: directory
cd AceKard_akMenu_4.07 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := acekard.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory Acekard_RPG_Wood_RPG_1.62.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
Acekard_RPG_Wood_RPG_1.62.zip: directory
cd Acekard_RPG_Wood_RPG_1.62 && zip -r $(OUT)/$(BASE)/$@ *
extdata:
cp acekard*.jpg README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,23 @@
.PHONY: package directory AceKard_AceKard+ AceKard_2_2.1 AceKard_2i AceKard_RPG
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory AceKard_AceKard+ AceKard_2_2.1 AceKard_2i AceKard_RPG
directory:
mkdir -p $(OUT)/$(BASE)
AceKard_AceKard+: directory
make -C $@
AceKard_2_2.1: directory
make -C $@
AceKard_2i: directory
make -C $@
AceKard_RPG: directory
make -C $@

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory amazekard.com_Kernel_2.1.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
amazekard.com_Kernel_2.1.zip: directory
cd amazekard.com_Kernel_2.1 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp amazekard.com_FWUpdate_1.4.2.nds amazekard.png $(OUT)/$(BASE)

3
archive/build.sh Normal file
View File

@ -0,0 +1,3 @@
for d in */ ; do
make -C "$d"
done

20
archive/dsn5.com/Makefile Normal file
View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory dsn5.com_N5_Kernel_1.32.zip dsn5.com_N5i_Kernel_3.02.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
dsn5.com_N5_Kernel_1.32.zip: directory
cd $(TOPDIR)/dsn5.com_N5_Kernel_1.32 && zip -r $(OUT)/$(BASE)/$@ *
dsn5.com_N5i_Kernel_3.02.zip: directory
cd $(TOPDIR)/dsn5.com_N5i_Kernel_3.02 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp *.jpg README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory EX4DS_Kernel_2.01.zip
directory:
mkdir -p $(OUT)/$(BASE)
EX4DS_Kernel_2.01.zip: directory
cd $(TOPDIR)/EX4DS_Kernel_2.01 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory g6flash.com_gbalpha.com_Kernel_4.9a.zip
directory:
mkdir -p $(OUT)/$(BASE)
g6flash.com_gbalpha.com_Kernel_4.9a.zip: directory
cd $(TOPDIR)/g6flash.com_gbalpha.com_Kernel_4.9a && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory ge.ndsi.in_GEi_Kernel_4.2.zip ge.ndsi.in_GEi_PRO_Kernel_5.1.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
ge.ndsi.in_GEi_Kernel_4.2.zip: directory
cd $(TOPDIR)/ge.ndsi.in_GEi_Kernel_4.2 && zip -r $(OUT)/$(BASE)/$@ *
ge.ndsi.in_GEi_PRO_Kernel_5.1.zip: directory
cd $(TOPDIR)/ge.ndsi.in_GEi_PRO_Kernel_5.1 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp *.jpg README.txt ge.ndsi.in_GEi_FWUpdate_1.4.4.nds $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory m3adapter.com_GMP-Z003_Sakura_1.49a.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
m3adapter.com_GMP-Z003_Sakura_1.49a.zip: directory
cd $(TOPDIR)/m3adapter.com_GMP-Z003_Sakura_1.49a && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory ndsill.net_3DS_Kernel_2.60.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
ndsill.net_3DS_Kernel_2.60.zip: directory
cd $(TOPDIR)/ndsill.net_3DS_Kernel_2.60 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory ndslr4.com_Kernel_1.34.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
ndslr4.com_Kernel_1.34.zip: directory
cd $(TOPDIR)/ndslr4.com_Kernel_1.34 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory pandora-ds.com_Kernel.zip
directory:
mkdir -p $(OUT)/$(BASE)
pandora-ds.com_Kernel.zip: directory
cd $(TOPDIR)/pandora-ds.com_Kernel && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4-dsl.net_R4-III_R4_Upgrade_Kernel_3.09.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4-dsl.net_R4-III_R4_Upgrade_Kernel_3.09.zip: directory
cd $(TOPDIR)/r4-dsl.net_R4-III_R4_Upgrade_Kernel_3.09 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4-new.com_Kernel_1.5.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4-new.com_Kernel_1.5.zip: directory
cd $(TOPDIR)/r4-new.com_Kernel_1.5 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4.ndsl.cc_Kernel_2.0.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4.ndsl.cc_Kernel_2.0.zip: directory
cd $(TOPDIR)/r4.ndsl.cc_Kernel_2.0 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory R4-Advance_Kernel_1.22.zip R4-Advance_Kernel_1.27.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
R4-Advance_Kernel_1.22.zip: directory
cd $(TOPDIR)/R4-Advance_Kernel_1.22 && zip -r $(OUT)/$(BASE)/$@ *
R4-Advance_Kernel_1.27.zip: directory
cd $(TOPDIR)/R4-Advance_Kernel_1.27 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4ds-i.com.cn_Kernel_1.27.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4ds-i.com.cn_Kernel_1.27.zip: directory
cd $(TOPDIR)/r4ds-i.com.cn_Kernel_1.27 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4dsixl3d.com_Kernel_1.8.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4dsixl3d.com_Kernel_1.8.zip: directory
cd $(TOPDIR)/r4dsixl3d.com_Kernel_1.8 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory BL2CK_1.30.4.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4dspro.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4dspro.com_Kernel_1.50.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4dspro.com_Kernel_1.50.zip: directory
cd $(TOPDIR)/r4dspro.com_Kernel_1.50 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory R4i-Advance_Kernel_3.0.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
R4i-Advance_Kernel_3.0.zip: directory
cd $(TOPDIR)/R4i-Advance_Kernel_3.0 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4i-best.com_Green_Kernel_1.4.zip r4i-best.com_R4i-Best_R4i-Gold_Kernel_2.02.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4i-best.com_Green_Kernel_1.4.zip: directory
cd $(TOPDIR)/r4i-best.com_Green_Kernel_1.4 && zip -r $(OUT)/$(BASE)/$@ *
r4i-best.com_R4i-Best_R4i-Gold_Kernel_2.02.zip: directory
cd $(TOPDIR)/r4i-best.com_R4i-Best_R4i-Gold_Kernel_2.02 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4i-gold.com_Pro_2013_Wood_R4_1.51.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4i-gold.com_Pro_2013_Wood_R4_1.51.zip: directory
cd $(TOPDIR)/r4i-gold.com_Pro_2013_Wood_R4_1.51 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4i-gold.hk_RTS_Kernel_4.1.0.8.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4i-gold.hk_RTS_Kernel_4.1.0.8.zip: directory
cd $(TOPDIR)/r4i-gold.hk_RTS_Kernel_4.1.0.8 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4i-gold.me_2013_Kernel_1.63.1.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4i-gold.me_2013_Kernel_1.63.1.zip: directory
cd $(TOPDIR)/r4i-gold.me_2013_Kernel_1.63.1 && zip -r $(OUT)/$(BASE)/$@ *

17
archive/r4i.cn/Makefile Normal file
View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4i.cn_Kernel_1.60.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4i.cn_Kernel_1.60.zip: directory
cd $(TOPDIR)/r4i.cn_Kernel_1.60 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4i.ndsi.in_R4i_Gold_Kernel_3.2.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4i.ndsi.in_R4i_Gold_Kernel_3.2.zip: directory
cd $(TOPDIR)/r4i.ndsi.in_R4i_Gold_Kernel_3.2 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory BL2CK_1.30.4.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4i3d.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4i3d.com_2013_Kernel_1.63.1.zip r4i3d.com_2014-2015_Kernel_1.70.1.zip r4i3d.com_NEW_Kernel_1.38.3.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4i3d.com_2013_Kernel_1.63.1.zip: directory
cd $(TOPDIR)/r4i3d.com_2013_Kernel_1.63.1 && zip -r $(OUT)/$(BASE)/$@ *
r4i3d.com_2014-2015_Kernel_1.70.1.zip: directory
cd $(TOPDIR)/r4i3d.com_2014-2015_Kernel_1.70.1 && zip -r $(OUT)/$(BASE)/$@ *
r4i3d.com_NEW_Kernel_1.38.3.zip: directory
cd $(TOPDIR)/r4i3d.com_NEW_Kernel_1.38.3 && zip -r $(OUT)/$(BASE)/$@ *

26
archive/r4ids.cn/Makefile Normal file
View File

@ -0,0 +1,26 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory BL2CK_1.30.4.zip r4ids.cn_non-3DS_Wood_R4_1.54.zip r4ids.cn_Wood_R4_1.64.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
r4ids.cn_non-3DS_Wood_R4_1.54.zip: directory
cd $(TOPDIR)/r4ids.cn_non-3DS_Wood_R4_1.54 && zip -r $(OUT)/$(BASE)/$@ *
r4ids.cn_Wood_R4_1.64.zip: directory
cd $(TOPDIR)/r4ids.cn_Wood_R4_1.64 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r r4ids.cn_FWUpdate_6.2.0 README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4ids.cn/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4ids.cn_Multi-Function_1.51d.zip r4ids.cn_non-3DS_Multi-Function_1.51d.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4ids.cn_Multi-Function_1.51d.zip: directory
cd $(TOPDIR)/r4ids.cn_Multi-Function_1.51d && zip -r $(OUT)/$(BASE)/$@ *
r4ids.cn_non-3DS_Multi-Function_1.51d.zip: directory
cd $(TOPDIR)/r4ids.cn_non-3DS_Multi-Function_1.51d && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,29 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory BL2CK_1.30.4.zip r4ids.com_Original_Wood_R4_1.54.zip r4ids.com_Gold_2.0_AKAIO_1.8.6a.zip r4ids.com_Gold_Plus_Kernel_3.0.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
r4ids.com_Original_Wood_R4_1.54.zip: directory
cd $(TOPDIR)/../r4ids.cn/r4ids.cn_non-3DS_Wood_R4_1.54 && zip -r $(OUT)/$(BASE)/$@ *
r4ids.com_Gold_2.0_AKAIO_1.8.6a.zip: directory
cd $(TOPDIR)/r4ids.com_Gold_2.0_AKAIO_1.8.6a && zip -r $(OUT)/$(BASE)/$@ *
r4ids.com_Gold_Plus_Kernel_3.0.zip: directory
cd $(TOPDIR)/r4ids.com_Gold_Plus_Kernel_3.0 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4ids.cn/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4ids.com_Original_Multi-Function_1.51d.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4ids.com_Original_Multi-Function_1.51d.zip: directory
cd $(TOPDIR)/r4ids.com_Original_Multi-Function_1.51d && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4idsn.com_Wood_R4_1.62.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4idsn.com_Wood_R4_1.62.zip: directory
cd $(TOPDIR)/r4idsn.com_Wood_R4_1.62 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4igold.cc_Kernel_2.6.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4igold.cc_Kernel_2.6.zip: directory
cd $(TOPDIR)/r4igold.cc_Kernel_2.6 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp -r r4igold.cc_3DS_FWUpdate* README.md $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4iids.com_Kernel_2.07.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4iids.com_Kernel_2.07.zip: directory
cd $(TOPDIR)/r4iids.com_Kernel_2.07 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4iiisdhc.com_Kernel_3.07.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4iiisdhc.com_Kernel_3.07.zip: directory
cd $(TOPDIR)/r4iiisdhc.com_Kernel_3.07 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4infinity.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory BL2CK_1.30.4.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4infinity.com/Dual-Core_i/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../../out
export COMMON := $(TOPDIR)/../../../../common-kernels
package: directory r4infinity.com_Dual_Core_Kernel_4.4.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4infinity.com_Dual_Core_Kernel_4.4.zip: directory
cd $(TOPDIR)/r4infinity.com_Dual_Core_Kernel_4.4 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,20 @@
.PHONY: package directory original Dual-Core_i R4infinity_3
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory original Dual-Core_i R4infinity_3
directory:
mkdir -p $(OUT)/$(BASE)
original:
make -C $@
Dual-Core_i:
make -C $@
R4infinity_3:
make -C $@

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4infinity.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory BL2CK_1.30.4_Amaze3DS.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4_Amaze3DS.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4_Amaze3DS && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4infinity.com/R4infinity_3/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../../out
export COMMON := $(TOPDIR)/../../../../common-kernels
package: directory r4infinity.com_3_Kernel_2.5.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4infinity.com_3_Kernel_2.5.zip: directory
cd $(TOPDIR)/r4infinity.com_3_Kernel_2.5 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4infinity.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory BL2CK_1.30.4.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4infinity.com/original/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../../out
export COMMON := $(TOPDIR)/../../../../common-kernels
package: directory r4infinity.com_original_Kernel_2.1.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4infinity.com_original_Kernel_2.1.zip: directory
cd $(TOPDIR)/r4infinity.com_original_Kernel_2.1 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4iplat.com_Kernel_1.34.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4iplat.com_Kernel_1.34.zip: directory
cd $(TOPDIR)/r4iplat.com_Kernel_1.34 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4ipt.com_Kernel_3.2.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4ipt.com_Kernel_3.2.zip: directory
cd $(TOPDIR)/r4ipt.com_Kernel_3.2 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4isdhc.com.hk_Kernel_1.09b.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4isdhc.com.hk_Kernel_1.09b.zip: directory
cd $(TOPDIR)/r4isdhc.com.hk_Kernel_1.09b && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,23 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4isdhc.com_Dual-Core_Original_NEW_2013_BL2CK_1.30.4.zip r4isdhc.com_Original_Kernel_1.19B.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4isdhc.com_Dual-Core_Original_NEW_2013_BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.com_Original_Kernel_1.19B.zip: directory
cd $(TOPDIR)/r4isdhc.com_Original_Kernel_1.19B && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r r4isdhc.com_Dual-Core_*_FWUpdate* README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4isdhc.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4isdhc.com_Dual-Core_Kernel_1.38.zip r4isdhc.com_RTS_black_Kernel_3.2.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4isdhc.com_Dual-Core_Kernel_1.38.zip: directory
cd $(TOPDIR)/r4isdhc.com_Dual-Core_Kernel_1.38 && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.com_RTS_black_Kernel_3.2.zip: directory
cd $(TOPDIR)/r4isdhc.com_RTS_black_Kernel_3.2 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,23 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4isdhc.hk_Dual-Core_pre-2019_BL2CK_1.30.4.zip r4isdhc.hk_Silver_RTS_Lite_pre-2019_BL2CK_1.30.4.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4isdhc.hk_Dual-Core_pre-2019_BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.hk_Silver_RTS_Lite_pre-2019_BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4_Amaze3DS && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r r4isdhc.hk_2014-2017_FWUpdate* README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4isdhc.hk_2014-2019/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4isdhc.hk_Dual-Core_2014-2017_Kernel_1.71.zip r4isdhc.hk_Dual-Core_2014-2017_Kernel_1.72.zip r4isdhc.hk_Silver_RTS_Lite_2014-2017_Kernel_3.01.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4isdhc.hk_Dual-Core_2014-2017_Kernel_1.71.zip: directory
cd $(TOPDIR)/r4isdhc.hk_Dual-Core_2014-2017_Kernel_1.71 && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.hk_Dual-Core_2014-2017_Kernel_1.72.zip: directory
cd $(TOPDIR)/r4isdhc.hk_Dual-Core_2014-2017_Kernel_1.72 && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.hk_Silver_RTS_Lite_2014-2017_Kernel_3.01.zip: directory
cd $(TOPDIR)/r4isdhc.hk_Silver_RTS_Lite_2014-2017_Kernel_3.01 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory BL2CK_1.30.4.zip old
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4isdhc.in_2014/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4isdhc.in_Dual-Core_2014_Kernel_1.62.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4isdhc.in_Dual-Core_2014_Kernel_1.62.zip: directory
cd $(TOPDIR)/r4isdhc.in_Dual-Core_2014_Kernel_1.62 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,20 @@
.PHONY: package r4itt.net_3DS_NEW_RTS r4itt.net_black
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4itt.net_3DS_NEW_RTS r4itt.net_black
directory:
mkdir -p $(OUT)/$(BASE)
r4itt.net_3DS_NEW_RTS: directory
make -C $@
r4itt.net_black: directory
make -C $@
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4itt.net/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory BL2CK_1.30.4.zip old extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@
extdata: directory
cp -r r4itt.net_3DS_*_FWUpdate* $(OUT)/$(BASE)

View File

@ -0,0 +1,14 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4itt.net/r4itt.net_3DS_NEW_RTS/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../../out
export COMMON := $(TOPDIR)/../../../../common-kernels
package: directory r4itt.net_3DS_NEW_Kernel_2.37.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4itt.net_3DS_NEW_Kernel_2.37.zip: directory
cd $(TOPDIR)/r4itt.net_3DS_NEW_Kernel_2.37 && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4itt.net/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory R4iTT_black_Kernel_2.27.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
R4iTT_black_Kernel_2.27.zip: directory
cd $(TOPDIR)/R4iTT_black_Kernel_2.27 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp -r R4iTT_black_FWUpdate* $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4ixds.com_2014-black_2015-2016_BL2CK_1.30.4.zip old
directory:
mkdir -p $(OUT)/$(BASE)
r4ixds.com_2014-black_2015-2016_BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
old: directory
make -C $@

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4ixds.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4ixds.com_2014-black_2015-2016_Kernel_7.1.0.zip r4ixds.com_2017_Kernel_V8.10b.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4ixds.com_2014-black_2015-2016_Kernel_7.1.0.zip: directory
cd $(TOPDIR)/r4ixds.com_2014-black_2015-2016_Kernel_7.1.0 && zip -r $(OUT)/$(BASE)/$@ *
r4ixds.com_2017_Kernel_V8.10b.zip: directory
cd $(TOPDIR)/r4ixds.com_2017_Kernel_V8.10b && zip -r $(OUT)/$(BASE)/$@ *

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4neo.com_Kernel_1.35.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4neo.com_Kernel_1.35.zip: directory
cd $(TOPDIR)/r4neo.com_Kernel_1.35 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4new.com_Kernel_1.35.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4new.com_Kernel_1.35.zip: directory
cd $(TOPDIR)/r4new.com_Kernel_1.35 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4plus.net_Kernel_2.01.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4plus.net_Kernel_2.01.zip: directory
cd $(TOPDIR)/r4plus.net_Kernel_2.01 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory r4team.com_Kernel_1.19.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
r4team.com_Kernel_1.19.zip: directory
cd $(TOPDIR)/r4team.com_Kernel_1.19 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,20 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory BL2CK_1.30.4.zip R4_Ultra_AKAIO_1.8.6a.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
BL2CK_1.30.4.zip: directory
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
R4_Ultra_AKAIO_1.8.6a.zip: directory
cd $(TOPDIR)/R4_Ultra_AKAIO_1.8.6a && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp -r R4i_Ultra_F* README.txt $(OUT)/$(BASE)

View File

@ -0,0 +1,17 @@
.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := $(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../out
export COMMON := $(TOPDIR)/../../common-kernels
package: directory stargate-3ds.com_Kernel_1.0.zip extdata
directory:
mkdir -p $(OUT)/$(BASE)
stargate-3ds.com_Kernel_1.0.zip: directory
cd $(TOPDIR)/stargate-3ds.com_Kernel_1.0 && zip -r $(OUT)/$(BASE)/$@ *
extdata: directory
cp README.txt $(OUT)/$(BASE)