blob: 40fccb7399f2f145c2c891970ec4885a2dd17133 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
appmandir = $(APP_MAN_DIR)
appman_PRE = xkill.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.$(APP_MAN_SUFFIX):
$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
|