X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fautomake.mk;h=6d84a92121533f74f07166303a1c55017171d7d1;hb=83e3e75ba62705142ef0d5892a1fd2915c5e28c5;hp=65556611f48c6739961a14a87fd2bbe0d3386626;hpb=611d30ceb68c8542d11acee8248f66f9485505e9;p=openvswitch diff --git a/lib/automake.mk b/lib/automake.mk index 65556611..6d84a921 100644 --- a/lib/automake.mk +++ b/lib/automake.mk @@ -26,7 +26,6 @@ lib_libopenvswitch_a_SOURCES = \ lib/compiler.h \ lib/coverage.c \ lib/coverage.h \ - lib/coverage-counters.h \ lib/csum.c \ lib/csum.h \ lib/daemon.c \ @@ -134,6 +133,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 \ @@ -159,7 +160,6 @@ lib_libopenvswitch_a_SOURCES = \ lib/vlog.c \ lib/vlog.h nodist_lib_libopenvswitch_a_SOURCES = \ - lib/coverage-counters.c \ lib/dirs.c CLEANFILES += $(nodist_lib_libopenvswitch_a_SOURCES) @@ -222,6 +222,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 \ @@ -246,6 +247,7 @@ lib-install-data-local: $(MKDIR_P) $(DESTDIR)$(PKIDIR) $(MKDIR_P) $(DESTDIR)$(LOGDIR) +if !USE_LINKER_SECTIONS # All distributed sources, with names adjust properly for referencing # from $(builddir). all_sources = \ @@ -257,37 +259,16 @@ all_sources = \ fi; \ done` -# All the source files that have coverage counters. -COVERAGE_FILES = \ - lib/dpif.c \ - lib/flow.c \ - lib/lockfile.c \ - lib/hmap.c \ - lib/mac-learning.c \ - lib/netdev.c \ - lib/netdev-linux.c \ - lib/netlink.c \ - lib/odp-util.c \ - lib/poll-loop.c \ - lib/process.c \ - lib/rconn.c \ - lib/rtnetlink.c \ - lib/stream.c \ - lib/stream-ssl.c \ - lib/timeval.c \ - lib/unixctl.c \ - lib/util.c \ - lib/vconn.c \ - ofproto/ofproto.c \ - ofproto/pktbuf.c \ - vswitchd/bridge.c \ - vswitchd/ovs-brcompatd.c -lib/coverage-counters.c: $(COVERAGE_FILES) lib/coverage-scan.pl - (cd $(srcdir) && $(PERL) lib/coverage-scan.pl $(COVERAGE_FILES)) > $@.tmp - mv $@.tmp $@ -EXTRA_DIST += lib/coverage-scan.pl +lib/coverage.$(OBJEXT): lib/coverage.def +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 -if !USE_LINKER_SECTIONS 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 > $@