Makefile.am revision ce62200c
11.179Sriastrad# 
21.166Sthorpej#  Copyright 2005  Red Hat, Inc.
31.166Sthorpej# 
41.166Sthorpej#  Permission to use, copy, modify, distribute, and sell this software and its
51.166Sthorpej#  documentation for any purpose is hereby granted without fee, provided that
61.166Sthorpej#  the above copyright notice appear in all copies and that both that
71.166Sthorpej#  copyright notice and this permission notice appear in supporting
81.166Sthorpej#  documentation, and that the name of Red Hat not be used in
91.166Sthorpej#  advertising or publicity pertaining to distribution of the software without
101.166Sthorpej#  specific, written prior permission.  Red Hat makes no
111.166Sthorpej#  representations about the suitability of this software for any purpose.  It
121.166Sthorpej#  is provided "as is" without express or implied warranty.
131.166Sthorpej# 
141.166Sthorpej#  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
151.166Sthorpej#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
161.166Sthorpej#  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
171.166Sthorpej#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
181.166Sthorpej#  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
191.166Sthorpej#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
201.166Sthorpej#  PERFORMANCE OF THIS SOFTWARE.
211.166Sthorpej
221.166SthorpejSUBDIRS=man
231.166Sthorpejbin_PROGRAMS = xmodmap
241.166Sthorpej
251.166SthorpejAM_CFLAGS = $(CWARNFLAGS) $(XMODMAP_CFLAGS)
261.166Sthorpejxmodmap_LDADD = $(XMODMAP_LIBS)
271.166Sthorpej
281.41Scgdxmodmap_SOURCES =	\
291.41Scgd        exec.c \
301.41Scgd        handle.c \
311.41Scgd        pf.c \
321.73Sperry        wq.h \
331.41Scgd        xmodmap.c \
341.41Scgd        xmodmap.h
351.41Scgd
361.41ScgdEXTRA_DIST = \
371.41Scgd        autogen.sh \
381.41Scgd	swap.km
391.41Scgd
401.41ScgdMAINTAINERCLEANFILES = ChangeLog INSTALL
411.41Scgd
421.41Scgd.PHONY: ChangeLog INSTALL
431.42Scgd
441.67SkeihanINSTALL:
451.42Scgd	$(INSTALL_CMD)
461.41Scgd
471.42ScgdChangeLog:
481.73Sperry	$(CHANGELOG_CMD)
491.41Scgd
501.41Scgddist-hook: ChangeLog INSTALL
511.41Scgd
521.41Scgdif LINT
531.41ScgdALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
541.41Scgd		$(AM_CPPFLAGS) $(CPPFLAGS)
551.41Scgd
561.41Scgdlint:
571.41Scgd	$(LINT) $(ALL_LINT_FLAGS) $(AM_CFLAGS) $(xmodmap_SOURCES)
581.41Scgdendif LINT
591.73Sperry