blob: 65a1d7842ca889e5930bf8dfe13522e5ba7e11ba [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
David McGrew79870d62007-06-15 18:17:39 +0000102srtpobj = srtp/srtp.o srtp/ekt.o
Cullen Jennings235513a2005-09-21 22:51:36 +0000103
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) \
David McGrew5506a8b2006-07-18 17:42:42 +0000128 test/dtls_srtp_driver$(EXE)
Cullen Jennings235513a2005-09-21 22:51:36 +0000129
Marcus Sundberg1f84c402005-10-06 13:59:21 +0000130$(testapp): libsrtp.a
131
David McGrew79bd3012006-07-17 20:41:21 +0000132test/rtpw$(EXE): test/rtpw.c test/rtp.c test/getopt_s.c
133 $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
134
135test/srtp_driver$(EXE): test/srtp_driver.c test/getopt_s.c
136 $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
137
138test/rdbx_driver$(EXE): test/rdbx_driver.c test/getopt_s.c
139 $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
140
141test/dtls_srtp_driver$(EXE): test/dtls_srtp_driver.c test/getopt_s.c
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000142 $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
Cullen Jennings235513a2005-09-21 22:51:36 +0000143
144test: $(testapp)
David McGrewb67061f2005-09-28 14:23:06 +0000145 @echo "Build done. Please run '$(MAKE) runtest' to run self tests."
Cullen Jennings235513a2005-09-21 22:51:36 +0000146
147memtest: test/srtp_driver
148 @test/srtp_driver -v -d "alloc" > tmp
149 @grep freed tmp | wc -l > freed
150 @grep allocated tmp | wc -l > allocated
151 @echo "checking for memory leaks (only works with --enable-stdout)"
152 cmp -s allocated freed
153 @echo "passed (same number of alloc() and dealloc() calls found)"
154 @rm freed allocated tmp
155
156# tables_apps are used to generate the tables used in the crypto
157# implementations; these need only be generated during porting, not
158# for building libsrtp or the test applications
159
David McGrew5529f102005-09-29 11:25:10 +0000160table_apps = tables/aes_tables
David McGrewb67061f2005-09-28 14:23:06 +0000161
David McGrew5529f102005-09-29 11:25:10 +0000162build_table_apps: $(table_apps)
Cullen Jennings235513a2005-09-21 22:51:36 +0000163
164# in the tables/ subdirectory, we use libcryptomath instead of libsrtp
165
166tables/%: tables/%.c libcryptomath.a
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000167 $(COMPILE) $(LDFLAGS) $< -o $@ $(LIBS) libcryptomath.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000168
169# the target 'plot' runs the timing test (test/srtp_driver -t) then
170# uses gnuplot to produce plots of the results - see the script file
171# 'timing'
172
173plot: test/srtp_driver
174 test/srtp_driver -t > timing.dat
175
176
177# bookkeeping: tags, clean, and distribution
178
179tags:
180 etags */*.[ch] */*/*.[ch]
181
182
183# documentation - the target libsrtpdoc builds a PDF file documenting
184# libsrtp
185
186libsrtpdoc:
Marcus Sundberg589127e2005-09-29 13:34:06 +0000187 $(MAKE) -C doc
Cullen Jennings235513a2005-09-21 22:51:36 +0000188
Cullen Jennings235513a2005-09-21 22:51:36 +0000189.PHONY: clean superclean install
190
191install:
David McGrewb67061f2005-09-28 14:23:06 +0000192 @if [ -d $(DESTDIR)$(includedir)/srtp ]; then \
Cullen Jennings235513a2005-09-21 22:51:36 +0000193 echo "you should run 'make uninstall' first"; exit 1; \
194 fi
David McGrewb67061f2005-09-28 14:23:06 +0000195 $(INSTALL) -d $(DESTDIR)$(includedir)/srtp
196 $(INSTALL) -d $(DESTDIR)$(libdir)
197 cp include/*.h $(DESTDIR)$(includedir)/srtp
198 cp crypto/include/*.h $(DESTDIR)$(includedir)/srtp
David McGrew7c7ff312006-02-23 14:11:11 +0000199 if [ -f libsrtp.a ]; then cp libsrtp.a $(DESTDIR)$(libdir)/; fi
Cullen Jennings235513a2005-09-21 22:51:36 +0000200
201uninstall:
David McGrewb67061f2005-09-28 14:23:06 +0000202 rm -rf $(DESTDIR)$(includedir)/srtp
203 rm -rf $(DESTDIR)$(libdir)/libsrtp.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000204
205clean:
David McGrew5506a8b2006-07-18 17:42:42 +0000206 rm -rf $(cryptobj) $(srtpobj) $(cryptomath) TAGS \
David McGrew2d4b3a72006-03-17 21:00:46 +0000207 libcryptomath.a libsrtp.a core *.core test/core
Cullen Jennings235513a2005-09-21 22:51:36 +0000208 for a in * */* */*/*; do \
209 if [ -f "$$a~" ] ; then rm -f $$a~; fi; \
210 done;
211 for a in $(testapp) $(table_apps); do rm -rf $$a$(EXE); done
212 rm -rf *.pict *.jpg *.dat
213 rm -rf freed allocated tmp
Marcus Sundberg589127e2005-09-29 13:34:06 +0000214 $(MAKE) -C doc clean
215 $(MAKE) -C crypto clean
Cullen Jennings235513a2005-09-21 22:51:36 +0000216
217
218superclean: clean
David McGrewe11033e2005-09-26 20:41:14 +0000219 rm -rf crypto/include/config.h config.log config.cache config.status \
Cullen Jennings235513a2005-09-21 22:51:36 +0000220 Makefile .gdb_history test/.gdb_history .DS_Store
221 rm -rf autom4te.cache
222
223distname = srtp-$(shell cat VERSION)
224
David McGrewb67061f2005-09-28 14:23:06 +0000225distribution: runtest superclean
Cullen Jennings235513a2005-09-21 22:51:36 +0000226 if ! [ -f VERSION ]; then exit 1; fi
227 if [ -f ../$(distname).tgz ]; then \
228 mv ../$(distname).tgz ../$(distname).tgz.bak; \
229 fi
230 cd ..; tar cvzf $(distname).tgz srtp
231
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000232# EOF