mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 08:00:38 +03:00
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
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
|