build
This commit is contained in:
parent
9934ea4044
commit
12ba674107
50
build/gcc/makefile
Normal file
50
build/gcc/makefile
Normal file
@ -0,0 +1,50 @@
|
||||
SRC_DIR=../../src
|
||||
_SOURCES = factory.cpp formatters.cpp line_logger.cpp os.cpp
|
||||
|
||||
SOURCES = $(patsubst %,$(SRC_DIR)/%,$(_SOURCES))
|
||||
OBJS_RELEASE = $(patsubst %.cpp,release/%.o,$(_SOURCES))
|
||||
OBJS_DEBUG = $(patsubst %.cpp,debug/%.o,$(_SOURCES))
|
||||
|
||||
|
||||
#$(info OBJS: ${OBJS})
|
||||
|
||||
CXX = g++
|
||||
CXXFLAGS = -Wall -std=c++11 -pthread -I../../include
|
||||
CXX_RELEASE_FLAGS = -O3 -flto
|
||||
CXX_DEBUG_FLAGS= -g
|
||||
|
||||
OUTLIB_RELEASE = libc11log.a
|
||||
OUTLIB_DEBUG = libc11log-debug.a
|
||||
|
||||
|
||||
.PHONY: all mkdirs release debug build clean
|
||||
|
||||
all: release
|
||||
|
||||
release: CXXFLAGS += $(CXX_RELEASE_FLAGS)
|
||||
release: mkdirs build-release
|
||||
|
||||
|
||||
debug: CXXFLAGS += $(CXX_DEBUG_FLAGS)
|
||||
debug: mkdirs build-debug
|
||||
|
||||
mkdirs:
|
||||
@mkdir -p release debug
|
||||
|
||||
|
||||
build-release: $(OBJS_RELEASE)
|
||||
ar rvs $(OUTLIB_RELEASE) $^
|
||||
|
||||
build-debug: $(OBJS_DEBUG)
|
||||
ar rvs $(OUTLIB_DEBUG) $^
|
||||
|
||||
release/%.o: $(SRC_DIR)/%.cpp
|
||||
$(CXX) -c $< -o $@ $(CXXFLAGS)
|
||||
|
||||
debug/%.o: $(SRC_DIR)/%.cpp
|
||||
$(CXX) -c $< -o $@ $(CXXFLAGS)
|
||||
|
||||
clean:
|
||||
rm -rf release debug $(OUTLIB_RELEASE) $(OUTLIB_DEBUG)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user