From e155f3ccd12038f2b2b306867db51403f66d68ac Mon Sep 17 00:00:00 2001 From: Chris Smowton Date: Fri, 2 Sep 2016 14:55:58 +0100 Subject: [PATCH] Support a config.local file, so it's easier to customise the build flags without annoying git --- src/config.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/config.inc b/src/config.inc index 440d36082df..34f91340f97 100644 --- a/src/config.inc +++ b/src/config.inc @@ -1,3 +1,5 @@ +CONFIGDIR := $(dir $(lastword $(MAKEFILE_LIST))) + # Build platform (use one of AUTO, Unix, OSX_Universal, MSVC, Cygwin, MinGW) BUILD_ENV = AUTO @@ -24,3 +26,5 @@ LIBZIPINC = ../../libzip/lib # Signing identity for MacOS Gatekeeper OSX_IDENTITY="Developer ID Application: Daniel Kroening" + +-include $(CONFIGDIR)/config.local