diff options
author | Justin Pettit <jpettit@nicira.com> | 2015-03-05 00:00:03 -0800 |
---|---|---|
committer | Justin Pettit <jpettit@nicira.com> | 2015-03-05 14:11:53 -0800 |
commit | 9d82156981bfcbf539ff80938c7d3b90bc3a8ab2 (patch) | |
tree | 71a3389c608fe589500653d23659cdc39689cc1b /lib/automake.mk | |
parent | 8f07d902f124d0cf0cebcf3c2aea09183d2699e0 (diff) | |
download | openvswitch-9d82156981bfcbf539ff80938c7d3b90bc3a8ab2.tar.gz |
vtep: Move vtep IDL files into new "libvtep.la".
There's no reason to build it in "lib" and include it in
"libopenvswitch.la". This commit moves it to "vtep" and includes it in
a new "libvtep.la".
Signed-off-by: Justin Pettit <jpettit@nicira.com>
Diffstat (limited to 'lib/automake.mk')
-rw-r--r-- | lib/automake.mk | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/lib/automake.mk b/lib/automake.mk index 2acfe18a5..362907919 100644 --- a/lib/automake.mk +++ b/lib/automake.mk @@ -268,8 +268,6 @@ lib_libopenvswitch_la_SOURCES = \ lib/vlog.c \ lib/vswitch-idl.c \ lib/vswitch-idl.h \ - lib/vtep-idl.c \ - lib/vtep-idl.h \ lib/lldp/aa-structs.h \ lib/lldp/lldp.c \ lib/lldp/lldp-const.h \ @@ -436,10 +434,7 @@ MAN_FRAGMENTS += \ OVSIDL_BUILT += \ $(srcdir)/lib/vswitch-idl.c \ $(srcdir)/lib/vswitch-idl.h \ - $(srcdir)/lib/vswitch-idl.ovsidl \ - $(srcdir)/lib/vtep-idl.c \ - $(srcdir)/lib/vtep-idl.h \ - $(srcdir)/lib/vtep-idl.ovsidl + $(srcdir)/lib/vswitch-idl.ovsidl EXTRA_DIST += $(srcdir)/lib/vswitch-idl.ann VSWITCH_IDL_FILES = \ @@ -449,14 +444,6 @@ $(srcdir)/lib/vswitch-idl.ovsidl: $(VSWITCH_IDL_FILES) $(AM_V_GEN)$(OVSDB_IDLC) annotate $(VSWITCH_IDL_FILES) > $@.tmp && \ mv $@.tmp $@ -EXTRA_DIST += $(srcdir)/lib/vtep-idl.ann -VTEP_IDL_FILES = \ - $(srcdir)/vtep/vtep.ovsschema \ - $(srcdir)/lib/vtep-idl.ann -$(srcdir)/lib/vtep-idl.ovsidl: $(VTEP_IDL_FILES) - $(AM_V_GEN)$(OVSDB_IDLC) annotate $(VTEP_IDL_FILES) > $@.tmp && \ - mv $@.tmp $@ - lib/dirs.c: lib/dirs.c.in Makefile $(AM_V_GEN)($(ro_c) && sed < $(srcdir)/lib/dirs.c.in \ -e 's,[@]srcdir[@],$(srcdir),g' \ |