summaryrefslogtreecommitdiff
path: root/hw/xfree86/utils/kbd_mode
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-09-28 16:55:25 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-09-28 16:55:25 +0000
commitf53404bdbba23fd46420564565ab815f7c20b101 (patch)
tree6252b521cd913c17489ceb16621dd95c326d5dee /hw/xfree86/utils/kbd_mode
parent940158a6f2e98069a47293d713df674e16ad8a11 (diff)
Add kbd_mode build system
Diffstat (limited to 'hw/xfree86/utils/kbd_mode')
-rw-r--r--hw/xfree86/utils/kbd_mode/Makefile.am46
1 files changed, 46 insertions, 0 deletions
diff --git a/hw/xfree86/utils/kbd_mode/Makefile.am b/hw/xfree86/utils/kbd_mode/Makefile.am
new file mode 100644
index 000000000..f95a3b722
--- /dev/null
+++ b/hw/xfree86/utils/kbd_mode/Makefile.am
@@ -0,0 +1,46 @@
+# $Id$
+#
+# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, and/or sell copies of the Software, and to permit persons
+# to whom the Software is furnished to do so, provided that the above
+# copyright notice(s) and this permission notice appear in all copies of
+# the Software and that both the above copyright notice(s) and this
+# permission notice appear in supporting documentation.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR 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.
+#
+# Except as contained in this notice, the name of a copyright holder
+# shall not be used in advertising or otherwise to promote the sale, use
+# or other dealings in this Software without prior written authorization
+# of the copyright holder.
+#
+
+if BUILD_KBD_MODE
+bin_PROGRAMS = kbd_mode
+
+if BSD_KBD_MODE
+INCLUDES = $(XORG_INCS)
+kbd_mode_CFLAGS = $(XORG_CFLAGS)
+kbd_mode_SOURCES = bsd-kbd_mode.c
+dist_man1_MANS = bsd-kbd_mode.man
+endif
+
+if SUN_KBD_MODE
+kbd_mode_SOURCES = sun-kbd_mode.c
+dist_man1_MANS = sun-kbd_mode.man
+endif
+
+endif