Move .h files from noinst_HEADERS to tincd_SOURCES.
This is the recommended way according to the Automake manual.
This commit is contained in:
parent
de8e6bf452
commit
2df534808d
1 changed files with 59 additions and 90 deletions
149
src/Makefile.am
149
src/Makefile.am
|
@ -7,67 +7,85 @@ EXTRA_DIST = linux bsd solaris cygwin mingw openssl gcrypt
|
||||||
DEFAULT_INCLUDES =
|
DEFAULT_INCLUDES =
|
||||||
|
|
||||||
tincd_SOURCES = \
|
tincd_SOURCES = \
|
||||||
buffer.c \
|
buffer.c buffer.h \
|
||||||
conf.c \
|
cipher.h \
|
||||||
connection.c \
|
conf.c conf.h \
|
||||||
control.c \
|
connection.c connection.h \
|
||||||
dropin.c \
|
control.c control.h \
|
||||||
|
control_common.h \
|
||||||
|
crypto.h \
|
||||||
|
device.h \
|
||||||
|
digest.h \
|
||||||
|
dropin.c dropin.h \
|
||||||
dummy_device.c \
|
dummy_device.c \
|
||||||
edge.c \
|
ecdh.h \
|
||||||
event.c \
|
ecdsa.h \
|
||||||
fake-getaddrinfo.c \
|
ecdsagen.h \
|
||||||
fake-getnameinfo.c \
|
edge.c edge.h \
|
||||||
getopt.c \
|
ethernet.h \
|
||||||
|
event.c event.h \
|
||||||
|
fake-gai-errnos.h \
|
||||||
|
fake-getaddrinfo.c fake-getaddrinfo.h \
|
||||||
|
fake-getnameinfo.c fake-getnameinfo.h \
|
||||||
|
getopt.c getopt.h \
|
||||||
getopt1.c \
|
getopt1.c \
|
||||||
graph.c \
|
graph.c graph.h \
|
||||||
hash.c \
|
hash.c hash.h \
|
||||||
list.c \
|
have.h \
|
||||||
logger.c \
|
ipv4.h \
|
||||||
meta.c \
|
ipv6.h \
|
||||||
|
list.c list.h \
|
||||||
|
logger.c logger.h \
|
||||||
|
meta.c meta.h \
|
||||||
multicast_device.c \
|
multicast_device.c \
|
||||||
names.c \
|
names.c names.h \
|
||||||
net.c \
|
net.c net.h \
|
||||||
net_packet.c \
|
net_packet.c \
|
||||||
net_setup.c \
|
net_setup.c \
|
||||||
net_socket.c \
|
net_socket.c \
|
||||||
netutl.c \
|
netutl.c netutl.h \
|
||||||
node.c \
|
node.c node.h \
|
||||||
process.c \
|
prf.h \
|
||||||
protocol.c \
|
process.c process.h \
|
||||||
|
protocol.c protocol.h \
|
||||||
protocol_auth.c \
|
protocol_auth.c \
|
||||||
protocol_edge.c \
|
protocol_edge.c \
|
||||||
protocol_key.c \
|
protocol_key.c \
|
||||||
protocol_misc.c \
|
protocol_misc.c \
|
||||||
protocol_subnet.c \
|
protocol_subnet.c \
|
||||||
raw_socket_device.c \
|
raw_socket_device.c \
|
||||||
route.c \
|
route.c route.h \
|
||||||
splay_tree.c \
|
rsa.h \
|
||||||
sptps.c \
|
rsagen.h \
|
||||||
subnet.c \
|
splay_tree.c splay_tree.h \
|
||||||
|
sptps.c sptps.h \
|
||||||
|
subnet.c subnet.h \
|
||||||
subnet_parse.c \
|
subnet_parse.c \
|
||||||
|
system.h \
|
||||||
tincd.c \
|
tincd.c \
|
||||||
utils.c
|
utils.c utils.h \
|
||||||
|
xalloc.h
|
||||||
|
|
||||||
tinc_SOURCES = \
|
tinc_SOURCES = \
|
||||||
dropin.c \
|
dropin.c dropin.h \
|
||||||
getopt.c \
|
getopt.c getopt.h \
|
||||||
getopt1.c \
|
getopt1.c \
|
||||||
info.c \
|
info.c info.h \
|
||||||
invitation.c \
|
invitation.c invitation.h \
|
||||||
list.c \
|
list.c list.h \
|
||||||
names.c \
|
names.c names.h \
|
||||||
netutl.c \
|
netutl.c netutl.h \
|
||||||
sptps.c \
|
sptps.c sptps.h \
|
||||||
subnet_parse.c \
|
subnet_parse.c subnet.h \
|
||||||
tincctl.c \
|
tincctl.c tincctl.h \
|
||||||
top.c \
|
top.c top.h \
|
||||||
utils.c
|
utils.c utils.h
|
||||||
|
|
||||||
sptps_test_SOURCES = \
|
sptps_test_SOURCES = \
|
||||||
logger.c \
|
logger.c logger.h \
|
||||||
sptps.c \
|
sptps.c sptps.h \
|
||||||
sptps_test.c \
|
sptps_test.c \
|
||||||
utils.c
|
utils.c utils.h
|
||||||
|
|
||||||
## Conditionally compile device drivers
|
## Conditionally compile device drivers
|
||||||
|
|
||||||
|
@ -160,55 +178,6 @@ endif
|
||||||
|
|
||||||
tinc_LDADD = $(READLINE_LIBS) $(CURSES_LIBS)
|
tinc_LDADD = $(READLINE_LIBS) $(CURSES_LIBS)
|
||||||
|
|
||||||
noinst_HEADERS = \
|
|
||||||
buffer.h \
|
|
||||||
cipher.h \
|
|
||||||
conf.h \
|
|
||||||
connection.h \
|
|
||||||
control.h \
|
|
||||||
control_common.h \
|
|
||||||
crypto.h \
|
|
||||||
device.h \
|
|
||||||
digest.h \
|
|
||||||
dropin.h \
|
|
||||||
ecdh.h \
|
|
||||||
ecdsa.h \
|
|
||||||
ecdsagen.h \
|
|
||||||
edge.h \
|
|
||||||
ethernet.h \
|
|
||||||
event.h \
|
|
||||||
fake-gai-errnos.h \
|
|
||||||
fake-getaddrinfo.h \
|
|
||||||
fake-getnameinfo.h \
|
|
||||||
getopt.h \
|
|
||||||
graph.h \
|
|
||||||
hash.h \
|
|
||||||
have.h \
|
|
||||||
info.h \
|
|
||||||
ipv4.h \
|
|
||||||
ipv6.h \
|
|
||||||
list.h \
|
|
||||||
logger.h \
|
|
||||||
meta.h \
|
|
||||||
names.h \
|
|
||||||
net.h \
|
|
||||||
netutl.h \
|
|
||||||
node.h \
|
|
||||||
prf.h \
|
|
||||||
process.h \
|
|
||||||
protocol.h \
|
|
||||||
route.h \
|
|
||||||
rsa.h \
|
|
||||||
rsagen.h
|
|
||||||
splay_tree.h \
|
|
||||||
sptps.h \
|
|
||||||
subnet.h \
|
|
||||||
system.h \
|
|
||||||
tincctl.h \
|
|
||||||
top.h \
|
|
||||||
utils.h \
|
|
||||||
xalloc.h
|
|
||||||
|
|
||||||
LIBS = @LIBS@ @LIBGCRYPT_LIBS@
|
LIBS = @LIBS@ @LIBGCRYPT_LIBS@
|
||||||
|
|
||||||
if TUNEMU
|
if TUNEMU
|
||||||
|
|
Loading…
Reference in a new issue