X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2FMakefile.am;h=12bfe176650dc11594b16af6dcd92ecad87e26f4;hb=2c6b2d70e6640f39563ad7bb0aa0ba87f883848c;hp=253e02a5ce2f6cd0fa33317ee5e718d55d8e1fc4;hpb=61b441dc995c1e6dd21fd85e2014dd981e9c9350;p=tinc diff --git a/src/Makefile.am b/src/Makefile.am index 253e02a5..12bfe176 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,10 +2,13 @@ sbin_PROGRAMS = tincd tinc check_PROGRAMS = sptps_test sptps_keypair -EXTRA_PROGRAMS = sptps_test sptps_keypair +EXTRA_PROGRAMS = $(check_PROGRAMS) CLEANFILES = version_git.h +.PHONY: extra +extra: $(EXTRA_PROGRAMS) + .PHONY: version-stamp version-stamp: @@ -41,11 +44,20 @@ chacha_poly1305_SOURCES = \ chacha-poly1305/chacha-poly1305.c chacha-poly1305/chacha-poly1305.h \ chacha-poly1305/poly1305.c chacha-poly1305/poly1305.h +if CONFIGURE_LZ4_BUILTIN +lz4_SOURCES = lib/lz4/lz4.c lib/lz4/lz4.h +else +lz4_SOURCES = +endif + tincd_SOURCES = \ + address_cache.c address_cache.h \ autoconnect.c autoconnect.h \ buffer.c buffer.h \ cipher.h \ + compression.h \ conf.c conf.h \ + conf_net.c conf_net.h \ connection.c connection.h \ control.c control.h \ control_common.h \ @@ -63,6 +75,7 @@ tincd_SOURCES = \ fd_device.c \ graph.c graph.h \ hash.c hash.h \ + keys.c keys.h \ have.h \ ipv4.h \ ipv6.h \ @@ -102,7 +115,8 @@ tincd_SOURCES = \ ed25519/ecdh.c \ ed25519/ecdsa.c \ $(ed25519_SOURCES) \ - $(chacha_poly1305_SOURCES) + $(chacha_poly1305_SOURCES) \ + $(lz4_SOURCES) tinc_SOURCES = \ dropin.c dropin.h \ @@ -110,6 +124,9 @@ tinc_SOURCES = \ ifconfig.c ifconfig.h \ info.c info.h \ invitation.c invitation.h \ + conf.c conf.h \ + keys.c keys.h \ + splay_tree.c splay_tree.h \ list.c list.h \ names.c names.h \ netutl.c netutl.h \ @@ -189,10 +206,6 @@ if MINGW tincd_SOURCES += mingw/device.c mingw/common.h endif -if CYGWIN -tincd_SOURCES += cygwin/device.c -endif - if UML tincd_SOURCES += uml_device.c endif @@ -275,13 +288,18 @@ tincd_LDADD = $(MINIUPNPC_LIBS) tincd_LDFLAGS = -pthread endif +if MINGW +sptps_test_LDFLAGS = -pthread +endif + tinc_LDADD = $(READLINE_LIBS) $(CURSES_LIBS) sptps_speed_LDADD = -lrt -LIBS = @LIBS@ -lm +LIBS = @LIBS@ -lm $(CODE_COVERAGE_LIBS) if TUNEMU LIBS += -lpcap endif -AM_CFLAGS = -DCONFDIR=\"$(sysconfdir)\" -DRUNSTATEDIR=\"$(runstatedir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" -DSBINDIR=\"$(sbindir)\" -iquote. +AM_CFLAGS = -DCONFDIR=\"$(sysconfdir)\" -DRUNSTATEDIR=\"$(runstatedir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" -DSBINDIR=\"$(sbindir)\" -iquote. $(CODE_COVERAGE_CFLAGS) +AM_CPPFLAGS = $(CODE_COVERAGE_CPPFLAGS)