diff options
Diffstat (limited to '3rd_party/ed25519/Makefile.am')
| -rw-r--r-- | 3rd_party/ed25519/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/3rd_party/ed25519/Makefile.am b/3rd_party/ed25519/Makefile.am new file mode 100644 index 0000000..438cb53 --- /dev/null +++ b/3rd_party/ed25519/Makefile.am | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | AUTOMAKE_OPTIONS = foreign no-dependencies | ||
| 2 | |||
| 3 | AM_CPPFLAGS = \ | ||
| 4 | -I$(top_srcdir)/include \ | ||
| 5 | -I$(top_srcdir) | ||
| 6 | |||
| 7 | AM_CFLAGS = \ | ||
| 8 | $(GLOBAL_CFLAGS) \ | ||
| 9 | $(ssl_lib_CFLAGS) | ||
| 10 | |||
| 11 | AM_LDFLAGS = | ||
| 12 | |||
| 13 | noinst_LTLIBRARIES = libed25519.la | ||
| 14 | libed25519_la_LIBADD = | ||
| 15 | libed25519_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined | ||
| 16 | libed25519_la_SOURCES = \ | ||
| 17 | add_scalar.c \ | ||
| 18 | ed25519.h \ | ||
| 19 | fe.c \ | ||
| 20 | fe.h \ | ||
| 21 | fixedint.h \ | ||
| 22 | ge.c \ | ||
| 23 | ge.h \ | ||
| 24 | keypair.c \ | ||
| 25 | key_exchange.c \ | ||
| 26 | precomp_data.h \ | ||
| 27 | sc.c \ | ||
| 28 | sc.h \ | ||
| 29 | seed.c \ | ||
| 30 | sign.c \ | ||
| 31 | sha512.c \ | ||
| 32 | sha512.h \ | ||
| 33 | verify.c | ||
