X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2FMakefile.am;h=cd44eb64adce99dc2a493613ff1670450c237962;hp=ff011f8cfe7cf2559dd2f0e4aff845d83f227b5b;hb=2a3e343c7228d5f07176e4b404d895c7adc5bdf9;hpb=3c0511984f0041f79e64bcc55d58680f86e8e408 diff --git a/src/Makefile.am b/src/Makefile.am index ff011f8c..cd44eb64 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,11 +2,20 @@ sbin_PROGRAMS = tincd -EXTRA_DIST = linux/device.c bsd/device.c solaris/device.c cygwin/device.c mingw/device.c mingw/common.h raw_socket/device.c uml_socket/device.c +EXTRA_DIST = linux/device.c bsd/device.c solaris/device.c cygwin/device.c mingw/device.c mingw/common.h tincd_SOURCES = conf.c connection.c edge.c event.c graph.c logger.c meta.c net.c net_packet.c net_setup.c \ net_socket.c netutl.c node.c process.c protocol.c protocol_auth.c protocol_edge.c protocol_misc.c \ - protocol_key.c protocol_subnet.c route.c subnet.c tincd.c + protocol_key.c protocol_subnet.c route.c subnet.c tincd.c \ + dummy_device.c raw_socket_device.c multicast_device.c + +if UML +tincd_SOURCES += uml_device.c +endif + +if VDE +tincd_SOURCES += vde_device.c +endif if TUNEMU tincd_SOURCES += bsd/tunemu.c