diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -29,6 +29,25 @@ OPENVPNDEPS = openvpn/tun.o \ openvpn/shaper.o \ openvpn/fragment.o +SRTPDEPS = srtp/crypto/cipher/aes_cbc.o \ + srtp/crypto/cipher/aes_icm.o \ + srtp/crypto/cipher/aes.o \ + srtp/crypto/cipher/cipher.o \ + srtp/crypto/cipher/null_cipher.o \ + srtp/crypto/kernel/alloc.o \ + srtp/crypto/kernel/crypto_kernel.o \ + srtp/crypto/kernel/err.o \ + srtp/crypto/kernel/key.o \ + srtp/crypto/math/datatypes.o \ + srtp/crypto/math/stat.o \ + srtp/crypto/hash/auth.o \ + srtp/crypto/hash/hmac.o \ + srtp/crypto/hash/null_auth.o \ + srtp/crypto/hash/sha1.o \ + srtp/crypto/rng/ctr_prng.o \ + srtp/crypto/rng/prng.o \ + srtp/crypto/rng/rand_source.o + OBJS = anytun.o \ tunDevice.o \ packetSource.o \ @@ -41,7 +60,8 @@ OBJS = anytun.o \ log.o \ options.o \ seqWindow.o \ - $(OPENVPNDEPS) + $(OPENVPNDEPS) \ + $(SRTPDEPS) EXECUTABLE = anytun |