X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;ds=inline;f=src%2FMakefile.am;h=a1d342392b00ed87184be12513228629cb5d486e;hb=1022812ed4b5c70162f2f0a9d9a96c716c936408;hp=306bbc42a607d44e78a81489b701000b4725bfa7;hpb=7208397398f7e08d741bfa83594a88e5d01b6220;p=tinc diff --git a/src/Makefile.am b/src/Makefile.am index 306bbc42..a1d34239 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: @@ -52,6 +55,7 @@ tincd_SOURCES = \ 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 \ @@ -70,7 +74,7 @@ tincd_SOURCES = \ event.c event.h \ fd_device.c \ graph.c graph.h \ - hash.c hash.h \ + hash.h \ keys.c keys.h \ have.h \ ipv4.h \ @@ -212,13 +216,13 @@ endif if OPENSSL tincd_SOURCES += \ - openssl/cipher.c \ + openssl/cipher.c openssl/cipher.h \ openssl/crypto.c \ openssl/digest.c openssl/digest.h \ openssl/prf.c \ openssl/rsa.c tinc_SOURCES += \ - openssl/cipher.c \ + openssl/cipher.c openssl/cipher.h \ openssl/crypto.c \ openssl/digest.c openssl/digest.h \ openssl/prf.c \ @@ -278,6 +282,13 @@ sptps_speed_SOURCES += \ endif endif +if WITH_LEGACY_PROTOCOL +tinc_SOURCES += digest.c +tincd_SOURCES += digest.c cipher.c +sptps_test_SOURCES += digest.c +sptps_speed_SOURCES += digest.c +endif + if MINIUPNPC tincd_SOURCES += upnp.h upnp.c tincd_LDADD = $(MINIUPNPC_LIBS)