| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 1 |  | 
|  | 2 | # To compile on SunOS: add "-lsocket -lnsl" to LDFLAGS | 
| Paul Bakker | 62f88dc | 2012-05-10 21:26:28 +0000 | [diff] [blame] | 3 | # To compile on MinGW: add "-lws2_32" to LDFLAGS or define WINDOWS in your env | 
| Paul Bakker | 43b7e35 | 2011-01-18 15:27:19 +0000 | [diff] [blame] | 4 | # To compile with PKCS11: add "-lpkcs11-helper" to LDFLAGS | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 5 |  | 
| Paul Bakker | 46eb138 | 2011-01-30 17:10:13 +0000 | [diff] [blame] | 6 | CFLAGS	+= -I../include -D_FILE_OFFSET_BITS=64 -Wall -W -Wdeclaration-after-statement \ | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 7 | -Wno-unused-function -Wno-unused-value | 
|  | 8 |  | 
| Paul Bakker | f1ab0ec | 2012-10-23 12:12:53 +0000 | [diff] [blame] | 9 | OFLAGS	= -O2 | 
| Paul Bakker | a585beb | 2011-06-21 08:59:44 +0000 | [diff] [blame] | 10 | LDFLAGS	+= -L../library -lpolarssl $(SYS_LDFLAGS) | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 11 |  | 
| Paul Bakker | c7ffd36 | 2012-04-05 12:08:29 +0000 | [diff] [blame] | 12 | ifdef DEBUG | 
|  | 13 | CFLAGS += -g3 | 
|  | 14 | endif | 
|  | 15 |  | 
| Paul Bakker | cd5b529 | 2012-05-10 20:49:10 +0000 | [diff] [blame] | 16 | ifdef WINDOWS | 
|  | 17 | LDFLAGS += -lws2_32 | 
|  | 18 | endif | 
|  | 19 |  | 
| Paul Bakker | 2770fbd | 2012-07-03 13:30:23 +0000 | [diff] [blame] | 20 | # Zlib shared library extensions: | 
|  | 21 | ifdef ZLIB | 
|  | 22 | LDFLAGS += -lz | 
|  | 23 | endif | 
|  | 24 |  | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 25 | APPS =	test_suite_aes.ecb		test_suite_aes.cbc		\ | 
|  | 26 | test_suite_aes.cfb		test_suite_aes.rest		\ | 
|  | 27 | test_suite_arc4									\ | 
| Paul Bakker | a9379c0 | 2012-07-04 11:02:11 +0000 | [diff] [blame] | 28 | test_suite_base64		test_suite_blowfish		\ | 
| Paul Bakker | 6132d0a | 2012-07-04 17:10:40 +0000 | [diff] [blame] | 29 | test_suite_camellia		test_suite_cipher.aes	\ | 
| Manuel Pégourié-Gonnard | 07f8fa5 | 2013-08-30 18:34:08 +0200 | [diff] [blame] | 30 | test_suite_cipher.arc4	test_suite_cipher.gcm	\ | 
| Paul Bakker | 6132d0a | 2012-07-04 17:10:40 +0000 | [diff] [blame] | 31 | test_suite_cipher.blowfish						\ | 
|  | 32 | test_suite_cipher.camellia						\ | 
| Paul Bakker | fab5c82 | 2012-02-06 16:45:10 +0000 | [diff] [blame] | 33 | test_suite_cipher.des	test_suite_cipher.null	\ | 
| Manuel Pégourié-Gonnard | d5fdcaf | 2013-07-24 18:05:00 +0200 | [diff] [blame] | 34 | test_suite_cipher.padding						\ | 
| Paul Bakker | fab5c82 | 2012-02-06 16:45:10 +0000 | [diff] [blame] | 35 | test_suite_ctr_drbg		test_suite_debug		\ | 
| Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 36 | test_suite_des			test_suite_dhm			\ | 
| Paul Bakker | d589a0d | 2013-03-13 16:30:17 +0100 | [diff] [blame] | 37 | test_suite_ecdh			test_suite_ecdsa		\ | 
| Paul Bakker | a95919b | 2013-01-16 17:00:05 +0100 | [diff] [blame] | 38 | test_suite_ecp									\ | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 39 | test_suite_error								\ | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 40 | test_suite_gcm.aes128_de						\ | 
|  | 41 | test_suite_gcm.aes192_de						\ | 
|  | 42 | test_suite_gcm.aes256_de						\ | 
|  | 43 | test_suite_gcm.aes128_en						\ | 
|  | 44 | test_suite_gcm.aes192_en						\ | 
|  | 45 | test_suite_gcm.aes256_en						\ | 
| Manuel Pégourié-Gonnard | 13e0d44 | 2013-10-24 12:59:00 +0200 | [diff] [blame] | 46 | test_suite_gcm.camellia	test_suite_hmac_shax	\ | 
| Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 47 | test_suite_md			test_suite_mdx			\ | 
| Paul Bakker | f518b16 | 2012-08-23 13:03:18 +0000 | [diff] [blame] | 48 | test_suite_mpi			test_suite_pbkdf2		\ | 
| Paul Bakker | b0c19a4 | 2013-06-24 19:26:38 +0200 | [diff] [blame] | 49 | test_suite_pkcs1_v21	test_suite_pkcs5		\ | 
| Paul Bakker | c7bb02b | 2013-09-15 14:54:56 +0200 | [diff] [blame] | 50 | test_suite_pkparse		test_suite_pkwrite		\ | 
| Manuel Pégourié-Gonnard | b0a467f | 2013-09-21 12:31:05 +0200 | [diff] [blame] | 51 | test_suite_pk									\ | 
| Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 52 | test_suite_rsa			test_suite_shax			\ | 
| Paul Bakker | 6d62050 | 2012-02-16 14:09:13 +0000 | [diff] [blame] | 53 | test_suite_x509parse	test_suite_x509write	\ | 
|  | 54 | test_suite_xtea			test_suite_version | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 55 |  | 
|  | 56 | .SILENT: | 
|  | 57 |  | 
|  | 58 | all: $(APPS) | 
|  | 59 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 60 | test_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 Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 61 | echo   "  Generate	$@" | 
|  | 62 | scripts/generate_code.pl suites test_suite_aes test_suite_aes.ecb | 
|  | 63 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 64 | test_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 Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 65 | echo   "  Generate	$@" | 
|  | 66 | scripts/generate_code.pl suites test_suite_aes test_suite_aes.cbc | 
|  | 67 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 68 | test_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 Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 69 | echo   "  Generate	$@" | 
|  | 70 | scripts/generate_code.pl suites test_suite_aes test_suite_aes.cfb | 
|  | 71 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 72 | test_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 Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 73 | echo   "  Generate	$@" | 
|  | 74 | scripts/generate_code.pl suites test_suite_aes test_suite_aes.rest | 
|  | 75 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 76 | test_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 Bakker | 46c1794 | 2011-07-13 14:54:54 +0000 | [diff] [blame] | 77 | echo   "  Generate	$@" | 
|  | 78 | scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.aes | 
|  | 79 |  | 
| Manuel Pégourié-Gonnard | 37e230c | 2013-08-28 13:50:42 +0200 | [diff] [blame] | 80 | test_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 | 
|  | 81 | echo   "  Generate	$@" | 
|  | 82 | scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.arc4 | 
|  | 83 |  | 
| Manuel Pégourié-Gonnard | 07f8fa5 | 2013-08-30 18:34:08 +0200 | [diff] [blame] | 84 | test_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 | 
|  | 85 | echo   "  Generate	$@" | 
|  | 86 | scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.gcm | 
|  | 87 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 88 | test_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 Bakker | 6132d0a | 2012-07-04 17:10:40 +0000 | [diff] [blame] | 89 | echo   "  Generate	$@" | 
|  | 90 | scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.blowfish | 
|  | 91 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 92 | test_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 Bakker | 46c1794 | 2011-07-13 14:54:54 +0000 | [diff] [blame] | 93 | echo   "  Generate	$@" | 
|  | 94 | scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.camellia | 
|  | 95 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 96 | test_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 Bakker | 46c1794 | 2011-07-13 14:54:54 +0000 | [diff] [blame] | 97 | echo   "  Generate	$@" | 
|  | 98 | scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.des | 
|  | 99 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 100 | test_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 Bakker | fab5c82 | 2012-02-06 16:45:10 +0000 | [diff] [blame] | 101 | echo   "  Generate	$@" | 
|  | 102 | scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.null | 
|  | 103 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 104 | test_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é-Gonnard | d5fdcaf | 2013-07-24 18:05:00 +0200 | [diff] [blame] | 105 | echo   "  Generate	$@" | 
|  | 106 | scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.padding | 
|  | 107 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 108 | test_suite_gcm.aes128_de.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes128_de.data scripts/generate_code.pl suites/helpers.function suites/main_test.function | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 109 | echo   "  Generate	$@" | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 110 | scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes128_de | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 111 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 112 | test_suite_gcm.aes192_de.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes192_de.data scripts/generate_code.pl suites/helpers.function suites/main_test.function | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 113 | echo   "  Generate	$@" | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 114 | scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes192_de | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 115 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 116 | test_suite_gcm.aes256_de.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes256_de.data scripts/generate_code.pl suites/helpers.function suites/main_test.function | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 117 | echo   "  Generate	$@" | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 118 | scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes256_de | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 119 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 120 | test_suite_gcm.aes128_en.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes128_en.data scripts/generate_code.pl suites/helpers.function suites/main_test.function | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 121 | echo   "  Generate	$@" | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 122 | scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes128_en | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 123 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 124 | test_suite_gcm.aes192_en.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes192_en.data scripts/generate_code.pl suites/helpers.function suites/main_test.function | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 125 | echo   "  Generate	$@" | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 126 | scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes192_en | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 127 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 128 | test_suite_gcm.aes256_en.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes256_en.data scripts/generate_code.pl suites/helpers.function suites/main_test.function | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 129 | echo   "  Generate	$@" | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 130 | scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes256_en | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 131 |  | 
| Manuel Pégourié-Gonnard | 13e0d44 | 2013-10-24 12:59:00 +0200 | [diff] [blame] | 132 | test_suite_gcm.camellia.c : suites/test_suite_gcm.function suites/test_suite_gcm.camellia.data scripts/generate_code.pl suites/helpers.function suites/main_test.function | 
|  | 133 | echo   "  Generate	$@" | 
|  | 134 | scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.camellia | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 135 |  | 
| Paul Bakker | 1934318 | 2013-08-16 13:31:10 +0200 | [diff] [blame] | 136 | %.c : suites/%.function suites/%.data scripts/generate_code.pl suites/helpers.function suites/main_test.function | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 137 | echo   "  Generate	$@" | 
| Paul Bakker | 46c1794 | 2011-07-13 14:54:54 +0000 | [diff] [blame] | 138 | scripts/generate_code.pl suites $* $* | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 139 |  | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 140 | test_suite_aes.ecb: test_suite_aes.ecb.c ../library/libpolarssl.a | 
|  | 141 | echo   "  CC    	$@.c" | 
|  | 142 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 143 |  | 
|  | 144 | test_suite_aes.cbc: test_suite_aes.cbc.c ../library/libpolarssl.a | 
|  | 145 | echo   "  CC    	$@.c" | 
|  | 146 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 147 |  | 
|  | 148 | test_suite_aes.cfb: test_suite_aes.cfb.c ../library/libpolarssl.a | 
|  | 149 | echo   "  CC    	$@.c" | 
|  | 150 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 151 |  | 
|  | 152 | test_suite_aes.rest: test_suite_aes.rest.c ../library/libpolarssl.a | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 153 | echo   "  CC    	$@.c" | 
|  | 154 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 155 |  | 
|  | 156 | test_suite_arc4: test_suite_arc4.c ../library/libpolarssl.a | 
|  | 157 | echo   "  CC    	$@.c" | 
|  | 158 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 159 |  | 
|  | 160 | test_suite_base64: test_suite_base64.c ../library/libpolarssl.a | 
|  | 161 | echo   "  CC    	$@.c" | 
|  | 162 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 163 |  | 
| Paul Bakker | a9379c0 | 2012-07-04 11:02:11 +0000 | [diff] [blame] | 164 | test_suite_blowfish: test_suite_blowfish.c ../library/libpolarssl.a | 
|  | 165 | echo   "  CC    	$@.c" | 
|  | 166 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 167 |  | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 168 | test_suite_camellia: test_suite_camellia.c ../library/libpolarssl.a | 
|  | 169 | echo   "  CC    	$@.c" | 
|  | 170 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 171 |  | 
| Paul Bakker | 46c1794 | 2011-07-13 14:54:54 +0000 | [diff] [blame] | 172 | test_suite_cipher.aes: test_suite_cipher.aes.c ../library/libpolarssl.a | 
|  | 173 | echo   "  CC    	$@.c" | 
|  | 174 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 175 |  | 
| Manuel Pégourié-Gonnard | 37e230c | 2013-08-28 13:50:42 +0200 | [diff] [blame] | 176 | test_suite_cipher.arc4: test_suite_cipher.arc4.c ../library/libpolarssl.a | 
|  | 177 | echo   "  CC    	$@.c" | 
|  | 178 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 179 |  | 
| Manuel Pégourié-Gonnard | 07f8fa5 | 2013-08-30 18:34:08 +0200 | [diff] [blame] | 180 | test_suite_cipher.gcm: test_suite_cipher.gcm.c ../library/libpolarssl.a | 
|  | 181 | echo   "  CC    	$@.c" | 
|  | 182 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 183 |  | 
| Paul Bakker | 6132d0a | 2012-07-04 17:10:40 +0000 | [diff] [blame] | 184 | test_suite_cipher.blowfish: test_suite_cipher.blowfish.c ../library/libpolarssl.a | 
|  | 185 | echo   "  CC    	$@.c" | 
|  | 186 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 187 |  | 
| Paul Bakker | 46c1794 | 2011-07-13 14:54:54 +0000 | [diff] [blame] | 188 | test_suite_cipher.camellia: test_suite_cipher.camellia.c ../library/libpolarssl.a | 
|  | 189 | echo   "  CC    	$@.c" | 
|  | 190 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 191 |  | 
| Paul Bakker | fab5c82 | 2012-02-06 16:45:10 +0000 | [diff] [blame] | 192 | test_suite_cipher.des: test_suite_cipher.des.c ../library/libpolarssl.a | 
| Paul Bakker | 0e04d0e | 2011-11-27 14:46:59 +0000 | [diff] [blame] | 193 | echo   "  CC    	$@.c" | 
|  | 194 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 195 |  | 
| Paul Bakker | fab5c82 | 2012-02-06 16:45:10 +0000 | [diff] [blame] | 196 | test_suite_cipher.null: test_suite_cipher.null.c ../library/libpolarssl.a | 
|  | 197 | echo   "  CC    	$@.c" | 
|  | 198 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 199 |  | 
| Manuel Pégourié-Gonnard | d5fdcaf | 2013-07-24 18:05:00 +0200 | [diff] [blame] | 200 | test_suite_cipher.padding: test_suite_cipher.padding.c ../library/libpolarssl.a | 
|  | 201 | echo   "  CC    	$@.c" | 
|  | 202 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 203 |  | 
| Paul Bakker | fab5c82 | 2012-02-06 16:45:10 +0000 | [diff] [blame] | 204 | test_suite_ctr_drbg: test_suite_ctr_drbg.c ../library/libpolarssl.a | 
| Paul Bakker | 8123e9d | 2011-01-06 15:37:30 +0000 | [diff] [blame] | 205 | echo   "  CC    	$@.c" | 
|  | 206 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 207 |  | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 208 | test_suite_des: test_suite_des.c ../library/libpolarssl.a | 
|  | 209 | echo   "  CC    	$@.c" | 
|  | 210 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 211 |  | 
|  | 212 | test_suite_dhm: test_suite_dhm.c ../library/libpolarssl.a | 
|  | 213 | echo   "  CC    	$@.c" | 
|  | 214 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 215 |  | 
| Paul Bakker | d589a0d | 2013-03-13 16:30:17 +0100 | [diff] [blame] | 216 | test_suite_ecdh: test_suite_ecdh.c ../library/libpolarssl.a | 
|  | 217 | echo   "  CC    	$@.c" | 
|  | 218 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 219 |  | 
|  | 220 | test_suite_ecdsa: test_suite_ecdsa.c ../library/libpolarssl.a | 
|  | 221 | echo   "  CC    	$@.c" | 
|  | 222 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 223 |  | 
| Paul Bakker | a95919b | 2013-01-16 17:00:05 +0100 | [diff] [blame] | 224 | test_suite_ecp: test_suite_ecp.c ../library/libpolarssl.a | 
|  | 225 | echo   "  CC    	$@.c" | 
|  | 226 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 227 |  | 
| Paul Bakker | 9d78140 | 2011-05-09 16:17:09 +0000 | [diff] [blame] | 228 | test_suite_error: test_suite_error.c ../library/libpolarssl.a | 
|  | 229 | echo   "  CC    	$@.c" | 
|  | 230 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 231 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 232 | test_suite_gcm.aes128_de: test_suite_gcm.aes128_de.c ../library/libpolarssl.a | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 233 | echo   "  CC    	$@.c" | 
|  | 234 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 235 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 236 | test_suite_gcm.aes192_de: test_suite_gcm.aes192_de.c ../library/libpolarssl.a | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 237 | echo   "  CC    	$@.c" | 
|  | 238 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 239 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 240 | test_suite_gcm.aes256_de: test_suite_gcm.aes256_de.c ../library/libpolarssl.a | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 241 | echo   "  CC    	$@.c" | 
|  | 242 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 243 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 244 | test_suite_gcm.aes128_en: test_suite_gcm.aes128_en.c ../library/libpolarssl.a | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 245 | echo   "  CC    	$@.c" | 
|  | 246 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 247 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 248 | test_suite_gcm.aes192_en: test_suite_gcm.aes192_en.c ../library/libpolarssl.a | 
| Paul Bakker | 286bf3c | 2013-04-08 18:09:51 +0200 | [diff] [blame] | 249 | echo   "  CC    	$@.c" | 
|  | 250 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 251 |  | 
| Manuel Pégourié-Gonnard | 94dd5b4 | 2013-10-24 11:57:47 +0200 | [diff] [blame] | 252 | test_suite_gcm.aes256_en: test_suite_gcm.aes256_en.c ../library/libpolarssl.a | 
| Paul Bakker | 89e80c9 | 2012-03-20 13:50:09 +0000 | [diff] [blame] | 253 | echo   "  CC    	$@.c" | 
|  | 254 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 255 |  | 
| Manuel Pégourié-Gonnard | 13e0d44 | 2013-10-24 12:59:00 +0200 | [diff] [blame] | 256 | test_suite_gcm.camellia: test_suite_gcm.camellia.c ../library/libpolarssl.a | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 257 | echo   "  CC    	$@.c" | 
|  | 258 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
| Paul Bakker | 9dcc322 | 2011-03-08 14:16:06 +0000 | [diff] [blame] | 259 |  | 
|  | 260 | test_suite_hmac_shax: test_suite_hmac_shax.c ../library/libpolarssl.a | 
|  | 261 | echo   "  CC    	$@.c" | 
|  | 262 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 263 |  | 
|  | 264 | test_suite_md: test_suite_md.c ../library/libpolarssl.a | 
|  | 265 | echo   "  CC    	$@.c" | 
|  | 266 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 267 |  | 
|  | 268 | test_suite_mdx: test_suite_mdx.c ../library/libpolarssl.a | 
|  | 269 | echo   "  CC    	$@.c" | 
|  | 270 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 271 |  | 
|  | 272 | test_suite_mpi: test_suite_mpi.c ../library/libpolarssl.a | 
|  | 273 | echo   "  CC    	$@.c" | 
|  | 274 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
| Paul Bakker | 6d62050 | 2012-02-16 14:09:13 +0000 | [diff] [blame] | 275 |  | 
| Paul Bakker | f518b16 | 2012-08-23 13:03:18 +0000 | [diff] [blame] | 276 | test_suite_pbkdf2: test_suite_pbkdf2.c ../library/libpolarssl.a | 
|  | 277 | echo   "  CC    	$@.c" | 
|  | 278 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 279 |  | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 280 | test_suite_pkcs1_v21: test_suite_pkcs1_v21.c ../library/libpolarssl.a | 
|  | 281 | echo   "  CC    	$@.c" | 
|  | 282 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 283 |  | 
| Paul Bakker | b0c19a4 | 2013-06-24 19:26:38 +0200 | [diff] [blame] | 284 | test_suite_pkcs5: test_suite_pkcs5.c ../library/libpolarssl.a | 
|  | 285 | echo   "  CC    	$@.c" | 
|  | 286 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 287 |  | 
| Paul Bakker | 1a7550a | 2013-09-15 13:01:22 +0200 | [diff] [blame] | 288 | test_suite_pkparse: test_suite_pkparse.c ../library/libpolarssl.a | 
|  | 289 | echo   "  CC    	$@.c" | 
|  | 290 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 291 |  | 
| Paul Bakker | c7bb02b | 2013-09-15 14:54:56 +0200 | [diff] [blame] | 292 | test_suite_pkwrite: test_suite_pkwrite.c ../library/libpolarssl.a | 
|  | 293 | echo   "  CC    	$@.c" | 
|  | 294 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 295 |  | 
| Paul Bakker | 3292562 | 2013-10-28 17:32:48 +0100 | [diff] [blame^] | 296 | test_suite_pk: test_suite_pk.c ../library/libpolarssl.a | 
|  | 297 | echo   "  CC    	$@.c" | 
|  | 298 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 299 |  | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 300 | test_suite_rsa: test_suite_rsa.c ../library/libpolarssl.a | 
|  | 301 | echo   "  CC    	$@.c" | 
|  | 302 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 303 |  | 
|  | 304 | test_suite_shax: test_suite_shax.c ../library/libpolarssl.a | 
|  | 305 | echo   "  CC    	$@.c" | 
|  | 306 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 307 |  | 
|  | 308 | test_suite_x509parse: test_suite_x509parse.c ../library/libpolarssl.a | 
|  | 309 | echo   "  CC    	$@.c" | 
|  | 310 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 311 |  | 
| Paul Bakker | 6d62050 | 2012-02-16 14:09:13 +0000 | [diff] [blame] | 312 | test_suite_x509write: test_suite_x509write.c ../library/libpolarssl.a | 
|  | 313 | echo   "  CC    	$@.c" | 
|  | 314 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 315 |  | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 316 | test_suite_xtea: test_suite_xtea.c ../library/libpolarssl.a | 
|  | 317 | echo   "  CC    	$@.c" | 
|  | 318 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 319 |  | 
| Paul Bakker | 7d7f4f4 | 2010-02-18 18:26:04 +0000 | [diff] [blame] | 320 | test_suite_debug: test_suite_debug.c ../library/libpolarssl.a | 
|  | 321 | echo   "  CC    	$@.c" | 
|  | 322 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 323 |  | 
| Paul Bakker | 3ac1b2d | 2010-06-18 22:47:29 +0000 | [diff] [blame] | 324 | test_suite_version: test_suite_version.c ../library/libpolarssl.a | 
|  | 325 | echo   "  CC    	$@.c" | 
|  | 326 | $(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@ | 
|  | 327 |  | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 328 | clean: | 
| Paul Bakker | 62f88dc | 2012-05-10 21:26:28 +0000 | [diff] [blame] | 329 | ifndef WINDOWS | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 330 | rm -f $(APPS) *.c | 
| Paul Bakker | 62f88dc | 2012-05-10 21:26:28 +0000 | [diff] [blame] | 331 | endif | 
|  | 332 | ifdef WINDOWS | 
|  | 333 | del /Q /F *.c *.exe | 
|  | 334 | endif | 
| Paul Bakker | 0049c2f | 2009-07-11 19:15:43 +0000 | [diff] [blame] | 335 |  | 
| Paul Bakker | 9794cb4 | 2009-07-28 18:55:00 +0000 | [diff] [blame] | 336 | check: $(APPS) | 
| Paul Bakker | 62f88dc | 2012-05-10 21:26:28 +0000 | [diff] [blame] | 337 | ifndef WINDOWS | 
| Paul Bakker | d14cd35 | 2012-05-08 15:39:50 +0000 | [diff] [blame] | 338 | echo "Running checks (Success if all tests PASSED)" | 
|  | 339 | RETURN=0;																\ | 
| Paul Bakker | d947d76 | 2009-07-28 20:16:47 +0000 | [diff] [blame] | 340 | for i in $(APPS);														\ | 
|  | 341 | do																		\ | 
|  | 342 | echo " - $${i}";													\ | 
| Paul Bakker | 667086b | 2013-08-20 23:11:06 +0200 | [diff] [blame] | 343 | RESULT=`./$${i} | grep -v 'PASS$$' | grep -v -- '----' | grep -v '^$$'`;	\ | 
| Paul Bakker | d14cd35 | 2012-05-08 15:39:50 +0000 | [diff] [blame] | 344 | FAILED=`echo $$RESULT |grep FAILED`; 								\ | 
|  | 345 | echo "   $$RESULT";													\ | 
|  | 346 | if [ "$$FAILED" != "" ];											\ | 
|  | 347 | then																\ | 
|  | 348 | echo "**** Failed ***************";								\ | 
|  | 349 | RETURN=1;														\ | 
|  | 350 | fi; 																\ | 
| Paul Bakker | d947d76 | 2009-07-28 20:16:47 +0000 | [diff] [blame] | 351 | echo "";															\ | 
| Paul Bakker | d14cd35 | 2012-05-08 15:39:50 +0000 | [diff] [blame] | 352 | done;																	\ | 
|  | 353 | if [ "$$RETURN" -eq 1 ]; then exit 1; fi | 
| Paul Bakker | 62f88dc | 2012-05-10 21:26:28 +0000 | [diff] [blame] | 354 | endif |