xscsize: Reformat prettily.
[xtoys] / Makefile.am
CommitLineData
f6795c17
MW
1### -*-makefile-*-
2###
3### Makefile for X tools
4###
5### (c) 1998 Straylight/Edgeware
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the Edgeware X tools collection.
11###
12### X tools is free software; you can redistribute it and/or modify
13### it under the terms of the GNU General Public License as published by
14### the Free Software Foundation; either version 2 of the License, or
15### (at your option) any later version.
16###
17### X tools is distributed in the hope that it will be useful,
18### but WITHOUT ANY WARRANTY; without even the implied warranty of
19### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20### GNU General Public License for more details.
21###
22### You should have received a copy of the GNU General Public License
23### along with X tools; if not, write to the Free Software Foundation,
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26bin_PROGRAMS =
27bin_SCRIPTS =
28dist_man_MANS =
29EXTRA_DIST =
30CLEANFILES =
31
32###--------------------------------------------------------------------------
33### Distribution arrangements.
34
35dist-hook::
36 echo $(VERSION) >$(distdir)/RELEASE
37
38###--------------------------------------------------------------------------
39### Simple tools in C.
40
41AM_CFLAGS = $(X_CFLAGS)
42LDADD = -lX11 $(X_LIBS)
43
44## xscsize
45bin_PROGRAMS += xscsize
46dist_man_MANS += xscsize.1
47
48###--------------------------------------------------------------------------
49### Debian.
50
51EXTRA_DIST += debian/rules
52EXTRA_DIST += debian/control
53EXTRA_DIST += debian/copyright
54EXTRA_DIST += debian/changelog
55
56EXTRA_DIST += debian/xtoys.install
57
58###----- That's all, folks --------------------------------------------------