From f095868d881c7a46d63e221d5440869ce25cf087 Mon Sep 17 00:00:00 2001 From: Markin Igor <markin.io210@gmail.com> Date: Wed, 7 Aug 2019 18:11:26 +0500 Subject: [PATCH] Replace all scripts with Makefile --- Makefile | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index d4a67bb..d3f601e 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,16 @@ -flavor=production -entryPoint=main.dart - -iosBundleName=Vereign -iosScheme=production -iosConfiguration=Release-production +flavor=development +entryPoint=main-dev.dart +iosBundleName=Vereign-dev +iosScheme=development +iosConfiguration=Release-development ifeq ($(target), development) - flavor=development - entryPoint=main-dev.dart - iosBundleName=Vereign-dev - iosScheme=development - iosConfiguration=Release-development + flavor=production + entryPoint=main.dart + iosBundleName=Vereign + iosScheme=production + iosConfiguration=Release-production endif .PHONY: all build-ios build-android -- GitLab