From: Jérôme Benoit Date: Mon, 6 Apr 2020 18:24:11 +0000 (+0200) Subject: Makefile: allow to override the build type variable. X-Git-Url: https://git.piment-noir.org/?p=TP_AL_C.git;a=commitdiff_plain;h=HEAD Makefile: allow to override the build type variable. Signed-off-by: Jérôme Benoit --- diff --git a/lexer/Makefile b/lexer/Makefile index bc63f97..7d9f41e 100644 --- a/lexer/Makefile +++ b/lexer/Makefile @@ -13,7 +13,7 @@ # http://make.mad-scientist.net/papers/advanced-auto-dependency-generation/#tldr BINARY_NAME=lexer #BUILD_TYPE=debug -BUILD_TYPE=release +BUILD_TYPE?=release # ==================================== # DO NOT CHANGE STUFF BEYOND THIS LINE