New file: mdwfocus.c
[xtoys] / Makefile.am
CommitLineData
90b2c5d4 1## -*-makefile-*-
2##
3cb11cac 3## $Id: Makefile.am,v 1.3 1998/12/03 00:37:19 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 $
3cb11cac 31## Revision 1.3 1998/12/03 00:37:19 mdw
32## New file: mdwfocus.c
33##
e6df3b1d 34## Revision 1.2 1998/11/21 22:27:21 mdw
35## Change build structure a bit: put common code in a library.
36##
90b2c5d4 37## Revision 1.1 1998/11/16 23:00:49 mdw
38## Initial versions.
39##
40
41AUTOMAKE_OPTIONS = foreign
42
e6df3b1d 43noinst_LIBRARIES = libxtoys.a
44libxtoys_a_SOURCES = mdwopt.c mdwopt.h quis.c quis.h
90b2c5d4 45bin_PROGRAMS = xwait xtell xscsize @GTK_PROGS@
46EXTRA_PROGRAMS = xshutdown xgetline
47man_MANS = xwait.1 xtell.1 xshutdown.1 xscsize.1 xgetline.1
48EXTRA_DIST = $(man_MANS)
49
3cb11cac 50xshutdown_SOURCES = xshutdown.c xwait.h mdwfocus.c mdwfocus.h
e6df3b1d 51xshutdown_LDADD = libxtoys.a @GTK_LIBS@
90b2c5d4 52
3cb11cac 53xgetline_SOURCES = xgetline.c mdwfocus.c mdwfocus.h
e6df3b1d 54xgetline_LDADD = libxtoys.a @GTK_LIBS@
90b2c5d4 55
56xwait_SOURCES = xwait.c xwait.h
e6df3b1d 57xwait_LDADD = libxtoys.a @X_LIBS@ -lX11
90b2c5d4 58
59xtell_SOURCES = xtell.c xwait.h
e6df3b1d 60xtell_LDADD = libxtoys.a @X_LIBS@ -lX11
90b2c5d4 61
62xscsize_SOURCES = xscsize.c
e6df3b1d 63xscsize_LDADD = libxtoys.a @X_LIBS@ -lX11
90b2c5d4 64
65##----- That's all, folks ---------------------------------------------------