X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2FMakefile.am;h=ee1959f5830b9a84a48a48d1d0a6654e3bd0b22a;hp=e6af0feba29644e60dccddf8d6b77d0ea0d283da;hb=4d900cdac8258daa2e99c6ceb2a4985154e94150;hpb=a61bccecfba1c9501910d28de24bac945e95001f diff --git a/daemon/Makefile.am b/daemon/Makefile.am index e6af0fe..ee1959f 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 @@ -19,16 +19,88 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = lib tests . +libsrcdir = $(top_builddir)/../src +generatorsrcdir = $(top_builddir)/../generator + +generator_built = \ + actions.h \ + stubs.c \ + names.c + +.PHONY: force + +$(generator_built): $(generatorsrcdir)/stamp-generator +$(generatorsrcdir)/stamp-generator: force + $(MAKE) -C $(generatorsrcdir) stamp-generator + +BUILT_SOURCES = \ + $(generator_built) \ + guestfs_protocol.c \ + 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 = + +guestfs_protocol.c: $(libsrcdir)/guestfs_protocol.c + rm -f $@ + ln $< $@ +guestfs_protocol.h: $(libsrcdir)/guestfs_protocol.h + rm -f $@ + ln $< $@ +$(libsrcdir)/guestfs_protocol.c: force + $(MAKE) -C $(libsrcdir) guestfs_protocol.c +$(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 $< $@ + noinst_PROGRAMS = guestfsd guestfsd_SOURCES = \ actions.h \ + available.c \ augeas.c \ + base64.c \ + blkid.c \ blockdev.c \ checksum.c \ cmp.c \ command.c \ cpmv.c \ daemon.h \ + dd.c \ debug.c \ devsparts.c \ df.c \ @@ -36,9 +108,12 @@ guestfsd_SOURCES = \ dmesg.c \ dropcaches.c \ du.c \ + echo_daemon.c \ ext2.c \ fallocate.c \ file.c \ + findfs.c \ + fill.c \ find.c \ fsck.c \ glob.c \ @@ -47,16 +122,24 @@ guestfsd_SOURCES = \ guestfsd.c \ headtail.c \ hexdump.c \ + 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 \ mount.c \ names.c \ ntfs.c \ + optgroups.c \ + optgroups.h \ + parted.c \ pingdaemon.c \ proto.c \ readdir.c \ @@ -66,20 +149,31 @@ guestfsd_SOURCES = \ sfdisk.c \ sleep.c \ stat.c \ + statvfs.c \ strings.c \ stubs.c \ swap.c \ sync.c \ tar.c \ + truncate.c \ umask.c \ upload.c \ + utimens.c \ wc.c \ xattr.c \ zero.c \ - zerofree.c \ - $(top_builddir)/../src/guestfs_protocol.h \ - $(top_builddir)/../src/guestfs_protocol.c + zerofree.c +guestfsd_LDADD = \ + liberrnostring.a \ + libprotocol.a \ + lib/libgnu.a \ + $(GETADDRINFO_LIB) \ + $(HOSTENT_LIB) \ + $(INET_NTOP_LIB) \ + $(LIBSOCKET) \ + $(LIB_CLOCK_GETTIME) \ + $(LIBINTL) \ + $(SERVENT_LIB) AM_CPPFLAGS = -I$(srcdir)/lib -Ilib -guestfsd_CFLAGS = -Wall -LDADD = lib/libgnu.a +guestfsd_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)