X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fautomake.mk;h=218a5b12376a08b7278af843a196c0d3d87c9275;hb=13751fd88c4b7464f9453c03659201c10b3b87a0;hp=6d98de73636068d402681cbbaf30fb31654f46c0;hpb=9d6ac44e2b584b34bc7e14f2daa7bb0bdfab16ab;p=sliver-openvswitch.git diff --git a/ofproto/automake.mk b/ofproto/automake.mk index 6d98de736..218a5b123 100644 --- a/ofproto/automake.mk +++ b/ofproto/automake.mk @@ -1,4 +1,4 @@ -# Copyright (C) 2009, 2010, 2011, 2012 Nicira Networks, Inc. +# Copyright (C) 2009, 2010, 2011, 2012 Nicira, Inc. # # Copying and distribution of this file, with or without modification, # are permitted in any medium without royalty provided the copyright @@ -7,6 +7,8 @@ noinst_LIBRARIES += ofproto/libofproto.a ofproto_libofproto_a_SOURCES = \ + ofproto/bond.c \ + ofproto/bond.h \ ofproto/collectors.c \ ofproto/collectors.h \ ofproto/connmgr.c \ @@ -21,14 +23,41 @@ ofproto_libofproto_a_SOURCES = \ ofproto/ofproto.c \ ofproto/ofproto.h \ ofproto/ofproto-dpif.c \ + ofproto/ofproto-dpif.h \ ofproto/ofproto-dpif-governor.c \ ofproto/ofproto-dpif-governor.h \ + ofproto/ofproto-dpif-ipfix.c \ + ofproto/ofproto-dpif-ipfix.h \ + ofproto/ofproto-dpif-mirror.c \ + ofproto/ofproto-dpif-mirror.h \ + ofproto/ofproto-dpif-monitor.c \ + ofproto/ofproto-dpif-monitor.h \ ofproto/ofproto-dpif-sflow.c \ ofproto/ofproto-dpif-sflow.h \ + ofproto/ofproto-dpif-upcall.c \ + ofproto/ofproto-dpif-upcall.h \ + ofproto/ofproto-dpif-xlate.c \ + ofproto/ofproto-dpif-xlate.h \ ofproto/ofproto-provider.h \ ofproto/pktbuf.c \ ofproto/pktbuf.h \ ofproto/pinsched.c \ - ofproto/pinsched.h + ofproto/pinsched.h \ + ofproto/tunnel.c \ + ofproto/tunnel.h -MAN_FRAGMENTS += ofproto/ofproto-unixctl.man +# Distribute this generated file in order not to require Python at +# build time if ofproto/ipfix.xml is not modified. +ofproto_libofproto_a_SOURCES += ofproto/ipfix-entities.def + +BUILT_SOURCES += ofproto/ipfix-entities.def + +CLEANFILES += ofproto/ipfix-entities.def + +MAN_FRAGMENTS += ofproto/ofproto-unixctl.man ofproto/ofproto-dpif-unixctl.man + +# IPFIX entity definition macros generation from IANA's XML definition. +EXTRA_DIST += ofproto/ipfix.xml +dist_noinst_SCRIPTS = ofproto/ipfix-gen-entities +ofproto/ipfix-entities.def: ofproto/ipfix.xml ofproto/ipfix-gen-entities + $(run_python) $(srcdir)/ofproto/ipfix-gen-entities $< > $@