chiark / gitweb /
Minor change in argument naming.
[mLib] / Makefile.am
CommitLineData
0875b58f 1## -*-Makefile-*-
2##
21c22b5c 3## $Id: Makefile.am,v 1.15 1999/10/22 22:40:49 mdw Exp $
0875b58f 4##
5## Building the distribution
6##
7## (c) 1998 Straylight/Edgeware
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of the mLib utilities library.
c846879c 13##
0875b58f 14## mLib is free software; you can redistribute it and/or modify
c846879c 15## it under the terms of the GNU Library General Public License as
16## published by the Free Software Foundation; either version 2 of the
17## License, or (at your option) any later version.
0875b58f 18##
19## mLib 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
c846879c 22## GNU Library General Public License for more details.
0875b58f 23##
c846879c 24## You should have received a copy of the GNU Library General Public
0bd98442 25## License along with mLib; if not, write to the Free
26## Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27## MA 02111-1307, USA.
0875b58f 28
29##----- Revision history ----------------------------------------------------
30##
31## $Log: Makefile.am,v $
21c22b5c 32## Revision 1.15 1999/10/22 22:40:49 mdw
33## New source files. New testing system for sym and dynarray.
34##
891a96e4 35## Revision 1.14 1999/10/04 21:47:12 mdw
36## Lots of new source files.
37##
f47f8c13 38## Revision 1.13 1999/08/02 14:47:21 mdw
39## Distribute new `hash' module.
40##
97c43272 41## Revision 1.12 1999/07/26 23:19:44 mdw
42## New source files.
43##
c255a2ee 44## Revision 1.11 1999/07/06 19:36:05 mdw
45## Various minor bugfixes.
46##
8f207948 47## Revision 1.10 1999/07/06 19:18:47 mdw
48## Handle new manual page directory.
49##
7c4c4903 50## Revision 1.9 1999/06/01 09:46:36 mdw
51## Make all the new bits.
52##
de7321c7 53## Revision 1.8 1999/05/21 22:16:08 mdw
54## Reorder the source files again, in an attempt to make them slightly
55## logical. It hasn't really succeeded, although it is an improvement.
56##
4fd94217 57## Revision 1.7 1999/05/17 20:34:44 mdw
58## More files added. Slight rearrangement of the ordering.
59##
edb89af3 60## Revision 1.6 1999/05/15 10:33:53 mdw
61## Add simplified locking code.
62##
97f65b00 63## Revision 1.5 1999/05/14 21:01:28 mdw
64## Integrated `select' handling bits from the background resolver project.
65##
0bd98442 66## Revision 1.4 1999/05/06 19:51:35 mdw
67## Reformatted the LGPL notice a little bit.
68##
c846879c 69## Revision 1.3 1999/05/05 18:50:30 mdw
70## Change licensing conditions to LGPL.
71##
64b4afc3 72## Revision 1.2 1998/11/25 23:30:30 mdw
73## Add `tv.c'and `tv.h' to the list.
74##
75## Revision 1.1.1.1 1998/06/17 23:44:42 mdw
76## Initial version of mLib
0875b58f 77##
78## Revision 1.5 1997/08/13 17:55:43 mdw
79## Add big GPL header. General tidying up.
80##
81
82## --- Options ---
83
84AUTOMAKE_OPTIONS = foreign
85
86## --- What to build ---
87
8f207948 88SUBDIRS = man
89
0875b58f 90lib_LIBRARIES = libmLib.a
891a96e4 91libexec_PROGRAMS = bres
0875b58f 92
64b4afc3 93pkginclude_HEADERS = \
21c22b5c 94 alloc.h bits.h exc.h quis.h report.h sub.h trace.h track.h \
95 darray.h dstr.h dspool.h hash.h sym.h crc32.h \
891a96e4 96 env.h fdflags.h lock.h \
97 bres.h conn.h lbuf.h ident.h sel.h selbuf.h sig.h tv.h \
7c4c4903 98 base64.h mdwopt.h str.h testrig.h url.h
0875b58f 99
100## --- Things to put in the library ---
101
102## libmLib_la_LDFLAGS = -version-info 1:0
103
104libmLib_a_SOURCES = \
21c22b5c 105 alloc.c exc.c quis.c pquis.c report.c sub.c trace.c traceopt.c \
106 track.c \
107 darray.c dstr.c dputf.c dspool.c hash.c sym.c crc32.c \
891a96e4 108 env.c fdflags.c lock.c \
109 bres.c conn.c lbuf.c ident.c sel.c selbuf.c sig.c tv.c \
7c4c4903 110 base64.c mdwopt.c str.c testrig.c url.c
8f207948 111
21c22b5c 112## --- Test code ---
113
114noinst_PROGRAMS = da-test sym-test
115
116check: da-test.test sym-test.test
117
118da_test_LDADD = libmLib.a
119da-test.in:
120 perl $(srcdir)/da-gtest 10000 >da-test.in
121da-test.ref: da-test.in
122 perl $(srcdir)/da-ref <da-test.in >da-test.ref
123da-test.test: da-test da-test.in da-test.ref
124 ./da-test <da-test.in >da-test.test
125 cmp da-test.test da-test.ref
126 @echo "darray tested OK."
127
128sym_test_LDADD = libmLib.a
129sym-test.in:
130 perl $(srcdir)/sym-gtest 10000 >sym-test.in
131sym-test.ref: sym-test.in
132 perl $(srcdir)/sym-ref <sym-test.in >sym-test.ref
133sym-test.test: sym-test sym-test.in sym-test.ref
134 ./sym-test <sym-test.in >sym-test.test
135 cmp sym-test.test sym-test.ref
136 @echo "sym tested OK."
137
138TEST_CLEAN = \
139 da-test.in da-test.ref da-test.test \
140 sym-test.in sym-test.ref sym-test.test
141
142TEST_DIST = \
143 da-gtest da-ref \
144 sym-gtest sym-ref
145
891a96e4 146## --- Background resolver ---
147##
148## I must (a) build the standalone version, and (b) inform the client library
149## where the standalone version is.
150
151bres: bres-stnd.o
152 $(LINK) -o bres bres-stnd.o $(LIBS)
153
154bres-stnd.o: $(srcdir)/bres.c
155 $(COMPILE) -c -DBRES_STANDALONE -o bres-stnd.o $(srcdir)/bres.c
156
157bres.o: $(srcdir)/bres.c
158 $(COMPILE) -c -DBRES_SERVER="\"$(libexecdir)/`echo bres|sed '$(transform)'`\"" $(srcdir)/bres.c
159
160## --- Other useful rules ---
c255a2ee 161
162install-man:
163 (cd man && make install-man)
164
21c22b5c 165CLEANFILES = $(TEST_CLEAN)
166EXTRA_DIST = $(TEST_DIST)
167
8f207948 168##----- That's all, folks ---------------------------------------------------