Makefile.am revision 010cdda0
1010cdda0Smrg# 
2010cdda0Smrg#  Copyright 2005  Red Hat, Inc.
3010cdda0Smrg# 
4010cdda0Smrg#  Permission to use, copy, modify, distribute, and sell this software and its
5010cdda0Smrg#  documentation for any purpose is hereby granted without fee, provided that
6010cdda0Smrg#  the above copyright notice appear in all copies and that both that
7010cdda0Smrg#  copyright notice and this permission notice appear in supporting
8010cdda0Smrg#  documentation, and that the name of Red Hat not be used in
9010cdda0Smrg#  advertising or publicity pertaining to distribution of the software without
10010cdda0Smrg#  specific, written prior permission.  Red Hat makes no
11010cdda0Smrg#  representations about the suitability of this software for any purpose.  It
12010cdda0Smrg#  is provided "as is" without express or implied warranty.
13010cdda0Smrg# 
14010cdda0Smrg#  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15010cdda0Smrg#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16010cdda0Smrg#  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17010cdda0Smrg#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18010cdda0Smrg#  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19010cdda0Smrg#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20010cdda0Smrg#  PERFORMANCE OF THIS SOFTWARE.
21010cdda0Smrg
22010cdda0Smrgbin_PROGRAMS = xkbvleds xkbwatch xkbbell
23010cdda0Smrg
24010cdda0Smrg# xkbvleds
25010cdda0Smrg
26010cdda0Smrgxkbvleds_SOURCES = xkbvleds.c LED.c LED.h LEDP.h utils.c utils.h
27010cdda0Smrg
28010cdda0Smrgxkbvleds_CFLAGS = $(XKBVLEDS_CFLAGS)
29010cdda0Smrgxkbvleds_LDADD = $(XKBVLEDS_LIBS)
30010cdda0Smrg
31010cdda0Smrg# xkbbell
32010cdda0Smrg
33010cdda0Smrgxkbbell_SOURCES = xkbbell.c
34010cdda0Smrg
35010cdda0Smrgxkbbell_CFLAGS = $(XKBBELL_CFLAGS)
36010cdda0Smrgxkbbell_LDADD = $(XKBBELL_LIBS)
37010cdda0Smrg
38010cdda0Smrg# xkbwatch
39010cdda0Smrg
40010cdda0Smrgxkbwatch_SOURCES = xkbwatch.c LED.c LED.h LEDP.h utils.c utils.h
41010cdda0Smrgxkbwatch_CFLAGS = $(XKBWATCH_CFLAGS)
42010cdda0Smrgxkbwatch_LDADD = $(XKBWATCH_LIBS)
43