2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-29 05:18:13 +00:00

ovsdb-idlc: Add rules to make sure .h files get generated before .c files.

The .c files #include the .h files so the .h files need to be generated
first.
This commit is contained in:
Ben Pfaff 2009-12-07 17:00:14 -08:00
parent fa0361b7a0
commit b0fc010acb
2 changed files with 2 additions and 0 deletions

View File

@ -114,6 +114,7 @@ BUILT_SOURCES += tests/idltest.c tests/idltest.h
noinst_DATA += tests/idltest.ovsschema
DISTCLEANFILES += tests/idltest.ovsschema
tests/idltest.c tests/idltest.h tests/idltest.ovsschema: ovsdb/ovsdb-idlc.in
tests/idltest.c: tests/idltest.h
EXTRA_DIST += tests/idltest.c tests/idltest.h tests/idltest.ovsschema
noinst_PROGRAMS += tests/test-reconnect

View File

@ -40,4 +40,5 @@ noinst_DATA += vswitchd/vswitch-idl.ovsschema
DISTCLEANFILES += vswitchd/vswitch-idl.ovsschema
vswitchd/vswitch-idl.c vswitchd/vswitch-idl.h vswitchd/vswitch-idl.ovsschema: \
ovsdb/ovsdb-idlc.in
vswitchd/vswitch-idl.c: vswitchd/vswitch-idl.h
EXTRA_DIST += vswitchd/vswitch-idl.c vswitchd/vswitch-idl.h vswitchd/vswitch-idl.ovsschema