Makefile.am revision 07d2e718
1# 2# Copyright 2005 Red Hat, Inc. 3# 4# Permission to use, copy, modify, distribute, and sell this software and its 5# documentation for any purpose is hereby granted without fee, provided that 6# the above copyright notice appear in all copies and that both that 7# copyright notice and this permission notice appear in supporting 8# documentation, and that the name of Red Hat not be used in 9# advertising or publicity pertaining to distribution of the software without 10# specific, written prior permission. Red Hat makes no 11# representations about the suitability of this software for any purpose. It 12# is provided "as is" without express or implied warranty. 13# 14# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 15# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO 16# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR 17# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, 18# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 20# PERFORMANCE OF THIS SOFTWARE. 21 22SUBDIRS = man 23bin_PROGRAMS = xkbcomp 24 25AM_CFLAGS = $(XKBCOMP_CFLAGS) -DDFLT_XKB_CONFIG_ROOT='"$(XKBCONFIGROOT)"' $(CWARNFLAGS) 26xkbcomp_LDADD = $(XKBCOMP_LIBS) 27 28xkbcomp_SOURCES = \ 29 action.c \ 30 action.h \ 31 alias.c \ 32 alias.h \ 33 compat.c \ 34 compat.h \ 35 expr.c \ 36 expr.h \ 37 geometry.c \ 38 indicators.c \ 39 indicators.h \ 40 keycodes.c \ 41 keycodes.h \ 42 keymap.c \ 43 keytypes.c \ 44 listing.c \ 45 misc.c \ 46 misc.h \ 47 parseutils.c \ 48 parseutils.h \ 49 symbols.c \ 50 tokens.h \ 51 utils.c \ 52 utils.h \ 53 vmod.c \ 54 vmod.h \ 55 xkbcomp.c \ 56 xkbcomp.h \ 57 xkbparse.y \ 58 xkbpath.c \ 59 xkbpath.h \ 60 xkbscan.c 61 62 63BUILT_SOURCES = xkbparse.c 64MAINTAINERCLEANFILES = ChangeLog INSTALL 65MAINTAINERCLEANFILES += $(BUILT_SOURCES) 66 67.PHONY: ChangeLog INSTALL 68 69INSTALL: 70 $(INSTALL_CMD) 71 72ChangeLog: 73 $(CHANGELOG_CMD) 74 75dist-hook: ChangeLog INSTALL 76