2 # Copyright (C) 2010 Red Hat Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 ACLOCAL_AMFLAGS = -I m4
22 libsrcdir = $(top_builddir)/../src
23 generatorsrcdir = $(top_builddir)/../generator
32 $(generator_built): $(generatorsrcdir)/stamp-generator
33 $(generatorsrcdir)/stamp-generator: force
34 $(MAKE) -C $(generatorsrcdir) stamp-generator
41 errnostring_gperf.gperf \
45 EXTRA_DIST = $(BUILT_SOURCES) \
48 noinst_LIBRARIES = libprotocol.a
50 # This convenience library is solely to compile its generated sources with
52 libprotocol_a_SOURCES = guestfs_protocol.c guestfs_protocol.h
53 libprotocol_a_CFLAGS = -Wall -Wno-unused -fno-strict-aliasing
55 guestfs_protocol.c: $(libsrcdir)/guestfs_protocol.c
58 guestfs_protocol.h: $(libsrcdir)/guestfs_protocol.h
61 $(libsrcdir)/guestfs_protocol.c: force
62 $(MAKE) -C $(libsrcdir) guestfs_protocol.c
63 $(libsrcdir)/guestfs_protocol.h: force
64 $(MAKE) -C $(libsrcdir) guestfs_protocol.h
66 # Build the errnostring perfect hash code. The generated code has lots
67 # of warnings so we must compile it in a separate mini-library.
68 noinst_LIBRARIES += liberrnostring.a
69 liberrnostring_a_SOURCES = \
73 liberrnostring_a_CFLAGS =
75 errnostring_gperf.c: errnostring_gperf.gperf
79 errnostring_gperf.gperf: $(libsrcdir)/errnostring_gperf.gperf
82 errnostring.c: $(libsrcdir)/errnostring.c
85 errnostring.h: $(libsrcdir)/errnostring.h
89 noinst_PROGRAMS = guestfsd
173 $(LIB_CLOCK_GETTIME) \
177 AM_CPPFLAGS = -I$(srcdir)/lib -Ilib
178 guestfsd_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)