mirror of
https://gitlab.freedesktop.org/xorg/lib/libxcb.git
synced 2025-12-20 05:40:11 +01:00
The section number is no longer hard-coded, supplied by xorg-macros. The left footer is now "X Version 11". The center footer is the package name with the version, "libxcb 1.9" The man directory is a sibbling to the doc directory. One can build or clean the man pages without disturbing the library code. Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
18 lines
375 B
Makefile
18 lines
375 B
Makefile
|
|
libmandir = $(LIB_MAN_DIR)
|
|
|
|
libman_PRE = \
|
|
xcb-examples.man \
|
|
xcb-requests.man
|
|
|
|
libman_DATA = $(libman_PRE:man=$(LIB_MAN_SUFFIX))
|
|
|
|
EXTRA_DIST = $(libman_PRE)
|
|
|
|
CLEANFILES = $(libman_DATA)
|
|
|
|
# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
|
|
SUFFIXES = .$(LIB_MAN_SUFFIX) .man
|
|
|
|
.man.$(LIB_MAN_SUFFIX):
|
|
$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
|