build: Don't make libraries for precomputation utilities on demand.
[mLib] / vars.am
1 ### -*-Makefile-*-
2 ###
3 ### Common build-system definition
4 ###
5 ### (c) 1998 Straylight/Edgeware
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This file is part of the mLib utilities library.
11 ###
12 ### mLib is free software; you can redistribute it and/or modify
13 ### it under the terms of the GNU Library General Public License as
14 ### published by the Free Software Foundation; either version 2 of the
15 ### License, or (at your option) any later version.
16 ###
17 ### mLib 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 Library General Public License for more details.
21 ###
22 ### You should have received a copy of the GNU Library General Public
23 ### License along with mLib; if not, write to the Free
24 ### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 ### MA 02111-1307, USA.
26
27 ###--------------------------------------------------------------------------
28 ### Installation directories.
29
30 pkglibexecdir = $(libexecdir)/$(PACKAGE)
31
32 ###--------------------------------------------------------------------------
33 ### Initial values for common variables.
34
35 bin_PROGRAMS =
36 check_PROGRAMS =
37 pkginclude_HEADERS =
38 PRECOMPS =
39 PROGMANS =
40 LIBMANS =
41 EXTRA_DIST = $(PRECOMPS) $(LIBMANS) $(PROGMANS)
42 CLEANFILES =
43 MAINTAINERCLEANFILES = $(PRECOMPS)
44
45 ###--------------------------------------------------------------------------
46 ### Include path.
47
48 MLIB_INCLUDES = \
49 -I$(top_srcdir)/buf \
50 -I$(top_srcdir)/codec \
51 -I$(top_srcdir)/hash \
52 -I$(top_srcdir)/mem \
53 -I$(top_srcdir)/net \
54 -I$(top_srcdir)/struct \
55 -I$(top_srcdir)/sys \
56 -I$(top_srcdir)/test \
57 -I$(top_srcdir)/trace \
58 -I$(top_srcdir)/ui \
59 -I$(top_srcdir)/utils
60
61 AM_CPPFLAGS = $(MLIB_INCLUDES)
62
63 ###--------------------------------------------------------------------------
64 ### Miscellaneous useful definitions.
65
66 ## Substitute tags in files.
67 confsubst = $(top_srcdir)/config/confsubst
68
69 SUBSTITUTIONS = \
70 prefix=$(prefix) exec_prefix=$(exec_prefix) \
71 libdir=$(libdir) includedir=$(includedir) \
72 bindir=$(bindir) sbindir=$(sbindir) \
73 PACKAGE=$(PACKAGE) VERSION=$(VERSION)
74
75 ## Location of precomputed tables.
76 precomp = $(top_srcdir)/precomp
77
78 ###--------------------------------------------------------------------------
79 ### Building utilities.
80
81 ## Which libraries we need.
82 UTIL_LIBS = \
83 $(top_builddir)/ui/libui.la \
84 $(top_builddir)/utils/libutils.la
85
86 ###--------------------------------------------------------------------------
87 ### Testing.
88
89 TEST_CPPFLAGS = -DTEST_RIG -DSRCDIR="\"$(srcdir)\"" $(AM_CPPFLAGS)
90 LDADD = $(top_builddir)/libmLib.la
91
92 check: tests
93 .PHONY: check tests
94
95 tests::;
96 .PHONY: tests
97
98 ###--------------------------------------------------------------------------
99 ### Manual.
100
101 EXTRA_DIST += $(LIBMANS) $(PROGMANS)
102
103 install-data-local: install-man
104 install-man: $(LIBMANS) $(PROGMANS)
105 @$(NORMAL_INSTALL)
106 $(mkdir_p) $(DESTDIR)$(mandir)
107 $(top_srcdir)/config/maninst \
108 -d $(DESTDIR)$(mandir) -s $(srcdir) \
109 -i "$(INSTALL)" \
110 install $(PROGMANS)
111 $(top_srcdir)/config/maninst \
112 -d $(DESTDIR)$(mandir) -s $(srcdir) \
113 -i "$(INSTALL)" -e $(manext) \
114 install $(LIBMANS)
115 .PHONY: install-man
116
117 uninstall-local: uninstall-man
118 uninstall-man:
119 @$(NORMAL_UNINSTALL)
120 $(top_srcdir)/config/maninst \
121 -d $(DESTDIR)$(mandir) -s $(srcdir) \
122 uninstall $(PROGMANS)
123 $(top_srcdir)/config/maninst \
124 -d $(DESTDIR)$(mandir) -s $(srcdir) -e $(manext) \
125 uninstall $(LIBMANS)
126 .PHONY: uninstall-man
127
128 ###----- That's all, folks --------------------------------------------------