New program to display messages and get answers.
[xtoys] / Makefile.am
CommitLineData
90b2c5d4 1## -*-makefile-*-
2##
2b6e1eca 3## $Id: Makefile.am,v 1.9 2002/01/13 14:42:30 mdw Exp $
90b2c5d4 4##
5## Makefile for X tools
6##
7## (c) 1998 Straylight/Edgeware
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of the Edgeware X tools collection.
13##
14## X tools is free software; you can redistribute it and/or modify
15## it under the terms of the GNU General Public License as published by
16## the Free Software Foundation; either version 2 of the License, or
17## (at your option) any later version.
18##
19## X tools is distributed in the hope that it will be useful,
20## but WITHOUT ANY WARRANTY; without even the implied warranty of
21## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22## GNU General Public License for more details.
23##
24## You should have received a copy of the GNU General Public License
25## along with X tools; if not, write to the Free Software Foundation,
26## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
28##----- Revision history ----------------------------------------------------
29##
30## $Log: Makefile.am,v $
2b6e1eca 31## Revision 1.9 2002/01/13 14:42:30 mdw
32## New program to display messages and get answers.
33##
d5419f6c 34## Revision 1.8 1999/11/11 19:50:13 mdw
35## Build separately from libraries.
36##
23fd6ea3 37## Revision 1.7 1999/08/20 07:32:23 mdw
38## New source file `atom.c'.
39##
3d144660 40## Revision 1.6 1999/03/25 23:37:20 mdw
41## Remove absolute dependence on GTK.
42##
07ba26fa 43## Revision 1.5 1998/12/15 23:46:23 mdw
44## Add `xcatch', and rearrange so that the GTK-based programs are only
45## mentioned in the Makefile.
46##
6930fe78 47## Revision 1.4 1998/12/11 09:50:37 mdw
48## Recursively build and configure mLib and mgLib.
49##
3cb11cac 50## Revision 1.3 1998/12/03 00:37:19 mdw
51## New file: mdwfocus.c
52##
e6df3b1d 53## Revision 1.2 1998/11/21 22:27:21 mdw
54## Change build structure a bit: put common code in a library.
55##
90b2c5d4 56## Revision 1.1 1998/11/16 23:00:49 mdw
57## Initial versions.
58##
59
60AUTOMAKE_OPTIONS = foreign
61
2b6e1eca 62GTK_PROGS = xshutdown xgetline xcatch xmsg
90b2c5d4 63bin_PROGRAMS = xwait xtell xscsize @GTK_PROGS@
07ba26fa 64EXTRA_PROGRAMS = $(GTK_PROGS)
2b6e1eca 65man_MANS = xwait.1 xtell.1 xshutdown.1 xscsize.1 xgetline.1 xcatch.1 xmsg.1
90b2c5d4 66EXTRA_DIST = $(man_MANS)
67
3d144660 68CLEANFILES = $(GTK_PROGS)
69
23fd6ea3 70xshutdown_SOURCES = xshutdown.c xwait.h xatom.c xatom.h
d5419f6c 71xshutdown_LDADD = @MGLIB_LIBS@ @GTK_LIBS@
90b2c5d4 72
07ba26fa 73xcatch_SOURCES = xcatch.c
d5419f6c 74xcatch_LDADD = @MGLIB_LIBS@ @GTK_LIBS@
07ba26fa 75
6930fe78 76xgetline_SOURCES = xgetline.c
d5419f6c 77xgetline_LDADD = @MGLIB_LIBS@ @GTK_LIBS@
90b2c5d4 78
23fd6ea3 79xwait_SOURCES = xwait.c xwait.h xatom.c xatom.h
d5419f6c 80xwait_LDADD = @X_LIBS@ -lX11
90b2c5d4 81
23fd6ea3 82xtell_SOURCES = xtell.c xwait.h xatom.c xatom.h
d5419f6c 83xtell_LDADD = @X_LIBS@ -lX11
90b2c5d4 84
2b6e1eca 85xmsg_SOURCES = xmsg.c
86xmsg_LDADD = @MGLIB_LIBS@ @GTK_LIBS@
87
90b2c5d4 88xscsize_SOURCES = xscsize.c
d5419f6c 89xscsize_LDADD = @X_LIBS@ -lX11
90b2c5d4 90
91##----- That's all, folks ---------------------------------------------------