X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2FMakefile.am;h=21e45f7d8dc11ef3ab525bc52d63a8c045056a13;hb=b0f7726931e9339e91b8d49941626f015015bd98;hp=c1d887e9759d2e0687bcda210aafd92c01a66bcd;hpb=e02d67b2fc0203ba2bf5f705429a9c2280183795;p=meshlink diff --git a/src/Makefile.am b/src/Makefile.am index c1d887e9..21e45f7d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,12 +1,6 @@ ## Produce this file with automake to get Makefile.in -sbin_PROGRAMS = sptps_test sptps_keypair - -if LINUX -sbin_PROGRAMS += sptps_speed -endif - -DEFAULT_INCLUDES = +AM_CPPFLAGS = -Wall ed25519_SOURCES = \ ed25519/add_scalar.c \ @@ -31,35 +25,11 @@ chacha_poly1305_SOURCES = \ utcp_SOURCES = \ utcp/utcp.c utcp/utcp.h -sptps_test_SOURCES = \ - crypto.c crypto.h \ - logger.c logger.h \ - prf.c prf.h \ - sptps.c sptps.h \ - sptps_test.c \ - utils.c utils.h \ - $(ed25519_SOURCES) \ - $(chacha_poly1305_SOURCES) - -sptps_keypair_SOURCES = \ - crypto.c crypto.h \ - sptps_keypair.c \ - utils.c utils.h \ - $(ed25519_SOURCES) - -sptps_speed_SOURCES = \ - crypto.c crypto.h \ - logger.c logger.h \ - prf.c prf.h \ - sptps.c sptps.h \ - sptps_speed.c \ - utils.c utils.h \ - $(ed25519_SOURCES) \ - $(chacha_poly1305_SOURCES) - lib_LTLIBRARIES = libmeshlink.la -libmeshlink_la_LDFLAGS = -export-symbols-regex '^meshlink_' +pkginclude_HEADERS = meshlink++.h meshlink.h + +libmeshlink_la_LDFLAGS = -export-symbols-regex '^(meshlink_|devtool_)' libmeshlink_la_SOURCES = \ meshlink.c meshlink.h \ @@ -68,6 +38,7 @@ libmeshlink_la_SOURCES = \ conf.c conf.h \ connection.c connection.h \ crypto.c crypto.h \ + discovery.c discovery.h \ dropin.c dropin.h \ ecdh.h \ ecdsa.h \ @@ -101,30 +72,20 @@ libmeshlink_la_SOURCES = \ system.h \ utils.c utils.h \ xalloc.h \ + devtools.c devtools.h \ $(ed25519_SOURCES) \ $(chacha_poly1305_SOURCES) \ $(utcp_SOURCES) -libmeshlink_la_CFLAGS = -fPIC +libmeshlink_la_CFLAGS = -fPIC -I../catta/include/ + +if MINGW +libmeshlink_la_CFLAGS += -I../catta/src/compat/windows/include/ +endif -libmeshlink_la_LIBADD = -lpthread +libmeshlink_la_LIBADD = -lpthread ../catta/src/libcatta.la libmeshlink_la_SOURCES += \ ed25519/ecdh.c \ ed25519/ecdsa.c \ ed25519/ecdsagen.c -sptps_test_SOURCES += \ - ed25519/ecdh.c \ - ed25519/ecdsa.c -sptps_keypair_SOURCES += \ - ed25519/ecdsagen.c -sptps_speed_SOURCES += \ - ed25519/ecdh.c \ - ed25519/ecdsa.c \ - ed25519/ecdsagen.c - -sptps_speed_LDADD = -lrt - -LIBS = @LIBS@ - -AM_CFLAGS = -DCONFDIR=\"$(sysconfdir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" -DSBINDIR=\"$(sbindir)\"