X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2FMakefile.am;h=a2a9305ac54e32f219be1439581d728b5fb66f13;hb=01eaeb3c9fa60ae9c6e5b866acd9baef79622d99;hp=021d6b8ef537f2b016ceed061c44169c038022eb;hpb=6e182846ce82233e900d919afaab216181e627c2;p=meshlink diff --git a/src/Makefile.am b/src/Makefile.am index 021d6b8e..a2a9305a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -28,6 +28,9 @@ chacha_poly1305_SOURCES = \ chacha-poly1305/chacha-poly1305.c chacha-poly1305/chacha-poly1305.h \ chacha-poly1305/poly1305.c chacha-poly1305/poly1305.h +utcp_SOURCES = \ + utcp/utcp.c utcp/utcp.h + sptps_test_SOURCES = \ crypto.c crypto.h \ logger.c logger.h \ @@ -56,6 +59,8 @@ sptps_speed_SOURCES = \ lib_LTLIBRARIES = libmeshlink.la +libmeshlink_la_LDFLAGS = -export-symbols-regex '^(meshlink_|devtool_)' + libmeshlink_la_SOURCES = \ meshlink.c meshlink.h \ buffer.c buffer.h \ @@ -63,6 +68,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 \ @@ -94,15 +100,16 @@ libmeshlink_la_SOURCES = \ splay_tree.c splay_tree.h \ sptps.c sptps.h \ system.h \ - tincd.c \ utils.c utils.h \ xalloc.h \ + devtools.c devtools.h \ $(ed25519_SOURCES) \ - $(chacha_poly1305_SOURCES) + $(chacha_poly1305_SOURCES) \ + $(utcp_SOURCES) -libmeshlink_la_CFLAGS = -fPIC +libmeshlink_la_CFLAGS = -fPIC -I../avahi/ -libmeshlink_la_LIBADD = -lpthread +libmeshlink_la_LIBADD = -lpthread -luuid ../avahi/avahi-core/.libs/libavahi-core.a ../avahi/avahi-common/.libs/libavahi-common.a libmeshlink_la_SOURCES += \ ed25519/ecdh.c \