X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2FMakefile.am;h=9ee5f677d160968f013050153ce00bead06d3ddb;hb=53b239863ea0a44270d877945fa2014ec626ad01;hp=e0733bebfdfb89cbc12acd15e52a716c464cac57;hpb=0f18410ebaf1c503e5d0ca9624b24df930561d7d;p=tinc diff --git a/src/Makefile.am b/src/Makefile.am index e0733beb..9ee5f677 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,7 +55,9 @@ 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 \ control.c control.h \ control_common.h \ @@ -69,7 +74,8 @@ 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 \ ipv6.h \ @@ -118,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 \ @@ -207,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 \ @@ -235,12 +244,14 @@ tincd_SOURCES += \ gcrypt/cipher.c \ gcrypt/crypto.c \ gcrypt/digest.c gcrypt/digest.h \ + gcrypt/pem.c gcrypt/pem.h \ gcrypt/prf.c \ gcrypt/rsa.c tinc_SOURCES += \ gcrypt/cipher.c \ gcrypt/crypto.c \ gcrypt/digest.c gcrypt/digest.h \ + gcrypt/pem.c gcrypt/pem.h \ gcrypt/prf.c \ gcrypt/rsa.c \ gcrypt/rsagen.c @@ -250,11 +261,11 @@ sptps_test_SOURCES += \ gcrypt/digest.c gcrypt/digest.h \ gcrypt/prf.c sptps_keypair_SOURCES += \ - openssl/crypto.c + gcrypt/crypto.c sptps_speed_SOURCES += \ - openssl/crypto.c \ - openssl/digest.c openssl/digest.h \ - openssl/prf.c + gcrypt/crypto.c \ + gcrypt/digest.c gcrypt/digest.h \ + gcrypt/prf.c else tincd_SOURCES += \ nolegacy/crypto.c \ @@ -273,6 +284,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)