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.
28 lines
716 B
28 lines
716 B
|
|
CC = g++ |
|
CFLAGS = -g -Wall -std=c++0x |
|
OBJECTS = obj/i2p.o obj/base64.o obj/NTCPSession.o obj/RouterInfo.o obj/Transports.o \ |
|
obj/RouterContext.o obj/NetDb.o obj/LeaseSet.o obj/Tunnel.o obj/TunnelEndpoint.o \ |
|
obj/TunnelGateway.o obj/TransitTunnel.o obj/I2NPProtocol.o obj/Log.o obj/Garlic.o \ |
|
obj/HTTPServer.o obj/Streaming.o obj/Identity.o obj/SSU.o obj/util.o |
|
INCFLAGS = |
|
LDFLAGS = -Wl,-rpath,/usr/local/lib -lcryptopp -lboost_system -lboost_filesystem -lpthread |
|
LIBS = |
|
|
|
all: i2p |
|
|
|
i2p: $(OBJECTS:obj/%=obj/%) |
|
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS) |
|
|
|
.SUFFIXES: |
|
.SUFFIXES: .c .cc .C .cpp .o |
|
|
|
obj/%.o : %.cpp |
|
mkdir -p obj |
|
$(CC) -o $@ $< -c $(CFLAGS) $(INCFLAGS) |
|
|
|
clean: |
|
rm -fr obj |
|
|
|
.PHONY: all |
|
.PHONY: clean
|
|
|