X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fautomake.mk;h=2f5b5fdfd4fc24ab1f31ef7c17b31a1b2113a866;hb=0027492deeae5ed1c51458ae1970064be2089df9;hp=a23a5696f2c9257fb3d05cee8c67ed707a83fe65;hpb=2fe27d5ad27f3c7879ea696209bcf9702d9b7109;p=sliver-openvswitch.git diff --git a/lib/automake.mk b/lib/automake.mk index a23a5696f..2f5b5fdfd 100644 --- a/lib/automake.mk +++ b/lib/automake.mk @@ -1,4 +1,4 @@ -# Copyright (C) 2009, 2010 Nicira Networks, Inc. +# Copyright (C) 2009, 2010, 2011 Nicira Networks, Inc. # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -10,10 +10,16 @@ noinst_LIBRARIES += lib/libopenvswitch.a lib_libopenvswitch_a_SOURCES = \ lib/aes128.c \ lib/aes128.h \ + lib/autopath.c \ + lib/autopath.h \ lib/backtrace.c \ lib/backtrace.h \ lib/bitmap.c \ lib/bitmap.h \ + lib/bond.c \ + lib/bond.h \ + lib/bundle.c \ + lib/bundle.h \ lib/byte-order.h \ lib/byteq.c \ lib/byteq.h \ @@ -30,12 +36,9 @@ lib_libopenvswitch_a_SOURCES = \ lib/csum.h \ lib/daemon.c \ lib/daemon.h \ + lib/dhcp.h \ lib/dummy.c \ lib/dummy.h \ - lib/dhcp-client.c \ - lib/dhcp-client.h \ - lib/dhcp.c \ - lib/dhcp.h \ lib/dhparams.h \ lib/dirs.h \ lib/dpif-netdev.c \ @@ -54,10 +57,14 @@ lib_libopenvswitch_a_SOURCES = \ lib/hash.h \ lib/hmap.c \ lib/hmap.h \ + lib/hmapx.c \ + lib/hmapx.h \ lib/json.c \ lib/json.h \ lib/jsonrpc.c \ lib/jsonrpc.h \ + lib/lacp.c \ + lib/lacp.h \ lib/leak-checker.c \ lib/leak-checker.h \ lib/learning-switch.c \ @@ -68,6 +75,8 @@ lib_libopenvswitch_a_SOURCES = \ lib/lockfile.h \ lib/mac-learning.c \ lib/mac-learning.h \ + lib/multipath.c \ + lib/multipath.h \ lib/netdev-dummy.c \ lib/netdev-provider.h \ lib/netdev.c \ @@ -79,6 +88,8 @@ lib_libopenvswitch_a_SOURCES = \ lib/nx-match.h \ lib/odp-util.c \ lib/odp-util.h \ + lib/ofp-errors.c \ + lib/ofp-errors.h \ lib/ofp-parse.c \ lib/ofp-parse.h \ lib/ofp-print.c \ @@ -123,6 +134,8 @@ lib_libopenvswitch_a_SOURCES = \ lib/socket-util.h \ lib/sort.c \ lib/sort.h \ + lib/sset.c \ + lib/sset.h \ lib/stream-fd.c \ lib/stream-fd.h \ lib/stream-provider.h \ @@ -133,11 +146,16 @@ lib_libopenvswitch_a_SOURCES = \ lib/stream.h \ lib/stress.c \ lib/stress.h \ + lib/string.c \ lib/string.h \ lib/svec.c \ lib/svec.h \ + lib/table.c \ + lib/table.h \ lib/tag.c \ lib/tag.h \ + lib/timer.c \ + lib/timer.h \ lib/timeval.c \ lib/timeval.h \ lib/type-props.h \ @@ -155,6 +173,8 @@ lib_libopenvswitch_a_SOURCES = \ lib/vconn-stream.c \ lib/vconn.c \ lib/vconn.h \ + lib/vlan-bitmap.c \ + lib/vlan-bitmap.h \ lib/vlog.c \ lib/vlog.h nodist_lib_libopenvswitch_a_SOURCES = \ @@ -180,14 +200,20 @@ endif if HAVE_NETLINK lib_libopenvswitch_a_SOURCES += \ lib/dpif-linux.c \ + lib/dpif-linux.h \ lib/netdev-linux.c \ + lib/netdev-linux.h \ lib/netdev-vport.c \ lib/netdev-vport.h \ lib/netlink-protocol.h \ lib/netlink-socket.c \ lib/netlink-socket.h \ lib/rtnetlink.c \ - lib/rtnetlink.h + lib/rtnetlink.h \ + lib/rtnetlink-link.c \ + lib/rtnetlink-link.h \ + lib/route-table.c \ + lib/route-table.h endif if HAVE_OPENSSL @@ -200,6 +226,8 @@ lib/dhparams.c: lib/dh1024.pem lib/dh2048.pem lib/dh4096.pem openssl dhparam -C -in $(srcdir)/lib/dh4096.pem -noout) \ | sed 's/\(get_dh[0-9]*\)()/\1(void)/' > lib/dhparams.c.tmp mv lib/dhparams.c.tmp lib/dhparams.c +else +lib_libopenvswitch_a_SOURCES += lib/stream-nossl.c endif EXTRA_DIST += \ @@ -208,12 +236,11 @@ EXTRA_DIST += \ lib/dh4096.pem \ lib/dirs.c.in -EXTRA_DIST += \ +MAN_FRAGMENTS += \ lib/common.man \ lib/common-syn.man \ lib/daemon.man \ lib/daemon-syn.man \ - lib/dpif.man \ lib/leak-checker.man \ lib/ssl-bootstrap.man \ lib/ssl-bootstrap-syn.man \ @@ -221,6 +248,7 @@ EXTRA_DIST += \ lib/ssl.man \ lib/ssl-syn.man \ lib/stress-unixctl.man \ + lib/table.man \ lib/unixctl.man \ lib/unixctl-syn.man \ lib/vconn-active.man \ @@ -235,11 +263,20 @@ lib/dirs.c: lib/dirs.c.in Makefile -e 's,[@]LOGDIR[@],"$(LOGDIR)",g' \ -e 's,[@]RUNDIR[@],"$(RUNDIR)",g' \ -e 's,[@]bindir[@],"$(bindir)",g' \ + -e 's,[@]sysconfdir[@],"$(sysconfdir)",g' \ -e 's,[@]pkgdatadir[@],"$(pkgdatadir)",g') \ > lib/dirs.c.tmp mv lib/dirs.c.tmp lib/dirs.c -install-data-local: lib-install-data-local +$(srcdir)/lib/ofp-errors.c: \ + include/openflow/openflow.h include/openflow/nicira-ext.h \ + build-aux/extract-ofp-errors + cd $(srcdir)/include && \ + $(PYTHON) ../build-aux/extract-ofp-errors \ + openflow/openflow.h openflow/nicira-ext.h > ../lib/ofp-errors.c +EXTRA_DIST += build-aux/extract-ofp-errors + +INSTALL_DATA_LOCAL += lib-install-data-local lib-install-data-local: $(MKDIR_P) $(DESTDIR)$(RUNDIR) $(MKDIR_P) $(DESTDIR)$(PKIDIR)