i2pd/filelist.mk

34 lines
1.3 KiB
Makefile
Raw Normal View History

COMMON_SRC = \
2015-07-27 23:17:31 +03:00
transport/NTCPSession.cpp transport/SSU.cpp transport/SSUSession.cpp \
transport/SSUData.cpp transport/Transports.cpp \
2015-07-30 16:34:56 +03:00
util/util.cpp util/base64.cpp util/Log.cpp \
2015-07-28 23:03:39 +03:00
crypto/CryptoConst.cpp crypto/aes.cpp crypto/Signature.cpp \
2015-07-30 17:25:43 +03:00
tunnel/Tunnel.cpp tunnel/TransitTunnel.cpp tunnel/TunnelEndpoint.cpp \
tunnel/TunnelEndpoint.cpp tunnel/TunnelPool.cpp tunnel/TunnelGateway.cpp \
tunnel/TunnelCrypto.cpp Datagram.cpp Garlic.cpp I2NPProtocol.cpp LeaseSet.cpp \
2015-07-30 16:34:56 +03:00
NetDb.cpp NetDbRequests.cpp Profiling.cpp Reseed.cpp \
2015-07-28 23:03:39 +03:00
RouterContext.cpp RouterInfo.cpp Streaming.cpp Identity.cpp \
2015-07-30 17:25:43 +03:00
Destination.cpp UPnP.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 += \
2015-07-28 19:37:06 +03:00
AddressBook.cpp BOB.cpp ClientContext.cpp Daemon.cpp I2PTunnel.cpp I2PService.cpp \
SAM.cpp SOCKS.cpp UPnP.cpp HTTPProxy.cpp i2p.cpp DaemonLinux.cpp I2PControl.cpp \
HTTPServer.cpp
endif
# also: Daemon{Linux,Win32}.cpp will be added later
DAEMON_SRC = $(COMMON_SRC) \
2015-07-28 19:37:06 +03:00
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
2015-07-16 23:28:57 +03:00
TESTS_SRC := $(COMMON_SRC) \
2015-07-28 20:30:44 +03:00
tests/Utility.cpp tests/Identity.cpp tests/Base64.cpp