Hostinfo day 1: Mainly documentation.
[virt-hostinfo.git] / hostinfod / Makefile.am
index 838c667..3f21ebe 100644 (file)
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
+EXTRA_DIST = hostinfo.pod
+
 sbin_PROGRAMS = hostinfod
 
-hostinfod_SOURCES = main.c
-hostinfod_CFLAGS = -Wall $(HOSTINFOD_CFLAGS)
+hostinfod_SOURCES = \
+       configuration.c \
+       hostinfod.h \
+       main.c
+
+hostinfod_CFLAGS = \
+       -Wall \
+       $(HOSTINFOD_CFLAGS) \
+       -DDEFAULT_CONF_FILE=\"$(sysconfdir)/hostinfo/hostinfo.conf\" \
+       -DDEFAULT_SOCKET_DIR=\"$(localstatedir)/lib/hostinfo\"
 hostinfod_LDADD = $(HOSTINFOD_LIBS)
+
+man_MANS = hostinfo.8 hostinfod.8
+
+hostinfo.8: hostinfo.pod
+       $(POD2MAN) \
+         --section 8 \
+         -c "Virtualization Support" \
+         --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
+         $< > $@