X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2FMakefile.am;h=ee1959f5830b9a84a48a48d1d0a6654e3bd0b22a;hp=0e2ac6efd9538a0decc5b4d79d68164279b0f3b6;hb=cb7ec8be4ce6068b6cbc6522a67826cdbd161024;hpb=04d8209077d2227eb1d42695ba71147f78987050 diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 0e2ac6e..ee1959f 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -36,7 +36,11 @@ $(generatorsrcdir)/stamp-generator: force 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 @@ -60,6 +64,29 @@ $(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 $< $@ + noinst_PROGRAMS = guestfsd guestfsd_SOURCES = \ actions.h \ @@ -137,6 +164,7 @@ guestfsd_SOURCES = \ zero.c \ zerofree.c guestfsd_LDADD = \ + liberrnostring.a \ libprotocol.a \ lib/libgnu.a \ $(GETADDRINFO_LIB) \