chiark / gitweb /
Release 2.3.3.
[mLib] / vars.am
CommitLineData
18c831dc
MW
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###--------------------------------------------------------------------------
118a549c
MW
28### Miscellaneous useful definitions.
29
118a549c 30## Installation directories.
18c831dc
MW
31pkglibexecdir = $(libexecdir)/$(PACKAGE)
32
33###--------------------------------------------------------------------------
34### Initial values for common variables.
35
118a549c
MW
36EXTRA_DIST =
37CLEANFILES =
38DISTCLEANFILES =
39MAINTAINERCLEANFILES =
40BUILT_SOURCES =
41
18c831dc
MW
42bin_PROGRAMS =
43check_PROGRAMS =
44pkginclude_HEADERS =
118a549c 45
18c831dc
MW
46PROGMANS =
47LIBMANS =
118a549c
MW
48EXTRA_DIST += $(PROGMANS) $(LIBMANS)
49
50###--------------------------------------------------------------------------
51### Machinery for precomputations.
52
53## Location of precomputed tables.
54precomp = $(top_srcdir)/precomp
55
56## Precomputed source code files.
57PRECOMPS =
58EXTRA_DIST += $(PRECOMPS)
59BUILT_SOURCES += $(PRECOMPS)
60MAINTAINERCLEANFILES += $(PRECOMPS)
18c831dc
MW
61
62###--------------------------------------------------------------------------
63### Include path.
64
4af1c336 65MLIB_INCLUDES = \
18c831dc
MW
66 -I$(top_srcdir)/buf \
67 -I$(top_srcdir)/codec \
68 -I$(top_srcdir)/hash \
69 -I$(top_srcdir)/mem \
70 -I$(top_srcdir)/net \
71 -I$(top_srcdir)/struct \
72 -I$(top_srcdir)/sys \
73 -I$(top_srcdir)/test \
74 -I$(top_srcdir)/trace \
75 -I$(top_srcdir)/ui \
76 -I$(top_srcdir)/utils
77
4af1c336 78AM_CPPFLAGS = $(MLIB_INCLUDES)
18c831dc
MW
79
80###--------------------------------------------------------------------------
118a549c 81### Standard configuration substitutions.
18c831dc
MW
82
83## Substitute tags in files.
84confsubst = $(top_srcdir)/config/confsubst
85
86SUBSTITUTIONS = \
87 prefix=$(prefix) exec_prefix=$(exec_prefix) \
88 libdir=$(libdir) includedir=$(includedir) \
89 bindir=$(bindir) sbindir=$(sbindir) \
5b2eac52
MW
90 PACKAGE=$(PACKAGE) VERSION=$(VERSION) \
91 MLIB_LIBS="$(MLIB_LIBS)"
18c831dc 92
dd8acfea
MW
93V_SUBST = $(V_SUBST_@AM_V@)
94V_SUBST_ = $(V_SUBST_@AM_DEFAULT_V@)
95V_SUBST_0 = @echo " SUBST $@";
2cf5abdf 96SUBST = $(V_SUBST)$(confsubst)
173ff44a 97
18c831dc
MW
98###--------------------------------------------------------------------------
99### Building utilities.
100
101## Which libraries we need.
102UTIL_LIBS = \
103 $(top_builddir)/ui/libui.la \
104 $(top_builddir)/utils/libutils.la
105
18c831dc
MW
106###--------------------------------------------------------------------------
107### Testing.
108
109TEST_CPPFLAGS = -DTEST_RIG -DSRCDIR="\"$(srcdir)\"" $(AM_CPPFLAGS)
110LDADD = $(top_builddir)/libmLib.la
111
112check: tests
113.PHONY: check tests
114
7cf5c72a
MW
115tests::;
116.PHONY: tests
117
18c831dc
MW
118###--------------------------------------------------------------------------
119### Manual.
120
121EXTRA_DIST += $(LIBMANS) $(PROGMANS)
122
123install-data-local: install-man
124install-man: $(LIBMANS) $(PROGMANS)
125 @$(NORMAL_INSTALL)
126 $(mkdir_p) $(DESTDIR)$(mandir)
127 $(top_srcdir)/config/maninst \
128 -d $(DESTDIR)$(mandir) -s $(srcdir) \
129 -i "$(INSTALL)" \
130 install $(PROGMANS)
131 $(top_srcdir)/config/maninst \
132 -d $(DESTDIR)$(mandir) -s $(srcdir) \
133 -i "$(INSTALL)" -e $(manext) \
134 install $(LIBMANS)
135.PHONY: install-man
136
137uninstall-local: uninstall-man
138uninstall-man:
139 @$(NORMAL_UNINSTALL)
140 $(top_srcdir)/config/maninst \
141 -d $(DESTDIR)$(mandir) -s $(srcdir) \
142 uninstall $(PROGMANS)
143 $(top_srcdir)/config/maninst \
144 -d $(DESTDIR)$(mandir) -s $(srcdir) -e $(manext) \
145 uninstall $(LIBMANS)
146.PHONY: uninstall-man
147
148###----- That's all, folks --------------------------------------------------