Expunge revision histories in files.
[xtoys] / Makefile.am
1 ## -*-makefile-*-
2 ##
3 ## $Id: Makefile.am,v 1.11 2004/04/08 01:36:29 mdw Exp $
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 AUTOMAKE_OPTIONS = foreign
29
30 GTK_PROGS = xshutdown xgetline xcatch xmsg
31 bin_PROGRAMS = xwait xtell xscsize @GTK_PROGS@
32 EXTRA_PROGRAMS = $(GTK_PROGS)
33 man_MANS = xwait.1 xtell.1 xshutdown.1 xscsize.1 xgetline.1 xcatch.1 xmsg.1
34 EXTRA_DIST = \
35 $(man_MANS) \
36 debian/rules debian/copyright debian/control debian/changelog
37
38 CLEANFILES = $(GTK_PROGS)
39
40 xshutdown_SOURCES = xshutdown.c xwait.h xatom.c xatom.h
41 xshutdown_LDADD = @MGLIB_LIBS@ @GTK_LIBS@
42
43 xcatch_SOURCES = xcatch.c
44 xcatch_LDADD = @MGLIB_LIBS@ @GTK_LIBS@
45
46 xgetline_SOURCES = xgetline.c
47 xgetline_LDADD = @MGLIB_LIBS@ @GTK_LIBS@
48
49 xwait_SOURCES = xwait.c xwait.h xatom.c xatom.h
50 xwait_LDADD = @X_LIBS@ -lX11
51
52 xtell_SOURCES = xtell.c xwait.h xatom.c xatom.h
53 xtell_LDADD = @X_LIBS@ -lX11
54
55 xmsg_SOURCES = xmsg.c
56 xmsg_LDADD = @MGLIB_LIBS@ @GTK_LIBS@
57
58 xscsize_SOURCES = xscsize.c
59 xscsize_LDADD = @X_LIBS@ -lX11
60
61 ##----- That's all, folks ---------------------------------------------------