blob: 4c74e25563e193a851a631c679666ec84205ddc0 [file] [log] [blame]
Paul Bakker0049c2f2009-07-11 19:15:43 +00001
2# To compile on SunOS: add "-lsocket -lnsl" to LDFLAGS
Paul Bakker62f88dc2012-05-10 21:26:28 +00003# To compile on MinGW: add "-lws2_32" to LDFLAGS or define WINDOWS in your env
Paul Bakker43b7e352011-01-18 15:27:19 +00004# To compile with PKCS11: add "-lpkcs11-helper" to LDFLAGS
Paul Bakker0049c2f2009-07-11 19:15:43 +00005
Paul Bakker46eb1382011-01-30 17:10:13 +00006CFLAGS += -I../include -D_FILE_OFFSET_BITS=64 -Wall -W -Wdeclaration-after-statement \
Paul Bakker0049c2f2009-07-11 19:15:43 +00007 -Wno-unused-function -Wno-unused-value
8
Paul Bakkerf1ab0ec2012-10-23 12:12:53 +00009OFLAGS = -O2
Paul Bakkera585beb2011-06-21 08:59:44 +000010LDFLAGS += -L../library -lpolarssl $(SYS_LDFLAGS)
Paul Bakker0049c2f2009-07-11 19:15:43 +000011
Paul Bakkerc7ffd362012-04-05 12:08:29 +000012ifdef DEBUG
13CFLAGS += -g3
14endif
15
Paul Bakkercd5b5292012-05-10 20:49:10 +000016ifdef WINDOWS
17LDFLAGS += -lws2_32
18endif
19
Paul Bakker2770fbd2012-07-03 13:30:23 +000020# Zlib shared library extensions:
21ifdef ZLIB
22LDFLAGS += -lz
23endif
24
Paul Bakker286bf3c2013-04-08 18:09:51 +020025APPS = test_suite_aes.ecb test_suite_aes.cbc \
26 test_suite_aes.cfb test_suite_aes.rest \
27 test_suite_arc4 \
Paul Bakkera9379c02012-07-04 11:02:11 +000028 test_suite_base64 test_suite_blowfish \
Paul Bakker6132d0a2012-07-04 17:10:40 +000029 test_suite_camellia test_suite_cipher.aes \
Manuel Pégourié-Gonnard07f8fa52013-08-30 18:34:08 +020030 test_suite_cipher.arc4 test_suite_cipher.gcm \
Paul Bakker6132d0a2012-07-04 17:10:40 +000031 test_suite_cipher.blowfish \
32 test_suite_cipher.camellia \
Paul Bakkerfab5c822012-02-06 16:45:10 +000033 test_suite_cipher.des test_suite_cipher.null \
Manuel Pégourié-Gonnardd5fdcaf2013-07-24 18:05:00 +020034 test_suite_cipher.padding \
Paul Bakkerfab5c822012-02-06 16:45:10 +000035 test_suite_ctr_drbg test_suite_debug \
Paul Bakker9d781402011-05-09 16:17:09 +000036 test_suite_des test_suite_dhm \
Paul Bakkerd589a0d2013-03-13 16:30:17 +010037 test_suite_ecdh test_suite_ecdsa \
Paul Bakkera95919b2013-01-16 17:00:05 +010038 test_suite_ecp \
Paul Bakker286bf3c2013-04-08 18:09:51 +020039 test_suite_error \
40 test_suite_gcm.decrypt_128 \
41 test_suite_gcm.decrypt_192 \
42 test_suite_gcm.decrypt_256 \
43 test_suite_gcm.encrypt_128 \
44 test_suite_gcm.encrypt_192 \
45 test_suite_gcm.encrypt_256 \
46 test_suite_hmac_shax \
Paul Bakker9d781402011-05-09 16:17:09 +000047 test_suite_md test_suite_mdx \
Paul Bakkerf518b162012-08-23 13:03:18 +000048 test_suite_mpi test_suite_pbkdf2 \
Paul Bakkerb0c19a42013-06-24 19:26:38 +020049 test_suite_pkcs1_v21 test_suite_pkcs5 \
Paul Bakkerc7bb02b2013-09-15 14:54:56 +020050 test_suite_pkparse test_suite_pkwrite \
Paul Bakker9d781402011-05-09 16:17:09 +000051 test_suite_rsa test_suite_shax \
Paul Bakker6d620502012-02-16 14:09:13 +000052 test_suite_x509parse test_suite_x509write \
53 test_suite_xtea test_suite_version
Paul Bakker0049c2f2009-07-11 19:15:43 +000054
55.SILENT:
56
57all: $(APPS)
58
Paul Bakker19343182013-08-16 13:31:10 +020059test_suite_aes.ecb.c : suites/test_suite_aes.function suites/test_suite_aes.ecb.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker286bf3c2013-04-08 18:09:51 +020060 echo " Generate $@"
61 scripts/generate_code.pl suites test_suite_aes test_suite_aes.ecb
62
Paul Bakker19343182013-08-16 13:31:10 +020063test_suite_aes.cbc.c : suites/test_suite_aes.function suites/test_suite_aes.cbc.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker286bf3c2013-04-08 18:09:51 +020064 echo " Generate $@"
65 scripts/generate_code.pl suites test_suite_aes test_suite_aes.cbc
66
Paul Bakker19343182013-08-16 13:31:10 +020067test_suite_aes.cfb.c : suites/test_suite_aes.function suites/test_suite_aes.cfb.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker286bf3c2013-04-08 18:09:51 +020068 echo " Generate $@"
69 scripts/generate_code.pl suites test_suite_aes test_suite_aes.cfb
70
Paul Bakker19343182013-08-16 13:31:10 +020071test_suite_aes.rest.c : suites/test_suite_aes.function suites/test_suite_aes.rest.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker286bf3c2013-04-08 18:09:51 +020072 echo " Generate $@"
73 scripts/generate_code.pl suites test_suite_aes test_suite_aes.rest
74
Paul Bakker19343182013-08-16 13:31:10 +020075test_suite_cipher.aes.c : suites/test_suite_cipher.function suites/test_suite_cipher.aes.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker46c17942011-07-13 14:54:54 +000076 echo " Generate $@"
77 scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.aes
78
Manuel Pégourié-Gonnard37e230c2013-08-28 13:50:42 +020079test_suite_cipher.arc4.c : suites/test_suite_cipher.function suites/test_suite_cipher.arc4.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
80 echo " Generate $@"
81 scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.arc4
82
Manuel Pégourié-Gonnard07f8fa52013-08-30 18:34:08 +020083test_suite_cipher.gcm.c : suites/test_suite_cipher.function suites/test_suite_cipher.gcm.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
84 echo " Generate $@"
85 scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.gcm
86
Paul Bakker19343182013-08-16 13:31:10 +020087test_suite_cipher.blowfish.c : suites/test_suite_cipher.function suites/test_suite_cipher.blowfish.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker6132d0a2012-07-04 17:10:40 +000088 echo " Generate $@"
89 scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.blowfish
90
Paul Bakker19343182013-08-16 13:31:10 +020091test_suite_cipher.camellia.c : suites/test_suite_cipher.function suites/test_suite_cipher.camellia.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker46c17942011-07-13 14:54:54 +000092 echo " Generate $@"
93 scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.camellia
94
Paul Bakker19343182013-08-16 13:31:10 +020095test_suite_cipher.des.c : suites/test_suite_cipher.function suites/test_suite_cipher.des.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker46c17942011-07-13 14:54:54 +000096 echo " Generate $@"
97 scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.des
98
Paul Bakker19343182013-08-16 13:31:10 +020099test_suite_cipher.null.c : suites/test_suite_cipher.function suites/test_suite_cipher.null.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakkerfab5c822012-02-06 16:45:10 +0000100 echo " Generate $@"
101 scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.null
102
Paul Bakker19343182013-08-16 13:31:10 +0200103test_suite_cipher.padding.c : suites/test_suite_cipher.function suites/test_suite_cipher.padding.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Manuel Pégourié-Gonnardd5fdcaf2013-07-24 18:05:00 +0200104 echo " Generate $@"
105 scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.padding
106
Paul Bakker19343182013-08-16 13:31:10 +0200107test_suite_gcm.decrypt_128.c : suites/test_suite_gcm.function suites/test_suite_gcm.decrypt_128.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker89e80c92012-03-20 13:50:09 +0000108 echo " Generate $@"
Paul Bakker286bf3c2013-04-08 18:09:51 +0200109 scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.decrypt_128
Paul Bakker89e80c92012-03-20 13:50:09 +0000110
Paul Bakker19343182013-08-16 13:31:10 +0200111test_suite_gcm.decrypt_192.c : suites/test_suite_gcm.function suites/test_suite_gcm.decrypt_192.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker89e80c92012-03-20 13:50:09 +0000112 echo " Generate $@"
Paul Bakker286bf3c2013-04-08 18:09:51 +0200113 scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.decrypt_192
114
Paul Bakker19343182013-08-16 13:31:10 +0200115test_suite_gcm.decrypt_256.c : suites/test_suite_gcm.function suites/test_suite_gcm.decrypt_256.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker286bf3c2013-04-08 18:09:51 +0200116 echo " Generate $@"
117 scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.decrypt_256
118
Paul Bakker19343182013-08-16 13:31:10 +0200119test_suite_gcm.encrypt_128.c : suites/test_suite_gcm.function suites/test_suite_gcm.encrypt_128.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker286bf3c2013-04-08 18:09:51 +0200120 echo " Generate $@"
121 scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.encrypt_128
122
Paul Bakker19343182013-08-16 13:31:10 +0200123test_suite_gcm.encrypt_192.c : suites/test_suite_gcm.function suites/test_suite_gcm.encrypt_192.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker286bf3c2013-04-08 18:09:51 +0200124 echo " Generate $@"
125 scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.encrypt_192
126
Paul Bakker19343182013-08-16 13:31:10 +0200127test_suite_gcm.encrypt_256.c : suites/test_suite_gcm.function suites/test_suite_gcm.encrypt_256.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker286bf3c2013-04-08 18:09:51 +0200128 echo " Generate $@"
129 scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.encrypt_256
Paul Bakker89e80c92012-03-20 13:50:09 +0000130
Paul Bakker19343182013-08-16 13:31:10 +0200131%.c : suites/%.function suites/%.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
Paul Bakker0049c2f2009-07-11 19:15:43 +0000132 echo " Generate $@"
Paul Bakker46c17942011-07-13 14:54:54 +0000133 scripts/generate_code.pl suites $* $*
Paul Bakker0049c2f2009-07-11 19:15:43 +0000134
Paul Bakker286bf3c2013-04-08 18:09:51 +0200135test_suite_aes.ecb: test_suite_aes.ecb.c ../library/libpolarssl.a
136 echo " CC $@.c"
137 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
138
139test_suite_aes.cbc: test_suite_aes.cbc.c ../library/libpolarssl.a
140 echo " CC $@.c"
141 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
142
143test_suite_aes.cfb: test_suite_aes.cfb.c ../library/libpolarssl.a
144 echo " CC $@.c"
145 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
146
147test_suite_aes.rest: test_suite_aes.rest.c ../library/libpolarssl.a
Paul Bakker0049c2f2009-07-11 19:15:43 +0000148 echo " CC $@.c"
149 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
150
151test_suite_arc4: test_suite_arc4.c ../library/libpolarssl.a
152 echo " CC $@.c"
153 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
154
155test_suite_base64: test_suite_base64.c ../library/libpolarssl.a
156 echo " CC $@.c"
157 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
158
Paul Bakkera9379c02012-07-04 11:02:11 +0000159test_suite_blowfish: test_suite_blowfish.c ../library/libpolarssl.a
160 echo " CC $@.c"
161 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
162
Paul Bakker0049c2f2009-07-11 19:15:43 +0000163test_suite_camellia: test_suite_camellia.c ../library/libpolarssl.a
164 echo " CC $@.c"
165 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
166
Paul Bakker46c17942011-07-13 14:54:54 +0000167test_suite_cipher.aes: test_suite_cipher.aes.c ../library/libpolarssl.a
168 echo " CC $@.c"
169 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
170
Manuel Pégourié-Gonnard37e230c2013-08-28 13:50:42 +0200171test_suite_cipher.arc4: test_suite_cipher.arc4.c ../library/libpolarssl.a
172 echo " CC $@.c"
173 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
174
Manuel Pégourié-Gonnard07f8fa52013-08-30 18:34:08 +0200175test_suite_cipher.gcm: test_suite_cipher.gcm.c ../library/libpolarssl.a
176 echo " CC $@.c"
177 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
178
Paul Bakker6132d0a2012-07-04 17:10:40 +0000179test_suite_cipher.blowfish: test_suite_cipher.blowfish.c ../library/libpolarssl.a
180 echo " CC $@.c"
181 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
182
Paul Bakker46c17942011-07-13 14:54:54 +0000183test_suite_cipher.camellia: test_suite_cipher.camellia.c ../library/libpolarssl.a
184 echo " CC $@.c"
185 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
186
Paul Bakkerfab5c822012-02-06 16:45:10 +0000187test_suite_cipher.des: test_suite_cipher.des.c ../library/libpolarssl.a
Paul Bakker0e04d0e2011-11-27 14:46:59 +0000188 echo " CC $@.c"
189 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
190
Paul Bakkerfab5c822012-02-06 16:45:10 +0000191test_suite_cipher.null: test_suite_cipher.null.c ../library/libpolarssl.a
192 echo " CC $@.c"
193 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
194
Manuel Pégourié-Gonnardd5fdcaf2013-07-24 18:05:00 +0200195test_suite_cipher.padding: test_suite_cipher.padding.c ../library/libpolarssl.a
196 echo " CC $@.c"
197 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
198
Paul Bakkerfab5c822012-02-06 16:45:10 +0000199test_suite_ctr_drbg: test_suite_ctr_drbg.c ../library/libpolarssl.a
Paul Bakker8123e9d2011-01-06 15:37:30 +0000200 echo " CC $@.c"
201 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
202
Paul Bakker0049c2f2009-07-11 19:15:43 +0000203test_suite_des: test_suite_des.c ../library/libpolarssl.a
204 echo " CC $@.c"
205 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
206
207test_suite_dhm: test_suite_dhm.c ../library/libpolarssl.a
208 echo " CC $@.c"
209 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
210
Paul Bakkerd589a0d2013-03-13 16:30:17 +0100211test_suite_ecdh: test_suite_ecdh.c ../library/libpolarssl.a
212 echo " CC $@.c"
213 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
214
215test_suite_ecdsa: test_suite_ecdsa.c ../library/libpolarssl.a
216 echo " CC $@.c"
217 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
218
Paul Bakkera95919b2013-01-16 17:00:05 +0100219test_suite_ecp: test_suite_ecp.c ../library/libpolarssl.a
220 echo " CC $@.c"
221 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
222
Paul Bakker9d781402011-05-09 16:17:09 +0000223test_suite_error: test_suite_error.c ../library/libpolarssl.a
224 echo " CC $@.c"
225 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
226
Paul Bakker286bf3c2013-04-08 18:09:51 +0200227test_suite_gcm.decrypt_128: test_suite_gcm.decrypt_128.c ../library/libpolarssl.a
Paul Bakker89e80c92012-03-20 13:50:09 +0000228 echo " CC $@.c"
229 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
230
Paul Bakker286bf3c2013-04-08 18:09:51 +0200231test_suite_gcm.decrypt_192: test_suite_gcm.decrypt_192.c ../library/libpolarssl.a
232 echo " CC $@.c"
233 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
234
235test_suite_gcm.decrypt_256: test_suite_gcm.decrypt_256.c ../library/libpolarssl.a
236 echo " CC $@.c"
237 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
238
239test_suite_gcm.encrypt_128: test_suite_gcm.encrypt_128.c ../library/libpolarssl.a
240 echo " CC $@.c"
241 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
242
243test_suite_gcm.encrypt_192: test_suite_gcm.encrypt_192.c ../library/libpolarssl.a
244 echo " CC $@.c"
245 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
246
247test_suite_gcm.encrypt_256: test_suite_gcm.encrypt_256.c ../library/libpolarssl.a
Paul Bakker89e80c92012-03-20 13:50:09 +0000248 echo " CC $@.c"
249 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
250
Paul Bakker0049c2f2009-07-11 19:15:43 +0000251test_suite_hmac_shax: test_suite_hmac_shax.c ../library/libpolarssl.a
252 echo " CC $@.c"
253 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
254
Paul Bakker17373852011-01-06 14:20:01 +0000255test_suite_md: test_suite_md.c ../library/libpolarssl.a
256 echo " CC $@.c"
257 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
258
Paul Bakker0049c2f2009-07-11 19:15:43 +0000259test_suite_mdx: test_suite_mdx.c ../library/libpolarssl.a
260 echo " CC $@.c"
261 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
262
263test_suite_mpi: test_suite_mpi.c ../library/libpolarssl.a
264 echo " CC $@.c"
265 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
266
Paul Bakkerf518b162012-08-23 13:03:18 +0000267test_suite_pbkdf2: test_suite_pbkdf2.c ../library/libpolarssl.a
268 echo " CC $@.c"
269 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
270
Paul Bakker9dcc3222011-03-08 14:16:06 +0000271test_suite_pkcs1_v21: test_suite_pkcs1_v21.c ../library/libpolarssl.a
272 echo " CC $@.c"
273 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
274
Paul Bakkerb0c19a42013-06-24 19:26:38 +0200275test_suite_pkcs5: test_suite_pkcs5.c ../library/libpolarssl.a
276 echo " CC $@.c"
277 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
278
Paul Bakker1a7550a2013-09-15 13:01:22 +0200279test_suite_pkparse: test_suite_pkparse.c ../library/libpolarssl.a
280 echo " CC $@.c"
281 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
282
Paul Bakkerc7bb02b2013-09-15 14:54:56 +0200283test_suite_pkwrite: test_suite_pkwrite.c ../library/libpolarssl.a
284 echo " CC $@.c"
285 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
286
Paul Bakker0049c2f2009-07-11 19:15:43 +0000287test_suite_rsa: test_suite_rsa.c ../library/libpolarssl.a
288 echo " CC $@.c"
289 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
290
291test_suite_shax: test_suite_shax.c ../library/libpolarssl.a
292 echo " CC $@.c"
293 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
294
295test_suite_x509parse: test_suite_x509parse.c ../library/libpolarssl.a
296 echo " CC $@.c"
297 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
298
Paul Bakker6d620502012-02-16 14:09:13 +0000299test_suite_x509write: test_suite_x509write.c ../library/libpolarssl.a
300 echo " CC $@.c"
301 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
302
Paul Bakker0049c2f2009-07-11 19:15:43 +0000303test_suite_xtea: test_suite_xtea.c ../library/libpolarssl.a
304 echo " CC $@.c"
305 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
306
Paul Bakker7d7f4f42010-02-18 18:26:04 +0000307test_suite_debug: test_suite_debug.c ../library/libpolarssl.a
308 echo " CC $@.c"
309 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
310
Paul Bakker3ac1b2d2010-06-18 22:47:29 +0000311test_suite_version: test_suite_version.c ../library/libpolarssl.a
312 echo " CC $@.c"
313 $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
314
Paul Bakker0049c2f2009-07-11 19:15:43 +0000315clean:
Paul Bakker62f88dc2012-05-10 21:26:28 +0000316ifndef WINDOWS
Paul Bakker0049c2f2009-07-11 19:15:43 +0000317 rm -f $(APPS) *.c
Paul Bakker62f88dc2012-05-10 21:26:28 +0000318endif
319ifdef WINDOWS
320 del /Q /F *.c *.exe
321endif
Paul Bakker0049c2f2009-07-11 19:15:43 +0000322
Paul Bakker9794cb42009-07-28 18:55:00 +0000323check: $(APPS)
Paul Bakker62f88dc2012-05-10 21:26:28 +0000324ifndef WINDOWS
Paul Bakkerd14cd352012-05-08 15:39:50 +0000325 echo "Running checks (Success if all tests PASSED)"
326 RETURN=0; \
Paul Bakkerd947d762009-07-28 20:16:47 +0000327 for i in $(APPS); \
328 do \
329 echo " - $${i}"; \
Paul Bakker667086b2013-08-20 23:11:06 +0200330 RESULT=`./$${i} | grep -v 'PASS$$' | grep -v -- '----' | grep -v '^$$'`; \
Paul Bakkerd14cd352012-05-08 15:39:50 +0000331 FAILED=`echo $$RESULT |grep FAILED`; \
332 echo " $$RESULT"; \
333 if [ "$$FAILED" != "" ]; \
334 then \
335 echo "**** Failed ***************"; \
336 RETURN=1; \
337 fi; \
Paul Bakkerd947d762009-07-28 20:16:47 +0000338 echo ""; \
Paul Bakkerd14cd352012-05-08 15:39:50 +0000339 done; \
340 if [ "$$RETURN" -eq 1 ]; then exit 1; fi
Paul Bakker62f88dc2012-05-10 21:26:28 +0000341endif