Browse Source

Build: pEp wide consistent Makefiles - add env var BUILD_CONF / change local.conf to build.conf

master^2
heck 2 years ago
parent
commit
1b76ec2393
  1. 16
      Makefile.conf
  2. 4
      build.conf.example

16
Makefile.conf

@ -3,18 +3,16 @@
# This file may be used under the terms of the GNU General Public License version 3
# see LICENSE.txt
HERE:=$(dir $(lastword $(MAKEFILE_LIST)))
BUILD_CONF?=./build.conf
-include $(BUILD_CONF)
TARGET=libpEpAdapter.a
# Build config
# Defaults
DEBUG=1
DEBUG?=debug
PREFIX?=$(HOME)
# Overrides
-include $(HERE)local.conf
# Constants
CXXFLAGS+=-std=c++11 -fPIC
CXXFLAGS+=-Wall -pedantic-errors -Wno-unused-parameter -Wno-reorder-ctor
@ -30,10 +28,10 @@ else ifneq (,$(findstring clang,$(CXX)))
CFLAGS+=-fcolor-diagnostics
endif
ifeq ($(DEBUG),1)
CXXFLAGS+=-g -O0
CFLAGS+=-g -O0
else
ifeq ($(DEBUG),release)
CXXFLAGS+=-DNDEBUG=1 -O3
CFLAGS+=-DNDEBUG=1 -O3
else
CXXFLAGS+=-g -O0
CFLAGS+=-g -O0
endif

4
local.conf.example → build.conf.example

@ -6,8 +6,8 @@
######### C++ Compiler #########
# Should work with clang and g++
# CXX=g++
# DEBUG=1 # DEBUG Build (Default)
# DEBUG=0 # RELEASE Build
# DEBUG=debug # DEBUG Build (Default)
# DEBUG=release # RELEASE Build
############# DIRS #############
# PREFIX=$(HOME)/local
Loading…
Cancel
Save