Implement 802.1D Spanning Tree Protocol.
[sliver-openvswitch.git] / lib / Makefile.am
index 404d925..229e11b 100644 (file)
@@ -1,8 +1,8 @@
 include ../Make.vars
 
-noinst_LTLIBRARIES = libopenflow.la
+noinst_LIBRARIES = libopenflow.a
 
-libopenflow_la_SOURCES = \
+libopenflow_a_SOURCES = \
        buffer.c \
        command-line.c \
        csum.c \
@@ -24,23 +24,27 @@ libopenflow_la_SOURCES = \
        random.c \
        rconn.c \
        socket-util.c \
+       timeval.c \
+       stp.c \
        util.c \
        vconn-tcp.c \
+       vconn-unix.c \
+       vconn-stream.c \
        vconn.c \
        vlog-socket.c \
        vlog.c
 
 if HAVE_NETLINK
-libopenflow_la_SOURCES += \
+libopenflow_a_SOURCES += \
        dpif.c \
        netlink.c \
        vconn-netlink.c
 endif
 
 if HAVE_OPENSSL
-libopenflow_la_SOURCES += \
+libopenflow_a_SOURCES += \
        vconn-ssl.c 
-nodist_libopenflow_la_SOURCES = dhparams.c
+nodist_libopenflow_a_SOURCES = dhparams.c
 dhparams.c: dh1024.pem dh2048.pem dh4096.pem
        (echo '#include "dhparams.h"' &&                        \
         openssl dhparam -C -in $(srcdir)/dh1024.pem -noout &&  \