X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2FMakefile.am;h=3fe8c8827b0466926ebac04c492e5684d8be4d35;hp=3fa2b319506a54109e75948c66e2c8f2914c7beb;hb=463a739bf0475cf45bf03ad2c4130b2ed656686e;hpb=c3a68961859a617f7c574c528d0f8ac1fdbb53e1 diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 3fa2b31..3fe8c88 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -1,5 +1,5 @@ # libguestfs-daemon -# Copyright (C) 2009 Red Hat Inc. +# Copyright (C) 2010 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -20,6 +20,7 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = lib tests . libsrcdir = $(top_builddir)/../src +generatorsrcdir = $(top_builddir)/../generator generator_built = \ actions.h \ @@ -28,25 +29,28 @@ generator_built = \ .PHONY: force -$(generator_built): $(libsrcdir)/stamp-generator -$(libsrcdir)/stamp-generator: force - $(MAKE) -C $(libsrcdir) stamp-generator +$(generator_built): $(generatorsrcdir)/stamp-generator +$(generatorsrcdir)/stamp-generator: force + $(MAKE) -C $(generatorsrcdir) stamp-generator BUILT_SOURCES = \ $(generator_built) \ guestfs_protocol.c \ - guestfs_protocol.h + guestfs_protocol.h \ + errnostring_gperf.c \ + errnostring_gperf.gperf \ + errnostring.c \ + errnostring.h EXTRA_DIST = $(BUILT_SOURCES) \ .gitignore -# This convenience library is solely to avoid compiler warnings -# in its generated sources. noinst_LIBRARIES = libprotocol.a -libprotocol_a_SOURCES = \ - guestfs_protocol.c \ - guestfs_protocol.h -libprotocol_a_CFLAGS = + +# This convenience library is solely to compile its generated sources with +# custom flags. +libprotocol_a_SOURCES = guestfs_protocol.c guestfs_protocol.h +libprotocol_a_CFLAGS = -Wall -Wno-unused -fno-strict-aliasing guestfs_protocol.c: $(libsrcdir)/guestfs_protocol.c rm -f $@ @@ -59,14 +63,44 @@ $(libsrcdir)/guestfs_protocol.c: force $(libsrcdir)/guestfs_protocol.h: force $(MAKE) -C $(libsrcdir) guestfs_protocol.h +# Build the errnostring perfect hash code. The generated code has lots +# of warnings so we must compile it in a separate mini-library. +noinst_LIBRARIES += liberrnostring.a +liberrnostring_a_SOURCES = \ + errnostring_gperf.c \ + errnostring.h \ + errnostring.c +liberrnostring_a_CFLAGS = + +errnostring_gperf.c: errnostring_gperf.gperf + rm -f $@ + $(GPERF) -t $< > $@-t + mv $@-t $@ +errnostring_gperf.gperf: $(libsrcdir)/errnostring_gperf.gperf + rm -f $@ + ln $< $@ +errnostring.c: $(libsrcdir)/errnostring.c + rm -f $@ + ln $< $@ +errnostring.h: $(libsrcdir)/errnostring.h + rm -f $@ + ln $< $@ + +if INSTALL_DAEMON +sbin_PROGRAMS = guestfsd +else noinst_PROGRAMS = guestfsd +endif + guestfsd_SOURCES = \ + 9p.c \ actions.h \ available.c \ augeas.c \ base64.c \ blkid.c \ blockdev.c \ + btrfs.c \ checksum.c \ cmp.c \ command.c \ @@ -84,6 +118,7 @@ guestfsd_SOURCES = \ ext2.c \ fallocate.c \ file.c \ + findfs.c \ fill.c \ find.c \ fsck.c \ @@ -96,9 +131,12 @@ guestfsd_SOURCES = \ htonl.c \ initrd.c \ inotify.c \ + is.c \ link.c \ ls.c \ + luks.c \ lvm.c \ + lvm-filter.c \ mkfs.c \ mknod.c \ modprobe.c \ @@ -132,6 +170,7 @@ guestfsd_SOURCES = \ zero.c \ zerofree.c guestfsd_LDADD = \ + liberrnostring.a \ libprotocol.a \ lib/libgnu.a \ $(GETADDRINFO_LIB) \