i2pd/Makefile

89 lines
2.4 KiB
Makefile
Raw Normal View History

UNAME := $(shell uname -s)
SHLIB := libi2pd.so
2015-11-03 17:15:49 +03:00
ARLIB := libi2pd.a
SHLIB_CLIENT := libi2pdclient.so
ARLIB_CLIENT := libi2pdclient.a
I2PD := i2p
GREP := fgrep
2014-12-24 08:07:52 +03:00
DEPS := obj/make.dep
2013-12-10 17:05:42 +04:00
include filelist.mk
2014-12-12 11:22:03 +03:00
USE_AESNI := yes
USE_STATIC := no
ifeq ($(UNAME),Darwin)
2014-12-17 23:46:19 +03:00
DAEMON_SRC += DaemonLinux.cpp
include Makefile.osx
else ifeq ($(shell echo $(UNAME) | $(GREP) -c FreeBSD),1)
2014-12-17 23:46:19 +03:00
DAEMON_SRC += DaemonLinux.cpp
2014-08-11 17:51:53 +04:00
include Makefile.bsd
else ifeq ($(UNAME),Linux)
2014-12-17 23:46:19 +03:00
DAEMON_SRC += DaemonLinux.cpp
include Makefile.linux
else # win32 mingw
DAEMON_SRC += DaemonWin32.cpp Win32/Win32Service.cpp
include Makefile.mingw
2014-06-02 18:05:04 +04:00
endif
all: mk_build_dir $(ARLIB) $(ARLIB_CLIENT) $(I2PD)
mk_build_dir:
mkdir -p obj
api: mk_build_dir $(SHLIB) $(ARLIB)
api_client: mk_build_dir $(SHLIB) $(ARLIB) $(SHLIB_CLIENT) $(ARLIB_CLIENT)
2014-12-17 23:46:19 +03:00
## NOTE: The NEEDED_CXXFLAGS are here so that CXXFLAGS can be specified at build time
## **without** overwriting the CXXFLAGS which we need in order to build.
## For example, when adding 'hardening flags' to the build
## (e.g. -fstack-protector-strong -Wformat -Werror=format-security), we do not want to remove
## -std=c++11. If you want to remove this variable please do so in a way that allows setting
## custom FLAGS to work at build-time.
2014-12-24 08:07:52 +03:00
deps:
@mkdir -p obj
2014-12-24 08:07:52 +03:00
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) -MM *.cpp > $(DEPS)
@sed -i -e '/\.o:/ s/^/obj\//' $(DEPS)
2014-12-24 08:07:52 +03:00
obj/%.o : %.cpp
@mkdir -p obj
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) $(CPU_FLAGS) -c -o $@ $<
2014-12-24 08:07:52 +03:00
# '-' is 'ignore if missing' on first run
-include $(DEPS)
2015-11-03 17:15:49 +03:00
$(I2PD): $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC)) $(ARLIB) $(ARLIB_CLIENT)
$(CXX) -o $@ $^ $(LDLIBS) $(LDFLAGS)
2014-12-12 10:39:35 +03:00
$(SHLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC))
ifneq ($(USE_STATIC),yes)
$(CXX) $(LDFLAGS) $(LDLIBS) -shared -o $@ $^
endif
2015-11-03 17:15:49 +03:00
$(SHLIB_CLIENT): $(patsubst %.cpp,obj/%.o,$(LIB_CLIENT_SRC))
$(CXX) $(LDFLAGS) $(LDLIBS) -shared -o $@ $^
$(ARLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC))
ar -r $@ $^
$(ARLIB_CLIENT): $(patsubst %.cpp,obj/%.o,$(LIB_CLIENT_SRC))
ar -r $@ $^
clean:
2014-12-22 00:48:30 +03:00
rm -rf obj
2015-11-03 17:15:49 +03:00
$(RM) $(I2PD) $(SHLIB) $(ARLIB) $(SHLIB_CLIENT) $(ARLIB_CLIENT)
2014-12-12 16:51:23 +03:00
LATEST_TAG=$(shell git describe --tags --abbrev=0 master)
dist:
git archive --format=tar.gz -9 --worktree-attributes \
--prefix=i2pd_$(LATEST_TAG)/ $(LATEST_TAG) -o i2pd_$(LATEST_TAG).tar.gz
.PHONY: all
.PHONY: clean
2014-12-24 08:07:52 +03:00
.PHONY: deps
2014-12-12 16:51:23 +03:00
.PHONY: dist
2014-12-20 23:10:44 +03:00
.PHONY: api
.PHONY: api_client
.PHONY: mk_build_dir