Created
March 30, 2015 03:22
-
-
Save aleks-f/3567fb62c058e747ae42 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# General Settings | |
# | |
LINKMODE ?= SHARED | |
# | |
# Define Tools | |
# | |
CC = clang | |
CXX = clang++ | |
LINK = $(CXX) | |
LIB = ar -cr | |
RANLIB = ranlib | |
SHLIB = $(CXX) -shared -Wl,-soname,$(notdir $@) -o $@ | |
SHLIBLN = $(POCO_BASE)/build/script/shlibln | |
DEP = $(POCO_BASE)/build/script/makedepend.gcc | |
STRIP = strip | |
SHELL = sh | |
RM = rm -rf | |
CP = cp | |
MKDIR = mkdir -p | |
# | |
# Extension for Shared Libraries | |
# | |
SHAREDLIBEXT = .so.$(target_version) | |
SHAREDLIBLINKEXT = .so | |
# | |
# Compiler and Linker Flags | |
# | |
CFLAGS = | |
CFLAGS32 = | |
CFLAGS64 = | |
CXXFLAGS = | |
CXXFLAGS32 = | |
CXXFLAGS64 = | |
LINKFLAGS = | |
LINKFLAGS32 = | |
LINKFLAGS64 = | |
STATICOPT_CC = | |
STATICOPT_CXX = | |
STATICOPT_LINK = -static | |
SHAREDOPT_CC = -fPIC | |
SHAREDOPT_CXX = -fPIC | |
SHAREDOPT_LINK = -Wl,-rpath,$(LIBPATH) | |
DEBUGOPT_CC = -g -D_DEBUG | |
DEBUGOPT_CXX = -g -D_DEBUG | |
DEBUGOPT_LINK = -g | |
RELEASEOPT_CC = -O2 -DNDEBUG | |
RELEASEOPT_CXX = -O2 -DNDEBUG | |
RELEASEOPT_LINK = -O2 | |
# | |
# System Specific Flags | |
# | |
SYSFLAGS = -D_REENTRANT -D_THREAD_SAFE | |
# | |
# System Specific Libraries | |
# | |
SYSLIBS = -lpthread |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment