First working version
This commit is contained in:
parent
6d9853618a
commit
6633bf52e3
1 changed files with 30 additions and 32 deletions
|
@ -31,14 +31,16 @@ libed25519_la_SOURCES = \
|
||||||
ed25519/precomp_data.h \
|
ed25519/precomp_data.h \
|
||||||
ed25519/sc.c ed25519/sc.h \
|
ed25519/sc.c ed25519/sc.h \
|
||||||
ed25519/sha512.c ed25519/sha512.h \
|
ed25519/sha512.c ed25519/sha512.h \
|
||||||
|
ed25519/ecdsa.c \
|
||||||
ed25519/sign.c \
|
ed25519/sign.c \
|
||||||
ed25519/verify.c
|
ed25519/verify.c
|
||||||
|
|
||||||
libtincconf_la_SOURCES = \
|
libtincconf_la_SOURCES = \
|
||||||
conf.c conf.h
|
conf.h
|
||||||
|
|
||||||
libtincd_la_SOURCES = \
|
libtincd_la_SOURCES = \
|
||||||
conf.h \
|
conf.h \
|
||||||
|
conf.c \
|
||||||
buffer.c buffer.h \
|
buffer.c buffer.h \
|
||||||
cipher.h \
|
cipher.h \
|
||||||
connection.c connection.h \
|
connection.c connection.h \
|
||||||
|
@ -77,7 +79,6 @@ libtincd_la_SOURCES = \
|
||||||
netutl.c netutl.h \
|
netutl.c netutl.h \
|
||||||
node.c node.h \
|
node.c node.h \
|
||||||
prf.h \
|
prf.h \
|
||||||
process.h process.c \
|
|
||||||
protocol.c protocol.h \
|
protocol.c protocol.h \
|
||||||
protocol_auth.c \
|
protocol_auth.c \
|
||||||
protocol_edge.c \
|
protocol_edge.c \
|
||||||
|
@ -101,32 +102,8 @@ libtincd_la_SOURCES = \
|
||||||
ed25519/ecdsa.c \
|
ed25519/ecdsa.c \
|
||||||
dropin.c dropin.h \
|
dropin.c dropin.h \
|
||||||
getopt.c getopt.h \
|
getopt.c getopt.h \
|
||||||
getopt1.c \
|
process.h process.c \
|
||||||
$(libed25519_la_SOURCES) \
|
getopt1.c
|
||||||
$(libchacha_poly1305_la_SOURCES)
|
|
||||||
|
|
||||||
tinc_SOURCES = \
|
|
||||||
invitation.c invitation.h \
|
|
||||||
top.c top.h \
|
|
||||||
fsck.c fsck.h \
|
|
||||||
info.c info.h \
|
|
||||||
tincctl.c tincctl.h \
|
|
||||||
$(libed25519_la_SOURCES) \
|
|
||||||
$(libchacha_poly1305_la_SOURCES)
|
|
||||||
|
|
||||||
sptps_test_SOURCES = \
|
|
||||||
sptps_test.c \
|
|
||||||
$(libed25519_la_SOURCES) \
|
|
||||||
$(libchacha_poly1305_la_SOURCES)
|
|
||||||
|
|
||||||
sptps_keypair_SOURCES = \
|
|
||||||
sptps_keypair.c \
|
|
||||||
$(libed25519_la_SOURCES)
|
|
||||||
|
|
||||||
sptps_speed_SOURCES = \
|
|
||||||
sptps_speed.c \
|
|
||||||
$(libed25519_la_SOURCES) \
|
|
||||||
$(libchacha_poly1305_la_SOURCES)
|
|
||||||
|
|
||||||
## Conditionally compile device drivers
|
## Conditionally compile device drivers
|
||||||
|
|
||||||
|
@ -186,13 +163,34 @@ endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
tincd_SOURCES = \
|
tincd_SOURCES = \
|
||||||
process.h \
|
conf.h \
|
||||||
tincd.c
|
tincd.c
|
||||||
|
|
||||||
|
tinc_SOURCES = \
|
||||||
|
invitation.c invitation.h \
|
||||||
|
top.c top.h \
|
||||||
|
fsck.c fsck.h \
|
||||||
|
info.c info.h \
|
||||||
|
ed25519/ecdsagen.c \
|
||||||
|
tincctl.c tincctl.h
|
||||||
|
|
||||||
|
sptps_test_SOURCES = \
|
||||||
|
sptps_test.c
|
||||||
|
|
||||||
|
sptps_keypair_SOURCES = \
|
||||||
|
ed25519/ecdsagen.c \
|
||||||
|
sptps_keypair.c
|
||||||
|
|
||||||
|
sptps_speed_SOURCES = \
|
||||||
|
ed25519/ecdsagen.c \
|
||||||
|
sptps_speed.c
|
||||||
|
|
||||||
|
|
||||||
tincd_LDADD = libtincd.la libed25519.la libchacha_poly1305.la libtincconf.la
|
tincd_LDADD = libtincd.la libed25519.la libchacha_poly1305.la libtincconf.la
|
||||||
tinc_LDADD = $(READLINE_LIBS) $(CURSES_LIBS) libtincd.la libtincconf.la
|
tinc_LDADD = $(READLINE_LIBS) $(CURSES_LIBS) libtincd.la libtincconf.la libed25519.la libchacha_poly1305.la
|
||||||
sptps_speed_LDADD = -lrt libtincd.la libed25519.la
|
sptps_speed_LDADD = -lrt libtincd.la libed25519.la libtincconf.la libchacha_poly1305.la
|
||||||
sptps_test_LDADD = -lrt libtincd.la libed25519.la
|
sptps_test_LDADD = -lrt libtincd.la libed25519.la libtincconf.la libchacha_poly1305.la
|
||||||
|
sptps_keypair_LDADD = -lrt libed25519.la libtincconf.la libchacha_poly1305.la libtincd.la
|
||||||
|
|
||||||
LIBS = @LIBS@ -lm
|
LIBS = @LIBS@ -lm
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue