summaryrefslogtreecommitdiff
path: root/vswitchd/automake.mk
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2009-11-23 16:07:36 -0800
committerBen Pfaff <blp@nicira.com>2009-11-23 16:07:36 -0800
commitd879a707a38eff0335e1b5c12ae4c61f4aa0296b (patch)
tree10d37b87a53ba1376e467a60bbe57cc355d7b7c9 /vswitchd/automake.mk
parent6bf4c631ae776f4e936b5f01efe4bfbe190f5d99 (diff)
downloadopenvswitch-d879a707a38eff0335e1b5c12ae4c61f4aa0296b.tar.gz
ovsdb: Add ovsdb IDL compiler to build system.
This first stab at any interface definition language and compiler for OVSDB will give other developers a chance to look at it and try to integrate it. The IDL is not actually implemented yet; I am working on that.
Diffstat (limited to 'vswitchd/automake.mk')
-rw-r--r--vswitchd/automake.mk9
1 files changed, 9 insertions, 0 deletions
diff --git a/vswitchd/automake.mk b/vswitchd/automake.mk
index 8e27fc2fe..6860488f6 100644
--- a/vswitchd/automake.mk
+++ b/vswitchd/automake.mk
@@ -17,6 +17,7 @@ vswitchd_ovs_vswitchd_SOURCES = \
vswitchd/proc-net-compat.h \
vswitchd/ovs-vswitchd.c \
vswitchd/ovs-vswitchd.h \
+ vswitchd/vswitch-idl.h \
vswitchd/xenserver.c \
vswitchd/xenserver.h
vswitchd_ovs_vswitchd_LDADD = \
@@ -36,3 +37,11 @@ EXTRA_DIST += \
vswitchd/ovs-vswitchd.conf.5.in \
vswitchd/ovs-vswitchd.8.in \
vswitchd/ovs-brcompatd.8.in
+
+EXTRA_DIST += vswitchd/vswitch.ovsidl
+BUILT_SOURCES += vswitchd/vswitch-idl.h
+DISTCLEANFILES += \
+ vswitchd/vswitch.ovsidl \
+ vswitchd/vswitch-idl.h
+vswitchd/vswitch-idl.h: vswitchd/vswitch.ovsidl ovsdb/ovsdb-idlc
+ ovsdb/ovsdb-idlc c-idl-header $(srcdir)/vswitchd/vswitch.ovsidl > $@