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