blob: 990707075b0029ddb96b9deaf4bfc98856a273cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
appmandir = $(APP_MAN_DIR)
appman_PRE = xbiff.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) < $< > $@
|