diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1fcb152 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +out diff --git a/archive/3dslink.com/Makefile b/archive/3dslink.com/Makefile new file mode 100644 index 0000000..a04f9a7 --- /dev/null +++ b/archive/3dslink.com/Makefile @@ -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) diff --git a/archive/Ace3DS+_R4iLS/Makefile b/archive/Ace3DS+_R4iLS/Makefile new file mode 100644 index 0000000..6bf3612 --- /dev/null +++ b/archive/Ace3DS+_R4iLS/Makefile @@ -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) diff --git a/archive/Action_Replay/Makefile b/archive/Action_Replay/Makefile new file mode 100644 index 0000000..1b5d6b5 --- /dev/null +++ b/archive/Action_Replay/Makefile @@ -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)/$@ * diff --git a/archive/CycloDS/CycloDS_Evolution/Makefile b/archive/CycloDS/CycloDS_Evolution/Makefile new file mode 100644 index 0000000..b4db323 --- /dev/null +++ b/archive/CycloDS/CycloDS_Evolution/Makefile @@ -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)/$@ * diff --git a/archive/CycloDS/CycloDS_iEvolution/Makefile b/archive/CycloDS/CycloDS_iEvolution/Makefile new file mode 100644 index 0000000..0cc7b7b --- /dev/null +++ b/archive/CycloDS/CycloDS_iEvolution/Makefile @@ -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)/$@ * diff --git a/archive/CycloDS/Makefile b/archive/CycloDS/Makefile new file mode 100644 index 0000000..61ea6aa --- /dev/null +++ b/archive/CycloDS/Makefile @@ -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 $@ diff --git a/archive/DS-Xtreme/Makefile b/archive/DS-Xtreme/Makefile new file mode 100644 index 0000000..d6c444c --- /dev/null +++ b/archive/DS-Xtreme/Makefile @@ -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 $@ diff --git a/archive/DS-Xtreme/old/Makefile b/archive/DS-Xtreme/old/Makefile new file mode 100644 index 0000000..a3650ad --- /dev/null +++ b/archive/DS-Xtreme/old/Makefile @@ -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)/$@ * diff --git a/archive/EDGE/Makefile b/archive/EDGE/Makefile new file mode 100644 index 0000000..f1c8d8a --- /dev/null +++ b/archive/EDGE/Makefile @@ -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) diff --git a/archive/EZ-Flash/Makefile b/archive/EZ-Flash/Makefile new file mode 100644 index 0000000..cf825b8 --- /dev/null +++ b/archive/EZ-Flash/Makefile @@ -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)/$@ * diff --git a/archive/Gateway_Blue/Makefile b/archive/Gateway_Blue/Makefile new file mode 100644 index 0000000..ea5723d --- /dev/null +++ b/archive/Gateway_Blue/Makefile @@ -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) diff --git a/archive/N-Card/Makefile b/archive/N-Card/Makefile new file mode 100644 index 0000000..6ee8a8f --- /dev/null +++ b/archive/N-Card/Makefile @@ -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)/$@ * diff --git a/archive/R4_original_M3_Simply/Makefile b/archive/R4_original_M3_Simply/Makefile new file mode 100644 index 0000000..d18d866 --- /dev/null +++ b/archive/R4_original_M3_Simply/Makefile @@ -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) diff --git a/archive/SuperCard/DSONE/Makefile b/archive/SuperCard/DSONE/Makefile new file mode 100644 index 0000000..842adf4 --- /dev/null +++ b/archive/SuperCard/DSONE/Makefile @@ -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)/$@ * diff --git a/archive/SuperCard/DSONE_SDHC_DSONEi/Makefile b/archive/SuperCard/DSONE_SDHC_DSONEi/Makefile new file mode 100644 index 0000000..b71d570 --- /dev/null +++ b/archive/SuperCard/DSONE_SDHC_DSONEi/Makefile @@ -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) diff --git a/archive/SuperCard/DSTWO/Makefile b/archive/SuperCard/DSTWO/Makefile new file mode 100644 index 0000000..a4c38d0 --- /dev/null +++ b/archive/SuperCard/DSTWO/Makefile @@ -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) diff --git a/archive/SuperCard/Lite_Rumble/Makefile b/archive/SuperCard/Lite_Rumble/Makefile new file mode 100644 index 0000000..a8fac6b --- /dev/null +++ b/archive/SuperCard/Lite_Rumble/Makefile @@ -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) diff --git a/archive/SuperCard/Makefile b/archive/SuperCard/Makefile new file mode 100644 index 0000000..b649a87 --- /dev/null +++ b/archive/SuperCard/Makefile @@ -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) diff --git a/archive/YSMenu/Makefile b/archive/YSMenu/Makefile new file mode 100644 index 0000000..398ca61 --- /dev/null +++ b/archive/YSMenu/Makefile @@ -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) diff --git a/archive/acekard.cc/Makefile b/archive/acekard.cc/Makefile new file mode 100644 index 0000000..7b52bac --- /dev/null +++ b/archive/acekard.cc/Makefile @@ -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) diff --git a/archive/acekard.com/AceKard_2_2.1/Makefile b/archive/acekard.com/AceKard_2_2.1/Makefile new file mode 100644 index 0000000..12c6a88 --- /dev/null +++ b/archive/acekard.com/AceKard_2_2.1/Makefile @@ -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) diff --git a/archive/acekard.com/AceKard_2i/Makefile b/archive/acekard.com/AceKard_2i/Makefile new file mode 100644 index 0000000..8fcdf60 --- /dev/null +++ b/archive/acekard.com/AceKard_2i/Makefile @@ -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) diff --git a/archive/acekard.com/AceKard_AceKard+/Makefile b/archive/acekard.com/AceKard_AceKard+/Makefile new file mode 100644 index 0000000..5f3ca49 --- /dev/null +++ b/archive/acekard.com/AceKard_AceKard+/Makefile @@ -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)/$@ * diff --git a/archive/acekard.com/AceKard_RPG/Makefile b/archive/acekard.com/AceKard_RPG/Makefile new file mode 100644 index 0000000..f8813c3 --- /dev/null +++ b/archive/acekard.com/AceKard_RPG/Makefile @@ -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) diff --git a/archive/acekard.com/Makefile b/archive/acekard.com/Makefile new file mode 100644 index 0000000..534d06c --- /dev/null +++ b/archive/acekard.com/Makefile @@ -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 $@ diff --git a/archive/amazekard.com/Makefile b/archive/amazekard.com/Makefile new file mode 100644 index 0000000..037c38f --- /dev/null +++ b/archive/amazekard.com/Makefile @@ -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) diff --git a/archive/build.sh b/archive/build.sh new file mode 100644 index 0000000..a26a8fc --- /dev/null +++ b/archive/build.sh @@ -0,0 +1,3 @@ +for d in */ ; do + make -C "$d" +done diff --git a/archive/dsn5.com/Makefile b/archive/dsn5.com/Makefile new file mode 100644 index 0000000..a9a9e5e --- /dev/null +++ b/archive/dsn5.com/Makefile @@ -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) diff --git a/archive/ex4ds.com/Makefile b/archive/ex4ds.com/Makefile new file mode 100644 index 0000000..6aa59ac --- /dev/null +++ b/archive/ex4ds.com/Makefile @@ -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)/$@ * diff --git a/archive/g6flash.com_gbalpha.com/Makefile b/archive/g6flash.com_gbalpha.com/Makefile new file mode 100644 index 0000000..7b28865 --- /dev/null +++ b/archive/g6flash.com_gbalpha.com/Makefile @@ -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)/$@ * diff --git a/archive/ge.ndsi.in/Makefile b/archive/ge.ndsi.in/Makefile new file mode 100644 index 0000000..259de90 --- /dev/null +++ b/archive/ge.ndsi.in/Makefile @@ -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) diff --git a/archive/m3adapter.com/Makefile b/archive/m3adapter.com/Makefile new file mode 100644 index 0000000..ff7efd8 --- /dev/null +++ b/archive/m3adapter.com/Makefile @@ -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) diff --git a/archive/ndsill.net/Makefile b/archive/ndsill.net/Makefile new file mode 100644 index 0000000..69a76d8 --- /dev/null +++ b/archive/ndsill.net/Makefile @@ -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) diff --git a/archive/ndslr4.com/Makefile b/archive/ndslr4.com/Makefile new file mode 100644 index 0000000..5f59c1d --- /dev/null +++ b/archive/ndslr4.com/Makefile @@ -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) diff --git a/archive/pandora-ds.com/Makefile b/archive/pandora-ds.com/Makefile new file mode 100644 index 0000000..3dde0c8 --- /dev/null +++ b/archive/pandora-ds.com/Makefile @@ -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)/$@ * diff --git a/archive/r4-dsl.net/Makefile b/archive/r4-dsl.net/Makefile new file mode 100644 index 0000000..0d1c3cb --- /dev/null +++ b/archive/r4-dsl.net/Makefile @@ -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) diff --git a/archive/r4-new.com/Makefile b/archive/r4-new.com/Makefile new file mode 100644 index 0000000..4b8ec8d --- /dev/null +++ b/archive/r4-new.com/Makefile @@ -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) diff --git a/archive/r4.ndsl.cc/Makefile b/archive/r4.ndsl.cc/Makefile new file mode 100644 index 0000000..6043f08 --- /dev/null +++ b/archive/r4.ndsl.cc/Makefile @@ -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) diff --git a/archive/r4ds-a.com/Makefile b/archive/r4ds-a.com/Makefile new file mode 100644 index 0000000..4f736fe --- /dev/null +++ b/archive/r4ds-a.com/Makefile @@ -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) diff --git a/archive/r4ds-i.com.cn/Makefile b/archive/r4ds-i.com.cn/Makefile new file mode 100644 index 0000000..73a4d42 --- /dev/null +++ b/archive/r4ds-i.com.cn/Makefile @@ -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) diff --git a/archive/r4dsixl3d.com/Makefile b/archive/r4dsixl3d.com/Makefile new file mode 100644 index 0000000..ff8faaa --- /dev/null +++ b/archive/r4dsixl3d.com/Makefile @@ -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) diff --git a/archive/r4dspro.com/Makefile b/archive/r4dspro.com/Makefile new file mode 100644 index 0000000..675a05c --- /dev/null +++ b/archive/r4dspro.com/Makefile @@ -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) diff --git a/archive/r4dspro.com/old/Makefile b/archive/r4dspro.com/old/Makefile new file mode 100644 index 0000000..47287bc --- /dev/null +++ b/archive/r4dspro.com/old/Makefile @@ -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)/$@ * diff --git a/archive/r4i-advance.com/Makefile b/archive/r4i-advance.com/Makefile new file mode 100644 index 0000000..382e8f4 --- /dev/null +++ b/archive/r4i-advance.com/Makefile @@ -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) diff --git a/archive/r4i-best.com/Makefile b/archive/r4i-best.com/Makefile new file mode 100644 index 0000000..c2bac4d --- /dev/null +++ b/archive/r4i-best.com/Makefile @@ -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) diff --git a/archive/r4i-gold.com/Makefile b/archive/r4i-gold.com/Makefile new file mode 100644 index 0000000..35fdbb9 --- /dev/null +++ b/archive/r4i-gold.com/Makefile @@ -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)/$@ * diff --git a/archive/r4i-gold.hk/Makefile b/archive/r4i-gold.hk/Makefile new file mode 100644 index 0000000..9bf83c7 --- /dev/null +++ b/archive/r4i-gold.hk/Makefile @@ -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)/$@ * diff --git a/archive/r4i-gold.me/Makefile b/archive/r4i-gold.me/Makefile new file mode 100644 index 0000000..d4d4fff --- /dev/null +++ b/archive/r4i-gold.me/Makefile @@ -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)/$@ * diff --git a/archive/r4i.cn/Makefile b/archive/r4i.cn/Makefile new file mode 100644 index 0000000..06eee97 --- /dev/null +++ b/archive/r4i.cn/Makefile @@ -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) diff --git a/archive/r4i.ndsi.in/Makefile b/archive/r4i.ndsi.in/Makefile new file mode 100644 index 0000000..b978cf9 --- /dev/null +++ b/archive/r4i.ndsi.in/Makefile @@ -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)/$@ * diff --git a/archive/r4i3d.com/Makefile b/archive/r4i3d.com/Makefile new file mode 100644 index 0000000..325e25f --- /dev/null +++ b/archive/r4i3d.com/Makefile @@ -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) diff --git a/archive/r4i3d.com/old/Makefile b/archive/r4i3d.com/old/Makefile new file mode 100644 index 0000000..4765d3d --- /dev/null +++ b/archive/r4i3d.com/old/Makefile @@ -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)/$@ * diff --git a/archive/r4ids.cn/Makefile b/archive/r4ids.cn/Makefile new file mode 100644 index 0000000..d028b02 --- /dev/null +++ b/archive/r4ids.cn/Makefile @@ -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) diff --git a/archive/r4ids.cn/old/Makefile b/archive/r4ids.cn/old/Makefile new file mode 100644 index 0000000..717d33e --- /dev/null +++ b/archive/r4ids.cn/old/Makefile @@ -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)/$@ * diff --git a/archive/r4ids.com/Makefile b/archive/r4ids.com/Makefile new file mode 100644 index 0000000..94c177c --- /dev/null +++ b/archive/r4ids.com/Makefile @@ -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) diff --git a/archive/r4ids.com/old/Makefile b/archive/r4ids.com/old/Makefile new file mode 100644 index 0000000..2c63d57 --- /dev/null +++ b/archive/r4ids.com/old/Makefile @@ -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)/$@ * diff --git a/archive/r4idsn.com/Makefile b/archive/r4idsn.com/Makefile new file mode 100644 index 0000000..d550a1c --- /dev/null +++ b/archive/r4idsn.com/Makefile @@ -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) diff --git a/archive/r4igold.cc/Makefile b/archive/r4igold.cc/Makefile new file mode 100644 index 0000000..28eb025 --- /dev/null +++ b/archive/r4igold.cc/Makefile @@ -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) diff --git a/archive/r4iids.com/Makefile b/archive/r4iids.com/Makefile new file mode 100644 index 0000000..5f3a496 --- /dev/null +++ b/archive/r4iids.com/Makefile @@ -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) diff --git a/archive/r4iiisdhc.com/Makefile b/archive/r4iiisdhc.com/Makefile new file mode 100644 index 0000000..120665c --- /dev/null +++ b/archive/r4iiisdhc.com/Makefile @@ -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) diff --git a/archive/r4infinity.com/Dual-Core_i/Makefile b/archive/r4infinity.com/Dual-Core_i/Makefile new file mode 100644 index 0000000..16a8904 --- /dev/null +++ b/archive/r4infinity.com/Dual-Core_i/Makefile @@ -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) diff --git a/archive/r4infinity.com/Dual-Core_i/old/Makefile b/archive/r4infinity.com/Dual-Core_i/old/Makefile new file mode 100644 index 0000000..6db039b --- /dev/null +++ b/archive/r4infinity.com/Dual-Core_i/old/Makefile @@ -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)/$@ * diff --git a/archive/r4infinity.com/Makefile b/archive/r4infinity.com/Makefile new file mode 100644 index 0000000..9e25cde --- /dev/null +++ b/archive/r4infinity.com/Makefile @@ -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 $@ diff --git a/archive/r4infinity.com/R4infinity_3/Makefile b/archive/r4infinity.com/R4infinity_3/Makefile new file mode 100644 index 0000000..22628e6 --- /dev/null +++ b/archive/r4infinity.com/R4infinity_3/Makefile @@ -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) diff --git a/archive/r4infinity.com/R4infinity_3/old/Makefile b/archive/r4infinity.com/R4infinity_3/old/Makefile new file mode 100644 index 0000000..899a62d --- /dev/null +++ b/archive/r4infinity.com/R4infinity_3/old/Makefile @@ -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)/$@ * diff --git a/archive/r4infinity.com/original/Makefile b/archive/r4infinity.com/original/Makefile new file mode 100644 index 0000000..16a8904 --- /dev/null +++ b/archive/r4infinity.com/original/Makefile @@ -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) diff --git a/archive/r4infinity.com/original/old/Makefile b/archive/r4infinity.com/original/old/Makefile new file mode 100644 index 0000000..b9c4d0d --- /dev/null +++ b/archive/r4infinity.com/original/old/Makefile @@ -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)/$@ * diff --git a/archive/r4iplat.com/Makefile b/archive/r4iplat.com/Makefile new file mode 100644 index 0000000..37c5045 --- /dev/null +++ b/archive/r4iplat.com/Makefile @@ -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) diff --git a/archive/r4ipt.com/Makefile b/archive/r4ipt.com/Makefile new file mode 100644 index 0000000..cb4f903 --- /dev/null +++ b/archive/r4ipt.com/Makefile @@ -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)/$@ * diff --git a/archive/r4isdhc.com.hk/Makefile b/archive/r4isdhc.com.hk/Makefile new file mode 100644 index 0000000..d77dec5 --- /dev/null +++ b/archive/r4isdhc.com.hk/Makefile @@ -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)/$@ * diff --git a/archive/r4isdhc.com/Makefile b/archive/r4isdhc.com/Makefile new file mode 100644 index 0000000..d45df66 --- /dev/null +++ b/archive/r4isdhc.com/Makefile @@ -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) diff --git a/archive/r4isdhc.com/old/Makefile b/archive/r4isdhc.com/old/Makefile new file mode 100644 index 0000000..34e1c74 --- /dev/null +++ b/archive/r4isdhc.com/old/Makefile @@ -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)/$@ * diff --git a/archive/r4isdhc.hk_2014-2019/Makefile b/archive/r4isdhc.hk_2014-2019/Makefile new file mode 100644 index 0000000..18cd7fd --- /dev/null +++ b/archive/r4isdhc.hk_2014-2019/Makefile @@ -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) diff --git a/archive/r4isdhc.hk_2014-2019/old/Makefile b/archive/r4isdhc.hk_2014-2019/old/Makefile new file mode 100644 index 0000000..82b7ac7 --- /dev/null +++ b/archive/r4isdhc.hk_2014-2019/old/Makefile @@ -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)/$@ * diff --git a/archive/r4isdhc.in_2014/Makefile b/archive/r4isdhc.in_2014/Makefile new file mode 100644 index 0000000..6395b42 --- /dev/null +++ b/archive/r4isdhc.in_2014/Makefile @@ -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 $@ diff --git a/archive/r4isdhc.in_2014/old/Makefile b/archive/r4isdhc.in_2014/old/Makefile new file mode 100644 index 0000000..cb06cfa --- /dev/null +++ b/archive/r4isdhc.in_2014/old/Makefile @@ -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)/$@ * diff --git a/archive/r4itt.net/Makefile b/archive/r4itt.net/Makefile new file mode 100644 index 0000000..87aae37 --- /dev/null +++ b/archive/r4itt.net/Makefile @@ -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) diff --git a/archive/r4itt.net/r4itt.net_3DS_NEW_RTS/Makefile b/archive/r4itt.net/r4itt.net_3DS_NEW_RTS/Makefile new file mode 100644 index 0000000..7b78c40 --- /dev/null +++ b/archive/r4itt.net/r4itt.net_3DS_NEW_RTS/Makefile @@ -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) diff --git a/archive/r4itt.net/r4itt.net_3DS_NEW_RTS/old/Makefile b/archive/r4itt.net/r4itt.net_3DS_NEW_RTS/old/Makefile new file mode 100644 index 0000000..b0f3d9f --- /dev/null +++ b/archive/r4itt.net/r4itt.net_3DS_NEW_RTS/old/Makefile @@ -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)/$@ * diff --git a/archive/r4itt.net/r4itt.net_black/Makefile b/archive/r4itt.net/r4itt.net_black/Makefile new file mode 100644 index 0000000..c780608 --- /dev/null +++ b/archive/r4itt.net/r4itt.net_black/Makefile @@ -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) diff --git a/archive/r4ixds.com/Makefile b/archive/r4ixds.com/Makefile new file mode 100644 index 0000000..57cbdd2 --- /dev/null +++ b/archive/r4ixds.com/Makefile @@ -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 $@ diff --git a/archive/r4ixds.com/old/Makefile b/archive/r4ixds.com/old/Makefile new file mode 100644 index 0000000..50d7465 --- /dev/null +++ b/archive/r4ixds.com/old/Makefile @@ -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)/$@ * diff --git a/archive/r4neo.com/Makefile b/archive/r4neo.com/Makefile new file mode 100644 index 0000000..96c8046 --- /dev/null +++ b/archive/r4neo.com/Makefile @@ -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) diff --git a/archive/r4new.com/Makefile b/archive/r4new.com/Makefile new file mode 100644 index 0000000..48ecde8 --- /dev/null +++ b/archive/r4new.com/Makefile @@ -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) diff --git a/archive/r4plus.net/Makefile b/archive/r4plus.net/Makefile new file mode 100644 index 0000000..a7a9f80 --- /dev/null +++ b/archive/r4plus.net/Makefile @@ -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) diff --git a/archive/r4team.com/Makefile b/archive/r4team.com/Makefile new file mode 100644 index 0000000..90b62e2 --- /dev/null +++ b/archive/r4team.com/Makefile @@ -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) diff --git a/archive/r4ultra.com/Makefile b/archive/r4ultra.com/Makefile new file mode 100644 index 0000000..351cd13 --- /dev/null +++ b/archive/r4ultra.com/Makefile @@ -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) diff --git a/archive/stargate-3ds.com/Makefile b/archive/stargate-3ds.com/Makefile new file mode 100644 index 0000000..b47279a --- /dev/null +++ b/archive/stargate-3ds.com/Makefile @@ -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)