blob: 91c50b8e37ef88d462d852ac7168fe5370805c5e [file] [log] [blame]
Cullen Jennings235513a2005-09-21 22:51:36 +00001# Makefile for secure rtp
2#
3# David A. McGrew
4# Cisco Systems, Inc.
5
6# targets:
7#
8# runtest runs test applications
9# test builds test applications
10# libcrypt.a static library implementing crypto engine
11# libsrtp.a static library implementing srtp
12# clean removes objects, libs, and executables
David McGrewb67061f2005-09-28 14:23:06 +000013# distribution cleans and builds a .tgz
14# tags builds etags file from all .c and .h files
Cullen Jennings235513a2005-09-21 22:51:36 +000015
David McGrew5529f102005-09-29 11:25:10 +000016.PHONY: all test build_table_apps
Cullen Jennings235513a2005-09-21 22:51:36 +000017
David McGrewb67061f2005-09-28 14:23:06 +000018all: test
19
David McGrew5529f102005-09-29 11:25:10 +000020runtest: build_table_apps test
Cullen Jennings235513a2005-09-21 22:51:36 +000021 @echo "running libsrtp test applications..."
Marcus Sundbergb0a93112005-10-02 21:11:33 +000022 crypto/test/cipher_driver$(EXE) -v >/dev/null
23 crypto/test/kernel_driver$(EXE) -v >/dev/null
Cullen Jennings235513a2005-09-21 22:51:36 +000024 test/rdbx_driver$(EXE) -v >/dev/null
25 test/srtp_driver$(EXE) -v >/dev/null
26 test/roc_driver$(EXE) -v >/dev/null
David McGrew11b2e412006-03-16 19:13:31 +000027 test/replay_driver$(EXE) -v >/dev/null
David McGrew0cb86ee2006-07-07 15:46:57 +000028 test/dtls_srtp_driver$(EXE) >/dev/null
David McGrewc79548c2006-06-13 15:17:57 +000029 cd test; ./rtpw_test.sh >/dev/null
Cullen Jennings235513a2005-09-21 22:51:36 +000030 @echo "libsrtp test applications passed."
Marcus Sundberg589127e2005-09-29 13:34:06 +000031 $(MAKE) -C crypto runtest
Cullen Jennings235513a2005-09-21 22:51:36 +000032
33# makefile variables
34
Marcus Sundberg589127e2005-09-29 13:34:06 +000035CC = @CC@
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +000036INCDIR = -Icrypto/include -I$(srcdir)/include -I$(srcdir)/crypto/include
37DEFS = @DEFS@
38CPPFLAGS= @CPPFLAGS@
Marcus Sundberg589127e2005-09-29 13:34:06 +000039CFLAGS = @CFLAGS@
40LIBS = @LIBS@
41LDFLAGS = @LDFLAGS@ -L.
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +000042COMPILE = $(CC) $(DEFS) $(INCDIR) $(CPPFLAGS) $(CFLAGS)
Marcus Sundberg589127e2005-09-29 13:34:06 +000043SRTPLIB = -lsrtp
David McGrewb67061f2005-09-28 14:23:06 +000044
Marcus Sundberg589127e2005-09-29 13:34:06 +000045RANLIB = @RANLIB@
46INSTALL = @INSTALL@
David McGrewb67061f2005-09-28 14:23:06 +000047
Marcus Sundberg95e23722005-10-02 19:44:28 +000048# EXE defines the suffix on executables - it's .exe for Windows, and
49# null on linux, bsd, and OS X and other OSes.
50EXE = @EXE@
51# gdoi is the group domain of interpretation for isakmp, a group key
52# management system which can provide keys for srtp
53gdoi = @GDOI_OBJS@
Marcus Sundberg5c714e42005-10-03 15:16:06 +000054# Random source.
55RNG_OBJS = @RNG_OBJS@
Marcus Sundberg95e23722005-10-02 19:44:28 +000056
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +000057srcdir = @srcdir@
58top_srcdir = @top_srcdir@
59top_builddir = @top_builddir@
60VPATH = @srcdir@
David McGrewb67061f2005-09-28 14:23:06 +000061prefix = @prefix@
62exec_prefix = @exec_prefix@
63includedir = @includedir@
64libdir = @libdir@
Cullen Jennings235513a2005-09-21 22:51:36 +000065
66
67# implicit rules for object files and test apps
68
69%.o: %.c
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +000070 $(COMPILE) -c $< -o $@
Cullen Jennings235513a2005-09-21 22:51:36 +000071
Marcus Sundberg1f84c402005-10-06 13:59:21 +000072%$(EXE): %.c
Marcus Sundberg95e23722005-10-02 19:44:28 +000073 $(COMPILE) $(LDFLAGS) $< -o $@ $(SRTPLIB) $(LIBS)
Cullen Jennings235513a2005-09-21 22:51:36 +000074
75
76# libcrypt.a (the crypto engine)
Cullen Jennings235513a2005-09-21 22:51:36 +000077ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o \
78 crypto/cipher/aes.o crypto/cipher/aes_icm.o \
79 crypto/cipher/aes_cbc.o
80
81hashes = crypto/hash/null_auth.o crypto/hash/sha1.o \
82 crypto/hash/hmac.o crypto/hash/auth.o # crypto/hash/tmmhv2.o
83
84replay = crypto/replay/rdb.o crypto/replay/rdbx.o \
85 crypto/replay/ut_sim.o
86
87math = crypto/math/datatypes.o crypto/math/stat.o
88
89ust = crypto/ust/ust.o
90
Marcus Sundberg5c714e42005-10-03 15:16:06 +000091rng = crypto/rng/$(RNG_OBJS) crypto/rng/prng.o crypto/rng/ctr_prng.o
Cullen Jennings235513a2005-09-21 22:51:36 +000092
93err = crypto/kernel/err.o
94
95kernel = crypto/kernel/crypto_kernel.o crypto/kernel/alloc.o \
96 crypto/kernel/key.o $(rng) $(err) # $(ust)
97
98cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
99
Cullen Jennings235513a2005-09-21 22:51:36 +0000100# libsrtp.a (implements srtp processing)
101
102srtpobj = srtp/srtp.o
103
104libsrtp.a: $(srtpobj) $(cryptobj) $(gdoi)
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000105 ar cr libsrtp.a $^
Marcus Sundberg589127e2005-09-29 13:34:06 +0000106 $(RANLIB) libsrtp.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000107
Cullen Jennings235513a2005-09-21 22:51:36 +0000108# libcryptomath.a contains general-purpose routines that are used to
109# generate tables and verify cryptoalgorithm implementations - this
110# library is not meant to be included in production code
111
David McGrewb67061f2005-09-28 14:23:06 +0000112cryptomath = crypto/math/math.o crypto/math/gf2_8.o
Cullen Jennings235513a2005-09-21 22:51:36 +0000113
114libcryptomath.a: $(cryptomath)
115 ar cr libcryptomath.a $(cryptomath)
Marcus Sundberg589127e2005-09-29 13:34:06 +0000116 $(RANLIB) libcryptomath.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000117
118
119# test applications
120
Marcus Sundbergb0a93112005-10-02 21:11:33 +0000121crypto_testapp = crypto/test/aes_calc$(EXE) crypto/test/cipher_driver$(EXE) \
122 crypto/test/datatypes_driver$(EXE) crypto/test/kernel_driver$(EXE) \
123 crypto/test/rand_gen$(EXE) crypto/test/sha1_driver$(EXE) \
124 crypto/test/stat_driver$(EXE)
125
126testapp = $(crypto_testapp) test/srtp_driver$(EXE) test/replay_driver$(EXE) \
David McGrew0cb86ee2006-07-07 15:46:57 +0000127 test/roc_driver$(EXE) test/rdbx_driver$(EXE) test/rtpw$(EXE) \
128 test/dtls_srtp_driver
Cullen Jennings235513a2005-09-21 22:51:36 +0000129
Marcus Sundberg1f84c402005-10-06 13:59:21 +0000130$(testapp): libsrtp.a
131
Marcus Sundberg95e23722005-10-02 19:44:28 +0000132test/rtpw$(EXE): test/rtpw.c test/rtp.c
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000133 $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
Cullen Jennings235513a2005-09-21 22:51:36 +0000134
135test: $(testapp)
David McGrewb67061f2005-09-28 14:23:06 +0000136 @echo "Build done. Please run '$(MAKE) runtest' to run self tests."
Cullen Jennings235513a2005-09-21 22:51:36 +0000137
138memtest: test/srtp_driver
139 @test/srtp_driver -v -d "alloc" > tmp
140 @grep freed tmp | wc -l > freed
141 @grep allocated tmp | wc -l > allocated
142 @echo "checking for memory leaks (only works with --enable-stdout)"
143 cmp -s allocated freed
144 @echo "passed (same number of alloc() and dealloc() calls found)"
145 @rm freed allocated tmp
146
147# tables_apps are used to generate the tables used in the crypto
148# implementations; these need only be generated during porting, not
149# for building libsrtp or the test applications
150
David McGrew5529f102005-09-29 11:25:10 +0000151table_apps = tables/aes_tables
David McGrewb67061f2005-09-28 14:23:06 +0000152
David McGrew5529f102005-09-29 11:25:10 +0000153build_table_apps: $(table_apps)
Cullen Jennings235513a2005-09-21 22:51:36 +0000154
155# in the tables/ subdirectory, we use libcryptomath instead of libsrtp
156
157tables/%: tables/%.c libcryptomath.a
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000158 $(COMPILE) $(LDFLAGS) $< -o $@ $(LIBS) libcryptomath.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000159
160# the target 'plot' runs the timing test (test/srtp_driver -t) then
161# uses gnuplot to produce plots of the results - see the script file
162# 'timing'
163
164plot: test/srtp_driver
165 test/srtp_driver -t > timing.dat
166
167
168# bookkeeping: tags, clean, and distribution
169
170tags:
171 etags */*.[ch] */*/*.[ch]
172
173
174# documentation - the target libsrtpdoc builds a PDF file documenting
175# libsrtp
176
177libsrtpdoc:
Marcus Sundberg589127e2005-09-29 13:34:06 +0000178 $(MAKE) -C doc
Cullen Jennings235513a2005-09-21 22:51:36 +0000179
Cullen Jennings235513a2005-09-21 22:51:36 +0000180.PHONY: clean superclean install
181
182install:
David McGrewb67061f2005-09-28 14:23:06 +0000183 @if [ -d $(DESTDIR)$(includedir)/srtp ]; then \
Cullen Jennings235513a2005-09-21 22:51:36 +0000184 echo "you should run 'make uninstall' first"; exit 1; \
185 fi
David McGrewb67061f2005-09-28 14:23:06 +0000186 $(INSTALL) -d $(DESTDIR)$(includedir)/srtp
187 $(INSTALL) -d $(DESTDIR)$(libdir)
188 cp include/*.h $(DESTDIR)$(includedir)/srtp
189 cp crypto/include/*.h $(DESTDIR)$(includedir)/srtp
David McGrew7c7ff312006-02-23 14:11:11 +0000190 if [ -f libsrtp.a ]; then cp libsrtp.a $(DESTDIR)$(libdir)/; fi
Cullen Jennings235513a2005-09-21 22:51:36 +0000191
192uninstall:
David McGrewb67061f2005-09-28 14:23:06 +0000193 rm -rf $(DESTDIR)$(includedir)/srtp
194 rm -rf $(DESTDIR)$(libdir)/libsrtp.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000195
196clean:
197 rm -rf $(cryptobj) $(srtpobj) $(cryptomath) $(table_apps) TAGS \
David McGrew2d4b3a72006-03-17 21:00:46 +0000198 libcryptomath.a libsrtp.a core *.core test/core
Cullen Jennings235513a2005-09-21 22:51:36 +0000199 for a in * */* */*/*; do \
200 if [ -f "$$a~" ] ; then rm -f $$a~; fi; \
201 done;
202 for a in $(testapp) $(table_apps); do rm -rf $$a$(EXE); done
203 rm -rf *.pict *.jpg *.dat
204 rm -rf freed allocated tmp
Marcus Sundberg589127e2005-09-29 13:34:06 +0000205 $(MAKE) -C doc clean
206 $(MAKE) -C crypto clean
Cullen Jennings235513a2005-09-21 22:51:36 +0000207
208
209superclean: clean
David McGrewe11033e2005-09-26 20:41:14 +0000210 rm -rf crypto/include/config.h config.log config.cache config.status \
Cullen Jennings235513a2005-09-21 22:51:36 +0000211 Makefile .gdb_history test/.gdb_history .DS_Store
212 rm -rf autom4te.cache
213
214distname = srtp-$(shell cat VERSION)
215
David McGrewb67061f2005-09-28 14:23:06 +0000216distribution: runtest superclean
Cullen Jennings235513a2005-09-21 22:51:36 +0000217 if ! [ -f VERSION ]; then exit 1; fi
218 if [ -f ../$(distname).tgz ]; then \
219 mv ../$(distname).tgz ../$(distname).tgz.bak; \
220 fi
221 cd ..; tar cvzf $(distname).tgz srtp
222
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000223# EOF