File missing from tarball: rc_protocol.x
[libguestfs.git] / fish / Makefile.am
index 76a2894..dd79361 100644 (file)
 
 bin_PROGRAMS = guestfish
 
+EXTRA_DIST = \
+       rc_protocol.x
+
 guestfish_SOURCES = \
+       alloc.c \
        cmds.c \
+       completion.c \
+       destpaths.c \
+       echo.c \
+       edit.c \
        fish.c \
-       fish.h
+       fish.h \
+       glob.c \
+       lcd.c \
+       more.c \
+       rc.c \
+       rc_protocol.c \
+       rc_protocol.h \
+       reopen.c \
+       time.c
+
+BUILT_SOURCES = \
+       rc_protocol.c \
+       rc_protocol.h
+
 guestfish_CFLAGS = \
-       -I$(top_builddir)/src -Wall \
+       -I$(top_srcdir)/src -I$(top_builddir)/src -Wall \
        -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"'
-guestfish_LDADD = $(top_builddir)/src/libguestfs.la
+guestfish_LDADD = $(top_builddir)/src/libguestfs.la $(LIBREADLINE)
+
+if HAVE_RPCGEN
+rc_protocol.c: rc_protocol.x
+       rm -f $@-t
+       $(RPCGEN) -c -o $@-t $<
+       mv $@-t $@
+
+rc_protocol.h: rc_protocol.x
+       rm -f $@-t
+       $(RPCGEN) -h -o $@-t $<
+       mv $@-t $@
+endif