Makefile.am revision 482df631
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 = ChangeLog INSTALL
43MAINTAINERCLEANFILES += $(BUILT_SOURCES)
44
45# Sample configuration files
46EXTRA_DIST = example.cf xkbevd.cf
47
48appmandir = $(APP_MAN_DIR)
49
50appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@)
51
52EXTRA_DIST += $(appman_PRE)
53CLEANFILES = $(appman_DATA)
54
55SUFFIXES = .$(APP_MAN_SUFFIX) .man
56
57# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
58.man.$(APP_MAN_SUFFIX):
59	$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
60
61
62.PHONY: ChangeLog INSTALL
63
64INSTALL:
65	$(INSTALL_CMD)
66
67ChangeLog:
68	$(CHANGELOG_CMD)
69
70dist-hook: ChangeLog INSTALL
71