Makefile.am revision db17cd6d
1# Copyright 2005 Red Hat, Inc. 2# 3# Permission to use, copy, modify, distribute, and sell this software and its 4# documentation for any purpose is hereby granted without fee, provided that 5# the above copyright notice appear in all copies and that both that 6# copyright notice and this permission notice appear in supporting 7# documentation, and that the name of Red Hat not be used in 8# advertising or publicity pertaining to distribution of the software without 9# specific, written prior permission. Red Hat makes no 10# representations about the suitability of this software for any purpose. It 11# is provided "as is" without express or implied warranty. 12# 13# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 14# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 15# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 16# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 17# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 18# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 19# PERFORMANCE OF THIS SOFTWARE. 20 21bin_PROGRAMS = xkbevd 22 23AM_CFLAGS = $(CWARNFLAGS) $(XKBEVD_CFLAGS) \ 24 -DDFLT_XKB_CONFIG_ROOT='"$(datadir)/X11/xkb"' 25xkbevd_LDADD = $(XKBEVD_LIBS) 26 27xkbevd_SOURCES = \ 28 cfgparse.y \ 29 cfgscan.c \ 30 evargs.c \ 31 printev.c \ 32 tokens.h \ 33 utils.c \ 34 utils.h \ 35 xkbevd.c \ 36 xkbevd.h 37 38appman_PRE = \ 39 xkbevd.man 40 41BUILT_SOURCES = cfgparse.c 42MAINTAINERCLEANFILES = $(BUILT_SOURCES) 43 44# Sample configuration files 45EXTRA_DIST = example.cf xkbevd.cf 46 47appmandir = $(APP_MAN_DIR) 48 49appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@) 50 51EXTRA_DIST += $(appman_PRE) 52CLEANFILES = $(appman_DATA) 53 54SED = sed 55 56# Strings to replace in man pages 57XORGRELSTRING = @PACKAGE_STRING@ 58 XORGMANNAME = X Version 11 59 60MAN_SUBSTS = \ 61 -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ 62 -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \ 63 -e 's|__xservername__|Xorg|g' \ 64 -e 's|__xconfigfile__|xorg.conf|g' \ 65 -e 's|__projectroot__|$(prefix)|g' \ 66 -e 's|__apploaddir__|$(appdefaultdir)|' \ 67 -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \ 68 -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \ 69 -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \ 70 -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \ 71 -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g' 72 73SUFFIXES = .$(APP_MAN_SUFFIX) .man 74 75.man.$(APP_MAN_SUFFIX): 76 $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ 77 78EXTRA_DIST += ChangeLog 79MAINTAINERCLEANFILES += ChangeLog 80 81.PHONY: ChangeLog 82 83ChangeLog: 84 $(CHANGELOG_CMD) 85 86dist-hook: ChangeLog 87