From c5729b1e9b2f4de1e8f789dd77887f5fc6f29959 Mon Sep 17 00:00:00 2001 From: Vitalii Elenhaupt Date: Sun, 21 Jan 2018 09:51:57 +0200 Subject: [PATCH] Remove --release flag fixes #31 It is still possible to do: ``` $ CRFLAGS=--release make bin ``` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d95adcbe..4318ab9d 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ PREFIX ?= /usr/local SHARD_BIN ?= ../../bin build: - $(CRYSTAL_BIN) build --release --no-debug -o bin/ameba src/cli.cr $(CRFLAGS) + $(CRYSTAL_BIN) build --no-debug -o bin/ameba src/cli.cr $(CRFLAGS) clean: rm -f ./bin/ameba install: build