From 3973a24dfa13baaa66d0699ccd32f5931fe2f13c Mon Sep 17 00:00:00 2001 From: d0k3 Date: Sat, 29 Jul 2017 13:38:51 +0200 Subject: [PATCH] Include old entrypoints in the release archive --- Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 811f113..756601c 100644 --- a/Makefile +++ b/Makefile @@ -163,16 +163,16 @@ release: @rm -fr $(BUILD) $(OUTPUT_D) $(RELEASE) @$(MAKE) --no-print-directory binary @$(MAKE) --no-print-directory firm - #@-make --no-print-directory cakerop - #@-make --no-print-directory brahma + @-make --no-print-directory cakerop + @-make --no-print-directory brahma @[ -d $(RELEASE) ] || mkdir -p $(RELEASE) - #@[ -d $(RELEASE)/$(TARGET) ] || mkdir -p $(RELEASE)/$(TARGET) + @[ -d $(RELEASE)/$(TARGET) ] || mkdir -p $(RELEASE)/$(TARGET) @cp $(OUTPUT).bin $(RELEASE) @cp $(OUTPUT).firm $(RELEASE) - #@-cp $(OUTPUT).dat $(RELEASE) - #@-cp $(OUTPUT).nds $(RELEASE) - #@-cp $(OUTPUT).3dsx $(RELEASE)/$(TARGET) - #@-cp $(OUTPUT).smdh $(RELEASE)/$(TARGET) + @-cp $(OUTPUT).dat $(RELEASE) + @-cp $(OUTPUT).nds $(RELEASE) + @-cp $(OUTPUT).3dsx $(RELEASE)/$(TARGET) + @-cp $(OUTPUT).smdh $(RELEASE)/$(TARGET) @cp $(CURDIR)/README.md $(RELEASE) @cp $(CURDIR)/HelloScript.gm9 $(RELEASE) @cp -R $(CURDIR)/resources/gm9 $(RELEASE)/gm9 @@ -184,7 +184,7 @@ clean: @-$(MAKE) clean --no-print-directory -C CakeHax @-$(MAKE) clean --no-print-directory -C CakesROP @-$(MAKE) clean --no-print-directory -C BrahmaLoader - @rm -fr $(BUILD) $(OUTPUT_D) $(RELEASE) + @-rm -fr $(BUILD) $(OUTPUT_D) $(RELEASE) #---------------------------------------------------------------------------------