X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2FMakefile.am;h=3fa2b319506a54109e75948c66e2c8f2914c7beb;hp=9fa8ddab4f9d555a7d7d3226603e123665d7d18d;hb=fc6dd9daa13ac774156d0822b5aa7830171feb85;hpb=2d9953097b6d3b71122d444a4550047e97aee009 diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 9fa8dda..3fa2b31 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -28,21 +28,43 @@ generator_built = \ .PHONY: force -$(generator_built): force +$(generator_built): $(libsrcdir)/stamp-generator +$(libsrcdir)/stamp-generator: force $(MAKE) -C $(libsrcdir) stamp-generator -BUILT_SOURCES = $(generator_built) +BUILT_SOURCES = \ + $(generator_built) \ + guestfs_protocol.c \ + guestfs_protocol.h -EXTRA_DIST = $(BUILT_SOURCES) +EXTRA_DIST = $(BUILT_SOURCES) \ + .gitignore -$(libsrcdir)/guestfs_protocol.o: force - $(MAKE) -C $(libsrcdir) guestfs_protocol.o +# 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 noinst_PROGRAMS = guestfsd guestfsd_SOURCES = \ actions.h \ available.c \ augeas.c \ + base64.c \ blkid.c \ blockdev.c \ checksum.c \ @@ -50,6 +72,7 @@ guestfsd_SOURCES = \ command.c \ cpmv.c \ daemon.h \ + dd.c \ debug.c \ devsparts.c \ df.c \ @@ -70,6 +93,7 @@ guestfsd_SOURCES = \ guestfsd.c \ headtail.c \ hexdump.c \ + htonl.c \ initrd.c \ inotify.c \ link.c \ @@ -93,6 +117,7 @@ guestfsd_SOURCES = \ sfdisk.c \ sleep.c \ stat.c \ + statvfs.c \ strings.c \ stubs.c \ swap.c \ @@ -106,7 +131,16 @@ guestfsd_SOURCES = \ xattr.c \ zero.c \ zerofree.c -guestfsd_LDADD = $(libsrcdir)/guestfs_protocol.o lib/libgnu.a +guestfsd_LDADD = \ + 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 = $(WARN_CFLAGS) $(WERROR_CFLAGS)