From 0c1e116c1ed29dafd80496c5ed690e5ffa4bc5cd Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Sun, 2 Feb 2025 13:04:22 -0500 Subject: [PATCH] build: More concise build context. --- GNUmakefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 96becb95..c5af2038 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -71,12 +71,7 @@ $(error Unexpected host platform $(UNAME_S).) endif # Everything is set above. -$(info VERSION_NUMBER = $(VERSION_NUMBER)) -$(info HAVE_ANDROID = $(HAVE_ANDROID)) -$(info HAVE_WIN = $(HAVE_WIN)) -$(info HAVE_CROSS_AARCH64 = $(HAVE_CROSS_AARCH64)) -$(info HAVE_LINUX_IOS = $(HAVE_LINUX_IOS)) -$(info USE_SYSTEM_SSL = $(USE_SYSTEM_SSL)) +$(info Building Tilde Friends $(VERSION_NUMBER) android=$(if $(HAVE_ANDROID),1,0) win=$(if $(HAVE_WIN),1,0) cross_aarch64=$(if $(HAVE_CROSS_AARCH64),1,0) cross_ios=$(if $(HAVE_LINUX_IOS),1,0) system_ssl=$(if $(USE_SYSTEM_SSL),1,0)) CFLAGS += \ -std=gnu11 \