blob: 2d33de6d568b7ee0f682812c6d8e7a8a34073cf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
appmandir = $(APP_MAN_DIR)
appman_PRE = setxkbmap.man
appman_DATA = $(appman_PRE:man=$(APP_MAN_SUFFIX))
EXTRA_DIST = $(appman_PRE)
CLEANFILES = $(appman_DATA)
SUFFIXES = .$(APP_MAN_SUFFIX) .man
# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
MAN_SUBSTS += -e 's|__xkbconfigroot__|"$(XKBCONFIGROOT)"|'
.man.$(APP_MAN_SUFFIX):
$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
|