diff options
author | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2014-03-10 14:03:57 +0200 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2014-03-10 13:10:10 -0700 |
commit | d533839735b9dccdfe7819f13eb3c73fe5c81ced (patch) | |
tree | a4a9b6a697e682a39a91dc38d49c2df3f95eeedf /Makefile.am | |
parent | be75659ad1e2236e79a6622785954aeb7c33c86e (diff) |
build: depend on generated protocol headers
Fixes the build failure where the protocol headers were not generated at
all before compiling src/.libs/libwayland_server_la-wayland-server.o.
The failure was reproducable by starting fresh with 'git clean -dxf' and
not having any wayland headers installed system-wide.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 8dabcf0..cb7a186 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,6 +44,7 @@ libwayland_server_la_SOURCES = \ src/event-loop.c nodist_libwayland_server_la_SOURCES = \ + protocol/wayland-server-protocol.h \ protocol/wayland-protocol.c libwayland_client_la_CFLAGS = $(FFI_CFLAGS) $(GCC_CFLAGS) -pthread @@ -53,6 +54,7 @@ libwayland_client_la_SOURCES = \ src/wayland-client.c nodist_libwayland_client_la_SOURCES = \ + protocol/wayland-client-protocol.h \ protocol/wayland-protocol.c pkgconfig_DATA += src/wayland-client.pc src/wayland-server.pc |