1 ## Produce this file with automake to get Makefile.in
3 sbin_PROGRAMS = sptps_test sptps_keypair
6 sbin_PROGRAMS += sptps_speed
12 ed25519/add_scalar.c \
14 ed25519/fe.c ed25519/fe.h \
16 ed25519/ge.c ed25519/ge.h \
17 ed25519/key_exchange.c \
19 ed25519/precomp_data.h \
20 ed25519/sc.c ed25519/sc.h \
22 ed25519/sha512.c ed25519/sha512.h \
26 chacha_poly1305_SOURCES = \
27 chacha-poly1305/chacha.c chacha-poly1305/chacha.h \
28 chacha-poly1305/chacha-poly1305.c chacha-poly1305/chacha-poly1305.h \
29 chacha-poly1305/poly1305.c chacha-poly1305/poly1305.h
31 sptps_test_SOURCES = \
39 $(chacha_poly1305_SOURCES)
41 sptps_keypair_SOURCES = \
47 sptps_speed_SOURCES = \
55 $(chacha_poly1305_SOURCES)
57 lib_LTLIBRARIES = libmeshlink.la
59 libmeshlink_la_LDFLAGS = -export-symbols-regex '^meshlink_'
61 libmeshlink_la_SOURCES = \
62 meshlink.c meshlink.h \
66 connection.c connection.h \
75 fake-getaddrinfo.c fake-getaddrinfo.h \
76 fake-getnameinfo.c fake-getnameinfo.h \
90 protocol.c protocol.h \
96 splay_tree.c splay_tree.h \
102 $(chacha_poly1305_SOURCES)
104 libmeshlink_la_CFLAGS = -fPIC
106 libmeshlink_la_LIBADD = -lpthread
108 libmeshlink_la_SOURCES += \
112 sptps_test_SOURCES += \
115 sptps_keypair_SOURCES += \
117 sptps_speed_SOURCES += \
122 sptps_speed_LDADD = -lrt
126 AM_CFLAGS = -DCONFDIR=\"$(sysconfdir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" -DSBINDIR=\"$(sbindir)\"