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.
24 lines
1.0 KiB
24 lines
1.0 KiB
COMMON_SRC = \ |
|
CryptoConst.cpp Datagram.cpp Garlic.cpp I2NPProtocol.cpp LeaseSet.cpp \ |
|
Log.cpp NTCPSession.cpp NetDb.cpp Profiling.cpp Reseed.cpp RouterContext.cpp \ |
|
RouterInfo.cpp SSU.cpp SSUSession.cpp SSUData.cpp Streaming.cpp Identity.cpp \ |
|
TransitTunnel.cpp Transports.cpp Tunnel.cpp TunnelEndpoint.cpp TunnelPool.cpp \ |
|
TunnelGateway.cpp Destination.cpp UPnP.cpp util.cpp aes.cpp base64.cpp |
|
|
|
|
|
ifeq ($(UNAME),Darwin) |
|
# This is needed on OS X for some reason I don't understand (yet). |
|
# Else will get linker error about unknown symbols. - torkel |
|
COMMON_SRC += \ |
|
AddressBook.cpp BOB.cpp ClientContext.cpp Daemon.cpp I2PTunnel.cpp I2PService.cpp SAM.cpp SOCKS.cpp \ |
|
UPnP.cpp HTTPServer.cpp HTTPProxy.cpp i2p.cpp DaemonLinux.cpp I2PControl.cpp |
|
endif |
|
|
|
|
|
# also: Daemon{Linux,Win32}.cpp will be added later |
|
DAEMON_SRC = $(COMMON_SRC) \ |
|
AddressBook.cpp BOB.cpp ClientContext.cpp Daemon.cpp I2PTunnel.cpp I2PService.cpp \ |
|
SAM.cpp SOCKS.cpp HTTPServer.cpp HTTPProxy.cpp I2PControl.cpp i2p.cpp |
|
|
|
LIB_SRC := $(COMMON_SRC) \ |
|
api.cpp
|
|
|