X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fautomake.mk;h=a23a5696f2c9257fb3d05cee8c67ed707a83fe65;hb=83c19ab15aa7b2d63632ac9694541759bc8d2351;hp=91d8fff24c0af2030d1999e619c0ade0f9686b5f;hpb=d76f09ea77e03ee5a3a7bb67bcab1ac4bb54172b;p=openvswitch diff --git a/lib/automake.mk b/lib/automake.mk index 91d8fff2..a23a5696 100644 --- a/lib/automake.mk +++ b/lib/automake.mk @@ -72,6 +72,8 @@ lib_libopenvswitch_a_SOURCES = \ lib/netdev-provider.h \ lib/netdev.c \ lib/netdev.h \ + lib/netlink.c \ + lib/netlink.h \ lib/nx-match.c \ lib/nx-match.def \ lib/nx-match.h \ @@ -102,12 +104,8 @@ lib_libopenvswitch_a_SOURCES = \ lib/pcap.h \ lib/poll-loop.c \ lib/poll-loop.h \ - lib/port-array.c \ - lib/port-array.h \ lib/process.c \ lib/process.h \ - lib/queue.c \ - lib/queue.h \ lib/random.c \ lib/random.h \ lib/rconn.c \ @@ -133,6 +131,8 @@ lib_libopenvswitch_a_SOURCES = \ lib/stream-unix.c \ lib/stream.c \ lib/stream.h \ + lib/stress.c \ + lib/stress.h \ lib/string.h \ lib/svec.c \ lib/svec.h \ @@ -184,8 +184,8 @@ lib_libopenvswitch_a_SOURCES += \ lib/netdev-vport.c \ lib/netdev-vport.h \ lib/netlink-protocol.h \ - lib/netlink.c \ - lib/netlink.h \ + lib/netlink-socket.c \ + lib/netlink-socket.h \ lib/rtnetlink.c \ lib/rtnetlink.h endif @@ -220,6 +220,7 @@ EXTRA_DIST += \ lib/ssl-peer-ca-cert.man \ lib/ssl.man \ lib/ssl-syn.man \ + lib/stress-unixctl.man \ lib/unixctl.man \ lib/unixctl-syn.man \ lib/vconn-active.man \ @@ -261,6 +262,11 @@ lib/coverage.def: $(DIST_SOURCES) sed -n 's|^COVERAGE_DEFINE(\([_a-zA-Z0-9]\{1,\}\)).*$$|COVERAGE_COUNTER(\1)|p' $(all_sources) | LC_ALL=C sort -u > $@ CLEANFILES += lib/coverage.def +lib/stress.$(OBJEXT): lib/stress.def +lib/stress.def: $(DIST_SOURCES) + sed -n '/^STRESS_OPTION(/,/);$$/{s/);$$/)/;p}' $(all_sources) > $@ +CLEANFILES += lib/stress.def + lib/vlog.$(OBJEXT): lib/vlog-modules.def lib/vlog-modules.def: $(DIST_SOURCES) sed -n 's|^VLOG_DEFINE_\(THIS_\)\{0,1\}MODULE(\([_a-zA-Z0-9]\{1,\}\)).*$$|VLOG_MODULE(\2)|p' $(all_sources) | LC_ALL=C sort -u > $@