diff options
author | Kevin E Martin <kem@kem.org> | 2005-07-28 02:58:59 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-07-28 02:58:59 +0000 |
commit | 327ffdf93fd0b8f7942c08653cb644be2062428c (patch) | |
tree | 47228bbf23ae4966f45ceb49a52c50c7036703fd /Makefile.am | |
parent | 9145de293109ba96fc8b97ac59c16c51b992f416 (diff) |
Add build system for xmodmap Add xmodmap to build script
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..f1f4b46 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,37 @@ +# +# Copyright 2005 Red Hat, Inc. +# +# Permission to use, copy, modify, distribute, and sell this software and its +# documentation for any purpose is hereby granted without fee, provided that +# the above copyright notice appear in all copies and that both that +# copyright notice and this permission notice appear in supporting +# documentation, and that the name of Red Hat not be used in +# advertising or publicity pertaining to distribution of the software without +# specific, written prior permission. Red Hat makes no +# representations about the suitability of this software for any purpose. It +# is provided "as is" without express or implied warranty. +# +# RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO +# EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR +# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. + +bin_PROGRAMS = xmodmap + +xmodmap_CFLAGS = $(DEP_CFLAGS) +xmodmap_LDADD = $(DEP_LIBS) + +xmodmap_SOURCES = \ + exec.c \ + handle.c \ + pf.c \ + wq.h \ + xmodmap.c \ + xmodmap.h + +dist_man1_MANS = \ + xmodmap.man + |