diff options
author | Karel Zak <kzak@redhat.com> | 2009-07-16 01:09:47 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2009-07-16 01:12:42 +0200 |
commit | 723fd219f4dc4ca835722fa5a55569ffb59b71d4 (patch) | |
tree | 3e5e125b1cbb2e7c6b8338dc1a14d92215346ce9 /shlibs/uuid/man | |
parent | 033d14429936ed55d01238ac109e4af36231f4b7 (diff) | |
download | util-linux-old-723fd219f4dc4ca835722fa5a55569ffb59b71d4.tar.gz |
libuuid: generate uuid_generate_{random,time}.3 man page links
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'shlibs/uuid/man')
-rw-r--r-- | shlibs/uuid/man/.gitignore | 2 | ||||
-rw-r--r-- | shlibs/uuid/man/Makefile.am | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/shlibs/uuid/man/.gitignore b/shlibs/uuid/man/.gitignore new file mode 100644 index 00000000..396a0dcd --- /dev/null +++ b/shlibs/uuid/man/.gitignore @@ -0,0 +1,2 @@ +uuid_generate_random.3 +uuid_generate_time.3 diff --git a/shlibs/uuid/man/Makefile.am b/shlibs/uuid/man/Makefile.am index 1f926390..ffaf0241 100644 --- a/shlibs/uuid/man/Makefile.am +++ b/shlibs/uuid/man/Makefile.am @@ -2,3 +2,11 @@ include $(top_srcdir)/config/include-Makefile.am dist_man_MANS = uuid.3 uuid_clear.3 uuid_compare.3 uuid_copy.3 uuid_generate.3 \ uuid_is_null.3 uuid_parse.3 uuid_time.3 uuid_unparse.3 + +UUID_GENERATE_LINKS = uuid_generate_random.3 uuid_generate_time.3 + +man_MANS = $(UUID_GENERATE_LINKS) +CLEANFILES = $(man_MANS) + +$(UUID_GENERATE_LINKS): uuid_generate.3 + echo ".so man3/uuid_generate.3" > $@ |