mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
52 lines
1.1 KiB
UNAME := $(shell uname -s) |
|
SHLIB := libi2pd.so |
|
I2PD := i2p |
|
|
|
include filelist.mk |
|
|
|
USE_AESNI := yes |
|
USE_STATIC := no |
|
|
|
ifeq ($(UNAME),Darwin) |
|
DAEMON_SRC += DaemonLinux.cpp |
|
include Makefile.osx |
|
else ifeq ($(UNAME),FreeBSD) |
|
DAEMON_SRC += DaemonLinux.cpp |
|
include Makefile.bsd |
|
else ifeq ($(UNAME),Linux) |
|
DAEMON_SRC += DaemonLinux.cpp |
|
include Makefile.linux |
|
else # win32 |
|
DAEMON_SRC += DaemonWin32.cpp |
|
endif |
|
|
|
all: obj $(SHLIB) $(I2PD) |
|
|
|
obj: |
|
mkdir -p obj |
|
|
|
obj/%.o : %.cpp %.h |
|
$(CXX) $(CXXFLAGS) $(INCFLAGS) -c -o $@ $< |
|
|
|
# weaker rule for building files without headers |
|
obj/%.o : %.cpp |
|
$(CXX) $(CXXFLAGS) $(INCFLAGS) -c -o $@ $< |
|
|
|
$(I2PD): $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC)) |
|
$(CXX) -o $@ $^ $(LDFLAGS) $(LDLIBS) |
|
|
|
$(SHLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC)) |
|
$(CXX) -o $@ $^ $(LDFLAGS) $(LDLIBS) -shared |
|
|
|
clean: |
|
rm -fr obj $(I2PD) $(SHLIB) |
|
|
|
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 |
|
.PHONY: dist
|
|
|