From bb239b4f699c4b84d1e69038bd5ccd96efb46ec2 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Mon, 11 Oct 2021 17:08:31 +0300 Subject: [PATCH] [Makefile] Set default build type to debug --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index bdfa59da37..8716372b25 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ endif # We differentiate between release / debug build types using the BUILD_TYPE # environment variable. # +BUILD_TYPE ?= debug ifeq ($(BUILD_TYPE),release) PG_CONFIGURE_OPTS = --enable-debug PG_CFLAGS = -O2 -g3 $(CFLAGS)