Changeset 5412 for pjproject/trunk/third_party/build/srtp/Makefile
- Timestamp:
- Aug 8, 2016 9:09:29 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/third_party/build/srtp/Makefile
r5261 r5412 1 1 include ../../../build.mak 2 2 include ../../../build/common.mak 3 include ../os-$(OS_NAME).mak 3 4 4 5 export LIBDIR := ../../lib … … 29 30 # libcrypt.a (the crypto engine) 30 31 ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o \ 31 crypto/cipher/aes.o crypto/cipher/aes_icm.o \ 32 crypto/cipher/aes_cbc.o 32 $(CIPHERS_SRC) 33 33 34 hashes = crypto/hash/null_auth.o crypto/hash/sha1.o \ 35 crypto/hash/hmac.o crypto/hash/auth.o # crypto/hash/tmmhv2.o 34 hashes = crypto/hash/null_auth.o crypto/hash/auth.o $(HASHES_SRC) 36 35 37 36 replay = crypto/replay/rdb.o crypto/replay/rdbx.o \ … … 42 41 ust = crypto/ust/ust.o 43 42 44 rng = crypto/rng/rand_source.o crypto/rng/prng.o crypto/rng/ctr_prng.o43 rng = $(RNG_SRC) 45 44 46 45 err = pjlib/srtp_err.o … … 55 54 export SRTP_SRCDIR = ../../srtp 56 55 export SRTP_OBJS = $(cryptobj) $(srtpobj) 57 export SRTP_CFLAGS = -DHAVE_CONFIG_H $(_CFLAGS) 56 export SRTP_CFLAGS = -DHAVE_CONFIG_H $(_CFLAGS) $(SRTP_OTHER_CFLAGS) 58 57 export SRTP_LDFLAGS = $(PJLIB_LDLIB) $(_LDFLAGS) 59 58
Note: See TracChangeset
for help on using the changeset viewer.