10b48355600c6b0322bf94358390e8bdd71e28b7
[xtoys] / Makefile.am
1 ## -*-makefile-*-
2 ##
3 ## $Id: Makefile.am,v 1.1 1998/11/16 23:00:49 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 ##----- Revision history ----------------------------------------------------
29 ##
30 ## $Log: Makefile.am,v $
31 ## Revision 1.1 1998/11/16 23:00:49 mdw
32 ## Initial versions.
33 ##
34
35 AUTOMAKE_OPTIONS = foreign
36
37 bin_PROGRAMS = xwait xtell xscsize @GTK_PROGS@
38 EXTRA_PROGRAMS = xshutdown xgetline
39 man_MANS = xwait.1 xtell.1 xshutdown.1 xscsize.1 xgetline.1
40 EXTRA_DIST = $(man_MANS)
41
42 xshutdown_SOURCES = xshutdown.c xwait.h mdwopt.c mdwopt.h
43 xshutdown_LDADD = @GTK_LIBS@
44
45 xgetline_SOURCES = xgetline.c mdwopt.c mdwopt.h
46 xgetline_LDADD = @GTK_LIBS@
47
48 xwait_SOURCES = xwait.c xwait.h
49 xwait_LDADD = @X_LIBS@ -lX11
50
51 xtell_SOURCES = xtell.c xwait.h
52 xtell_LDADD = @X_LIBS@ -lX11
53
54 xscsize_SOURCES = xscsize.c
55 xscsize_LDADD = @X_LIBS@ -lX11
56
57 ##----- That's all, folks ---------------------------------------------------