From 1934dbc427f0bccb399067d1f3b2c07b98768406 Mon Sep 17 00:00:00 2001 From: James Duley Date: Mon, 20 Jul 2015 00:33:27 +1200 Subject: [PATCH] Make names configurable with config file --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 15f64499f..1454a5c09 100644 --- a/Makefile +++ b/Makefile @@ -60,10 +60,10 @@ smallify = $(subst $(SPACE),-,$(call lc,$1)) # Naming for binaries and packaging etc,. ORG_BIG_NAME := LibrePilot -GCS_BIG_NAME := ${ORG_BIG_NAME} GCS +GCS_BIG_NAME = ${ORG_BIG_NAME} GCS # These should be lowercase with no spaces -ORG_SMALL_NAME := $(call smallify,$(ORG_BIG_NAME)) -GCS_SMALL_NAME := $(call smallify,$(GCS_BIG_NAME)) +ORG_SMALL_NAME = $(call smallify,$(ORG_BIG_NAME)) +GCS_SMALL_NAME = $(call smallify,$(GCS_BIG_NAME)) # Set up default build configurations (debug | release) GCS_BUILD_CONF := release