diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-25 18:02:35 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-25 18:02:35 +0000 |
commit | c95ce54e7b315efc4703ddd33eee6c83fb7d42e2 (patch) | |
tree | 3e30686bb113b776051a0a52a86c378fc34add63 /lib/libXt/util/Makefile.am | |
parent | df71a7a8ed40342b55242ee2ac0d373ef79bcb99 (diff) |
import from X.Org 7.2RC2
Diffstat (limited to 'lib/libXt/util/Makefile.am')
-rw-r--r-- | lib/libXt/util/Makefile.am | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/libXt/util/Makefile.am b/lib/libXt/util/Makefile.am new file mode 100644 index 000000000..2c13f0be9 --- /dev/null +++ b/lib/libXt/util/Makefile.am @@ -0,0 +1,43 @@ +if INSTALL_MAKESTRS +bin_PROGRAMS = makestrs +else +noinst_PROGRAMS = makestrs +endif + +EXTRA_DIST = \ + Shell.ht \ + StrDefs.ct \ + StrDefs.ht \ + string.list + +makestrs_CFLAGS = $(XT_CFLAGS) +makestrs_SOURCES = makestrs.c + + +# Man page +appmandir = $(APP_MAN_DIR) + +appman_PRE = makestrs.man + +if INSTALL_MAKESTRS +appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) +else +noinst_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) +endif + +EXTRA_DIST += $(appman_PRE) +CLEANFILES = $(appman_DATA) + +SED = sed + +# Strings to replace in man pages +XORGRELSTRING = @PACKAGE_STRING@ + XORGMANNAME = X Version 11 + +MAN_SUBSTS = \ + -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' + +SUFFIXES = .$(APP_MAN_SUFFIX) .man + +.man.$(APP_MAN_SUFFIX): + sed $(MAN_SUBSTS) < $< > $@ |