Makefile: add doc target to generate PDFs from the man pages
[fio.git] / Makefile
index 1113c2f6032d74d728ebed7edb3a63fe02411a27..3c9e0ee467fe72256f8d0cd2916d62ec7a603d64 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ SOURCE := gettime.c ioengines.c init.c stat.c log.c time.c filesetup.c \
                cconv.c lib/prio_tree.c json.c lib/zipf.c lib/axmap.c \
                lib/lfsr.c gettime-thread.c helpers.c lib/flist_sort.c \
                lib/hweight.c lib/getrusage.c idletime.c td_error.c \
-               profiles/tiobench.c profiles/act.c io_u_queue.c
+               profiles/tiobench.c profiles/act.c io_u_queue.c filelock.c
 
 ifdef CONFIG_64BIT_LLP64
   CFLAGS += -DBITS_PER_LONG=32
@@ -277,7 +277,7 @@ clean: FORCE
        -rm -f .depend $(FIO_OBJS) $(GFIO_OBJS) $(OBJS) $(T_OBJS) $(PROGS) $(T_PROGS) core.* core gfio FIO-VERSION-FILE *.d config-host.mak config-host.h
 
 distclean: clean FORCE
-       @rm -f cscope.out
+       @rm -f cscope.out fio.pdf fio_generate_plots.pdf fio2gnuplot.pdf
 
 cscope:
        @cscope -b -R
@@ -285,6 +285,11 @@ cscope:
 tools/plot/fio2gnuplot.1:
        @cat tools/plot/fio2gnuplot.manpage | txt2man -t fio2gnuplot >  tools/plot/fio2gnuplot.1
 
+doc: tools/plot/fio2gnuplot.1
+       @man -t ./fio.1 | ps2pdf - fio.pdf
+       @man -t tools/fio_generate_plots.1 | ps2pdf - fio_generate_plots.pdf
+       @man -t tools/plot/fio2gnuplot.1 | ps2pdf - fio2gnuplot.pdf
+
 install: $(PROGS) $(SCRIPTS) tools/plot/fio2gnuplot.1 FORCE
        $(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
        $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)