mirror of
				https://github.com/PurpleI2P/i2pd.git
				synced 2025-11-04 08:30:46 +00:00 
			
		
		
		
	
		
			Some checks failed
		
		
	
	Build on Windows / i686 (push) Has been cancelled
				
			Build Debian packages / bookworm (push) Has been cancelled
				
			Build Debian packages / bullseye (push) Has been cancelled
				
			Build containers / Building container for linux/amd64 (push) Has been cancelled
				
			Build Debian packages / buster (push) Has been cancelled
				
			Build on FreeBSD / with UPnP (push) Has been cancelled
				
			Build on OSX / With USE_UPNP=no (push) Has been cancelled
				
			Build on OSX / With USE_UPNP=yes (push) Has been cancelled
				
			Build on Windows / clang-x86_64 (push) Has been cancelled
				
			Build on Windows / ucrt-x86_64 (push) Has been cancelled
				
			Build on Windows / x86_64 (push) Has been cancelled
				
			Build on Windows / CMake clang-x86_64 (push) Has been cancelled
				
			Build on Windows / CMake i686 (push) Has been cancelled
				
			Build on Windows / CMake ucrt-x86_64 (push) Has been cancelled
				
			Build on Windows / CMake x86_64 (push) Has been cancelled
				
			Build containers / Building container for linux/arm64 (push) Has been cancelled
				
			Build on Windows / XP (push) Has been cancelled
				
			Build on Ubuntu / Make with USE_UPNP=no (push) Has been cancelled
				
			Build on Ubuntu / Make with USE_UPNP=yes (push) Has been cancelled
				
			Build on Ubuntu / CMake with -DWITH_UPNP=OFF (push) Has been cancelled
				
			Build on Ubuntu / CMake with -DWITH_UPNP=ON (push) Has been cancelled
				
			Build containers / Building container for linux/arm/v7 (push) Has been cancelled
				
			Build containers / Building container for linux/386 (push) Has been cancelled
				
			Build containers / Pushing merged manifest (push) Has been cancelled
				
			
		
			
				
	
	
		
			192 lines
		
	
	
	
		
			5.5 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			192 lines
		
	
	
	
		
			5.5 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
.DEFAULT_GOAL := all
 | 
						|
 | 
						|
SYS := $(shell $(CXX) -dumpmachine)
 | 
						|
 | 
						|
ifneq (, $(findstring darwin, $(SYS)))
 | 
						|
	SHARED_SUFFIX = dylib
 | 
						|
else ifneq (, $(findstring mingw, $(SYS))$(findstring windows-gnu, $(SYS))$(findstring cygwin, $(SYS)))
 | 
						|
	SHARED_SUFFIX = dll
 | 
						|
else
 | 
						|
	SHARED_SUFFIX = so
 | 
						|
endif
 | 
						|
 | 
						|
SHLIB := libi2pd.$(SHARED_SUFFIX)
 | 
						|
ARLIB := libi2pd.a
 | 
						|
SHLIB_LANG := libi2pdlang.$(SHARED_SUFFIX)
 | 
						|
ARLIB_LANG := libi2pdlang.a
 | 
						|
SHLIB_CLIENT := libi2pdclient.$(SHARED_SUFFIX)
 | 
						|
ARLIB_CLIENT := libi2pdclient.a
 | 
						|
SHLIB_WRAP := libi2pdwrapper.$(SHARED_SUFFIX)
 | 
						|
ARLIB_WRAP := libi2pdwrapper.a
 | 
						|
I2PD := i2pd
 | 
						|
 | 
						|
LIB_SRC_DIR := libi2pd
 | 
						|
LIB_CLIENT_SRC_DIR := libi2pd_client
 | 
						|
WRAP_SRC_DIR := libi2pd_wrapper
 | 
						|
LANG_SRC_DIR := i18n
 | 
						|
DAEMON_SRC_DIR := daemon
 | 
						|
 | 
						|
# import source files lists
 | 
						|
include filelist.mk
 | 
						|
 | 
						|
USE_STATIC      := $(or $(USE_STATIC),no)
 | 
						|
USE_UPNP        := $(or $(USE_UPNP),no)
 | 
						|
DEBUG           := $(or $(DEBUG),yes)
 | 
						|
 | 
						|
# for debugging purposes only, when commit hash needed in trunk builds in i2pd version string
 | 
						|
USE_GIT_VERSION := $(or $(USE_GIT_VERSION),no)
 | 
						|
 | 
						|
# for MacOS only, waiting for "1", not "yes"
 | 
						|
HOMEBREW        := $(or $(HOMEBREW),0)
 | 
						|
 | 
						|
ifeq ($(DEBUG),yes)
 | 
						|
	CXX_DEBUG = -g
 | 
						|
else
 | 
						|
	CXX_DEBUG = -Os
 | 
						|
	LD_DEBUG = -s
 | 
						|
endif
 | 
						|
 | 
						|
ifneq (, $(DESTDIR))
 | 
						|
	PREFIX = $(DESTDIR)
 | 
						|
endif
 | 
						|
 | 
						|
ifneq (, $(findstring darwin, $(SYS)))
 | 
						|
	DAEMON_SRC += $(DAEMON_SRC_DIR)/UnixDaemon.cpp
 | 
						|
	ifeq ($(HOMEBREW),1)
 | 
						|
		include Makefile.homebrew
 | 
						|
	else
 | 
						|
		include Makefile.osx
 | 
						|
	endif
 | 
						|
else ifneq (, $(findstring mingw, $(SYS))$(findstring windows-gnu, $(SYS))$(findstring cygwin, $(SYS)))
 | 
						|
	DAEMON_SRC += Win32/DaemonWin32.cpp Win32/Win32App.cpp Win32/Win32Service.cpp Win32/Win32NetState.cpp
 | 
						|
	include Makefile.mingw
 | 
						|
else ifneq (, $(findstring linux, $(SYS))$(findstring gnu, $(SYS)))
 | 
						|
	DAEMON_SRC += $(DAEMON_SRC_DIR)/UnixDaemon.cpp
 | 
						|
	include Makefile.linux
 | 
						|
else ifneq (, $(findstring freebsd, $(SYS))$(findstring openbsd, $(SYS)))
 | 
						|
	DAEMON_SRC += $(DAEMON_SRC_DIR)/UnixDaemon.cpp
 | 
						|
	include Makefile.bsd
 | 
						|
else ifneq (, $(findstring haiku, $(SYS)))
 | 
						|
	DAEMON_SRC += $(DAEMON_SRC_DIR)/UnixDaemon.cpp
 | 
						|
	include Makefile.haiku
 | 
						|
else ifneq (, $(findstring solaris, $(SYS)))
 | 
						|
	DAEMON_SRC += $(DAEMON_SRC_DIR)/UnixDaemon.cpp
 | 
						|
	include Makefile.solaris
 | 
						|
else # not supported
 | 
						|
	$(error Not supported platform)
 | 
						|
endif
 | 
						|
 | 
						|
INCFLAGS += -I$(LIB_SRC_DIR) -I$(LIB_CLIENT_SRC_DIR) -I$(LANG_SRC_DIR)
 | 
						|
DEFINES += -DOPENSSL_SUPPRESS_DEPRECATED
 | 
						|
NEEDED_CXXFLAGS += -MMD -MP
 | 
						|
 | 
						|
ifeq ($(USE_GIT_VERSION),yes)
 | 
						|
	GIT_VERSION := $(shell git describe --tags)
 | 
						|
	DEFINES += -DGITVER=$(GIT_VERSION)
 | 
						|
endif
 | 
						|
 | 
						|
LIB_OBJS        += $(patsubst %.cpp,obj/%.o,$(LIB_SRC))
 | 
						|
LIB_CLIENT_OBJS += $(patsubst %.cpp,obj/%.o,$(LIB_CLIENT_SRC))
 | 
						|
LANG_OBJS       += $(patsubst %.cpp,obj/%.o,$(LANG_SRC))
 | 
						|
DAEMON_OBJS     += $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC))
 | 
						|
WRAP_LIB_OBJS   += $(patsubst %.cpp,obj/%.o,$(WRAP_LIB_SRC))
 | 
						|
DEPS            += $(LIB_OBJS:.o=.d) $(LIB_CLIENT_OBJS:.o=.d) $(LANG_OBJS:.o=.d) $(DAEMON_OBJS:.o=.d) $(WRAP_LIB_OBJS:.o=.d)
 | 
						|
 | 
						|
## Build all code (libi2pd, libi2pdclient, libi2pdlang), link it to .a and build binary
 | 
						|
all: $(ARLIB) $(ARLIB_CLIENT) $(ARLIB_LANG) $(I2PD)
 | 
						|
 | 
						|
mk_obj_dir:
 | 
						|
	@mkdir -p obj/$(LIB_SRC_DIR)
 | 
						|
	@mkdir -p obj/$(LIB_CLIENT_SRC_DIR)
 | 
						|
	@mkdir -p obj/$(LANG_SRC_DIR)
 | 
						|
	@mkdir -p obj/$(DAEMON_SRC_DIR)
 | 
						|
	@mkdir -p obj/$(WRAP_SRC_DIR)
 | 
						|
	@mkdir -p obj/Win32
 | 
						|
 | 
						|
api: $(SHLIB) $(ARLIB)
 | 
						|
client: $(SHLIB_CLIENT) $(ARLIB_CLIENT)
 | 
						|
lang:  $(SHLIB_LANG) $(ARLIB_LANG)
 | 
						|
api_client: api client lang
 | 
						|
wrapper: api_client $(SHLIB_WRAP) $(ARLIB_WRAP)
 | 
						|
 | 
						|
## 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.
 | 
						|
 | 
						|
obj/%.o: %.cpp | mk_obj_dir
 | 
						|
	$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(DEFINES) $(INCFLAGS) -c -o $@ $<
 | 
						|
 | 
						|
# '-' is 'ignore if missing' on first run
 | 
						|
-include $(DEPS)
 | 
						|
 | 
						|
$(I2PD): $(DAEMON_OBJS) $(ARLIB) $(ARLIB_CLIENT) $(ARLIB_LANG)
 | 
						|
	$(CXX) $(DEFINES) $(LDFLAGS) -o $@ $^ $(LDLIBS)
 | 
						|
 | 
						|
$(SHLIB): $(LIB_OBJS)
 | 
						|
ifneq ($(USE_STATIC),yes)
 | 
						|
	$(CXX) $(LDFLAGS) -shared -o $@ $^ $(LDLIBS)
 | 
						|
endif
 | 
						|
 | 
						|
$(SHLIB_CLIENT): $(LIB_CLIENT_OBJS) $(SHLIB) $(SHLIB_LANG)
 | 
						|
ifneq ($(USE_STATIC),yes)
 | 
						|
	$(CXX) $(LDFLAGS) -shared -o $@ $^ $(LDLIBS) $(SHLIB) $(SHLIB_LANG)
 | 
						|
endif
 | 
						|
 | 
						|
$(SHLIB_WRAP): $(WRAP_LIB_OBJS)
 | 
						|
ifneq ($(USE_STATIC),yes)
 | 
						|
	$(CXX) $(LDFLAGS) -shared -o $@ $^ $(LDLIBS)
 | 
						|
endif
 | 
						|
 | 
						|
$(SHLIB_LANG): $(LANG_OBJS)
 | 
						|
ifneq ($(USE_STATIC),yes)
 | 
						|
	$(CXX) $(LDFLAGS) -shared -o $@ $^ $(LDLIBS)
 | 
						|
endif
 | 
						|
 | 
						|
$(ARLIB): $(LIB_OBJS)
 | 
						|
	$(AR) -r $@ $^
 | 
						|
 | 
						|
$(ARLIB_CLIENT): $(LIB_CLIENT_OBJS)
 | 
						|
	$(AR) -r $@ $^
 | 
						|
 | 
						|
$(ARLIB_WRAP): $(WRAP_LIB_OBJS)
 | 
						|
	$(AR) -r $@ $^
 | 
						|
 | 
						|
$(ARLIB_LANG): $(LANG_OBJS)
 | 
						|
	$(AR) -r $@ $^
 | 
						|
 | 
						|
clean:
 | 
						|
	$(RM) -r obj
 | 
						|
	$(RM) -r docs/generated
 | 
						|
	$(RM) $(I2PD) $(SHLIB) $(ARLIB) $(SHLIB_CLIENT) $(ARLIB_CLIENT) $(SHLIB_LANG) $(ARLIB_LANG) $(SHLIB_WRAP) $(ARLIB_WRAP)
 | 
						|
 | 
						|
strip: $(I2PD) $(SHLIB) $(SHLIB_CLIENT) $(SHLIB_LANG)
 | 
						|
	strip $^
 | 
						|
 | 
						|
LATEST_TAG=$(shell git describe --tags --abbrev=0 openssl)
 | 
						|
BRANCH=$(shell git rev-parse --abbrev-ref HEAD)
 | 
						|
dist:
 | 
						|
	git archive --format=tar.gz -9 --worktree-attributes \
 | 
						|
	    --prefix=i2pd_$(LATEST_TAG)/ $(LATEST_TAG) -o i2pd_$(LATEST_TAG).tar.gz
 | 
						|
 | 
						|
last-dist:
 | 
						|
	git archive --format=tar.gz -9 --worktree-attributes \
 | 
						|
	    --prefix=i2pd_$(LATEST_TAG)/ $(BRANCH) -o ../i2pd_$(LATEST_TAG).orig.tar.gz
 | 
						|
 | 
						|
doxygen:
 | 
						|
	doxygen -s docs/Doxyfile
 | 
						|
 | 
						|
.PHONY: all
 | 
						|
.PHONY: clean
 | 
						|
.PHONY: doxygen
 | 
						|
.PHONY: dist
 | 
						|
.PHONY: last-dist
 | 
						|
.PHONY: api
 | 
						|
.PHONY: api_client
 | 
						|
.PHONY: client
 | 
						|
.PHONY: lang
 | 
						|
.PHONY: mk_obj_dir
 | 
						|
.PHONY: install
 | 
						|
.PHONY: strip
 |