| 1 | AUTOMAKE_OPTIONS = foreign no-dependencies |
| 2 | |
| 3 | noinst_HEADERS = t_client.h t_pwd.h t_server.h t_sha.h \ |
| 4 | bn.h bn_lcl.h bn_prime.h t_defines.h t_read.h |
| 5 | |
| 6 | include_HEADERS = tinysrp.h |
| 7 | |
| 8 | lib_LIBRARIES = libtinysrp.a |
| 9 | |
| 10 | CFLAGS = -O2 @signed@ |
| 11 | |
| 12 | libtinysrp_a_SOURCES = \ |
| 13 | tinysrp.c t_client.c t_getconf.c t_conv.c t_getpass.c t_sha.c t_math.c \ |
| 14 | t_misc.c t_pw.c t_read.c t_server.c t_truerand.c \ |
| 15 | bn_add.c bn_ctx.c bn_div.c bn_exp.c bn_mul.c bn_word.c bn_asm.c bn_lib.c \ |
| 16 | bn_shift.c bn_sqr.c |
| 17 | |
| 18 | noinst_PROGRAMS = srvtest clitest |
| 19 | srvtest_SOURCES = srvtest.c |
| 20 | clitest_SOURCES = clitest.c |
| 21 | |
| 22 | bin_PROGRAMS = tconf tphrase |
| 23 | tconf_SOURCES = tconf.c t_conf.c |
| 24 | tphrase_SOURCES = tphrase.c |
| 25 | |
| 26 | LDADD = libtinysrp.a |
| 27 | |
| 28 | EXTRA_DIST = tpasswd Notes |
| 29 | |