blob: 0d232e1be880ea828868190fcc86fdcc514e10e6 [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
Cullen Jennings235513a2005-09-21 22:51:36 +000027 @echo "libsrtp test applications passed."
Marcus Sundberg589127e2005-09-29 13:34:06 +000028 $(MAKE) -C crypto runtest
Cullen Jennings235513a2005-09-21 22:51:36 +000029
30# makefile variables
31
Marcus Sundberg589127e2005-09-29 13:34:06 +000032CC = @CC@
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +000033INCDIR = -Icrypto/include -I$(srcdir)/include -I$(srcdir)/crypto/include
34DEFS = @DEFS@
35CPPFLAGS= @CPPFLAGS@
Marcus Sundberg589127e2005-09-29 13:34:06 +000036CFLAGS = @CFLAGS@
37LIBS = @LIBS@
38LDFLAGS = @LDFLAGS@ -L.
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +000039COMPILE = $(CC) $(DEFS) $(INCDIR) $(CPPFLAGS) $(CFLAGS)
Marcus Sundberg589127e2005-09-29 13:34:06 +000040SRTPLIB = -lsrtp
David McGrewb67061f2005-09-28 14:23:06 +000041
Marcus Sundberg589127e2005-09-29 13:34:06 +000042RANLIB = @RANLIB@
43INSTALL = @INSTALL@
David McGrewb67061f2005-09-28 14:23:06 +000044
Marcus Sundberg95e23722005-10-02 19:44:28 +000045# EXE defines the suffix on executables - it's .exe for Windows, and
46# null on linux, bsd, and OS X and other OSes.
47EXE = @EXE@
48# gdoi is the group domain of interpretation for isakmp, a group key
49# management system which can provide keys for srtp
50gdoi = @GDOI_OBJS@
Marcus Sundberg5c714e42005-10-03 15:16:06 +000051# Random source.
52RNG_OBJS = @RNG_OBJS@
Marcus Sundberg95e23722005-10-02 19:44:28 +000053
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +000054srcdir = @srcdir@
55top_srcdir = @top_srcdir@
56top_builddir = @top_builddir@
57VPATH = @srcdir@
David McGrewb67061f2005-09-28 14:23:06 +000058prefix = @prefix@
59exec_prefix = @exec_prefix@
60includedir = @includedir@
61libdir = @libdir@
Cullen Jennings235513a2005-09-21 22:51:36 +000062
63
64# implicit rules for object files and test apps
65
66%.o: %.c
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +000067 $(COMPILE) -c $< -o $@
Cullen Jennings235513a2005-09-21 22:51:36 +000068
Marcus Sundberg1f84c402005-10-06 13:59:21 +000069%$(EXE): %.c
Marcus Sundberg95e23722005-10-02 19:44:28 +000070 $(COMPILE) $(LDFLAGS) $< -o $@ $(SRTPLIB) $(LIBS)
Cullen Jennings235513a2005-09-21 22:51:36 +000071
72
73# libcrypt.a (the crypto engine)
Cullen Jennings235513a2005-09-21 22:51:36 +000074ciphers = crypto/cipher/cipher.o crypto/cipher/null_cipher.o \
75 crypto/cipher/aes.o crypto/cipher/aes_icm.o \
76 crypto/cipher/aes_cbc.o
77
78hashes = crypto/hash/null_auth.o crypto/hash/sha1.o \
79 crypto/hash/hmac.o crypto/hash/auth.o # crypto/hash/tmmhv2.o
80
81replay = crypto/replay/rdb.o crypto/replay/rdbx.o \
82 crypto/replay/ut_sim.o
83
84math = crypto/math/datatypes.o crypto/math/stat.o
85
86ust = crypto/ust/ust.o
87
Marcus Sundberg5c714e42005-10-03 15:16:06 +000088rng = crypto/rng/$(RNG_OBJS) crypto/rng/prng.o crypto/rng/ctr_prng.o
Cullen Jennings235513a2005-09-21 22:51:36 +000089
90err = crypto/kernel/err.o
91
92kernel = crypto/kernel/crypto_kernel.o crypto/kernel/alloc.o \
93 crypto/kernel/key.o $(rng) $(err) # $(ust)
94
95cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
96
David McGrewfec49dd2005-09-23 19:34:11 +000097aesicm = crypto/cipher/cipher.o crypto/cipher/aes.o crypto/cipher/aes_icm.o \
98 crypto/hash/auth.o crypto/kernel/alloc.o crypto/kernel/err.o \
99 crypto/math/datatypes.o crypto/replay/rdbx.o
100
Cullen Jennings235513a2005-09-21 22:51:36 +0000101aesicmobj = $(aesicm) $(rng)
102
Cullen Jennings235513a2005-09-21 22:51:36 +0000103# libsrtp.a (implements srtp processing)
104
105srtpobj = srtp/srtp.o
106
107libsrtp.a: $(srtpobj) $(cryptobj) $(gdoi)
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000108 ar cr libsrtp.a $^
Marcus Sundberg589127e2005-09-29 13:34:06 +0000109 $(RANLIB) libsrtp.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000110
111# libaesicm.a provides an icm implementation used by mpeg4ip
112
113libaesicm.a: $(aesicmobj)
114 ar cr libaesicm.a $(aesicmobj)
Marcus Sundberg589127e2005-09-29 13:34:06 +0000115 $(RANLIB) libaesicm.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000116
117# libcryptomath.a contains general-purpose routines that are used to
118# generate tables and verify cryptoalgorithm implementations - this
119# library is not meant to be included in production code
120
David McGrewb67061f2005-09-28 14:23:06 +0000121cryptomath = crypto/math/math.o crypto/math/gf2_8.o
Cullen Jennings235513a2005-09-21 22:51:36 +0000122
123libcryptomath.a: $(cryptomath)
124 ar cr libcryptomath.a $(cryptomath)
Marcus Sundberg589127e2005-09-29 13:34:06 +0000125 $(RANLIB) libcryptomath.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000126
127
128# test applications
129
Marcus Sundbergb0a93112005-10-02 21:11:33 +0000130crypto_testapp = crypto/test/aes_calc$(EXE) crypto/test/cipher_driver$(EXE) \
131 crypto/test/datatypes_driver$(EXE) crypto/test/kernel_driver$(EXE) \
132 crypto/test/rand_gen$(EXE) crypto/test/sha1_driver$(EXE) \
133 crypto/test/stat_driver$(EXE)
134
135testapp = $(crypto_testapp) test/srtp_driver$(EXE) test/replay_driver$(EXE) \
136 test/roc_driver$(EXE) test/rdbx_driver$(EXE) test/rtpw$(EXE)
Cullen Jennings235513a2005-09-21 22:51:36 +0000137
Marcus Sundberg1f84c402005-10-06 13:59:21 +0000138$(testapp): libsrtp.a
139
Marcus Sundberg95e23722005-10-02 19:44:28 +0000140test/rtpw$(EXE): test/rtpw.c test/rtp.c
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000141 $(COMPILE) $(LDFLAGS) -o $@ $^ $(LIBS) $(SRTPLIB)
Cullen Jennings235513a2005-09-21 22:51:36 +0000142
143test: $(testapp)
David McGrewb67061f2005-09-28 14:23:06 +0000144 @echo "Build done. Please run '$(MAKE) runtest' to run self tests."
Cullen Jennings235513a2005-09-21 22:51:36 +0000145
146memtest: test/srtp_driver
147 @test/srtp_driver -v -d "alloc" > tmp
148 @grep freed tmp | wc -l > freed
149 @grep allocated tmp | wc -l > allocated
150 @echo "checking for memory leaks (only works with --enable-stdout)"
151 cmp -s allocated freed
152 @echo "passed (same number of alloc() and dealloc() calls found)"
153 @rm freed allocated tmp
154
155# tables_apps are used to generate the tables used in the crypto
156# implementations; these need only be generated during porting, not
157# for building libsrtp or the test applications
158
David McGrew5529f102005-09-29 11:25:10 +0000159table_apps = tables/aes_tables
David McGrewb67061f2005-09-28 14:23:06 +0000160
David McGrew5529f102005-09-29 11:25:10 +0000161build_table_apps: $(table_apps)
Cullen Jennings235513a2005-09-21 22:51:36 +0000162
163# in the tables/ subdirectory, we use libcryptomath instead of libsrtp
164
165tables/%: tables/%.c libcryptomath.a
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000166 $(COMPILE) $(LDFLAGS) $< -o $@ $(LIBS) libcryptomath.a
Cullen Jennings235513a2005-09-21 22:51:36 +0000167
168# the target 'plot' runs the timing test (test/srtp_driver -t) then
169# uses gnuplot to produce plots of the results - see the script file
170# 'timing'
171
172plot: test/srtp_driver
173 test/srtp_driver -t > timing.dat
174
175
176# bookkeeping: tags, clean, and distribution
177
178tags:
179 etags */*.[ch] */*/*.[ch]
180
181
182# documentation - the target libsrtpdoc builds a PDF file documenting
183# libsrtp
184
185libsrtpdoc:
Marcus Sundberg589127e2005-09-29 13:34:06 +0000186 $(MAKE) -C doc
Cullen Jennings235513a2005-09-21 22:51:36 +0000187
Cullen Jennings235513a2005-09-21 22:51:36 +0000188.PHONY: clean superclean install
189
190install:
David McGrewb67061f2005-09-28 14:23:06 +0000191 @if [ -d $(DESTDIR)$(includedir)/srtp ]; then \
Cullen Jennings235513a2005-09-21 22:51:36 +0000192 echo "you should run 'make uninstall' first"; exit 1; \
193 fi
David McGrewb67061f2005-09-28 14:23:06 +0000194 $(INSTALL) -d $(DESTDIR)$(includedir)/srtp
195 $(INSTALL) -d $(DESTDIR)$(libdir)
196 cp include/*.h $(DESTDIR)$(includedir)/srtp
197 cp crypto/include/*.h $(DESTDIR)$(includedir)/srtp
198 cp libsrtp.a $(DESTDIR)$(libdir)/
199 if [ -f libaesicm.a ]; then cp libaesicm.a $(DESTDIR)$(libdir)/; fi
200
Cullen Jennings235513a2005-09-21 22:51:36 +0000201
202uninstall:
David McGrewb67061f2005-09-28 14:23:06 +0000203 rm -rf $(DESTDIR)$(includedir)/srtp
204 rm -rf $(DESTDIR)$(libdir)/libsrtp.a
205 rm -rf $(DESTDIR)$(libdir)/libaesicm.a; fi
Cullen Jennings235513a2005-09-21 22:51:36 +0000206
207clean:
208 rm -rf $(cryptobj) $(srtpobj) $(cryptomath) $(table_apps) TAGS \
209 libcryptomath.a libsrtp.a libaesicm.a core *.core test/core
210 for a in * */* */*/*; do \
211 if [ -f "$$a~" ] ; then rm -f $$a~; fi; \
212 done;
213 for a in $(testapp) $(table_apps); do rm -rf $$a$(EXE); done
214 rm -rf *.pict *.jpg *.dat
215 rm -rf freed allocated tmp
Marcus Sundberg589127e2005-09-29 13:34:06 +0000216 $(MAKE) -C doc clean
217 $(MAKE) -C crypto clean
Cullen Jennings235513a2005-09-21 22:51:36 +0000218
219
220superclean: clean
David McGrewe11033e2005-09-26 20:41:14 +0000221 rm -rf crypto/include/config.h config.log config.cache config.status \
Cullen Jennings235513a2005-09-21 22:51:36 +0000222 Makefile .gdb_history test/.gdb_history .DS_Store
223 rm -rf autom4te.cache
224
225distname = srtp-$(shell cat VERSION)
226
David McGrewb67061f2005-09-28 14:23:06 +0000227distribution: runtest superclean
Cullen Jennings235513a2005-09-21 22:51:36 +0000228 if ! [ -f VERSION ]; then exit 1; fi
229 if [ -f ../$(distname).tgz ]; then \
230 mv ../$(distname).tgz ../$(distname).tgz.bak; \
231 fi
232 cd ..; tar cvzf $(distname).tgz srtp
233
Marcus Sundberg8ebe5ce2005-09-29 13:59:56 +0000234# EOF