chiark / gitweb /
struct/t/: Use better format for printing `size_t values.
[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###--------------------------------------------------------------------------
28### Installation directories.
29
30pkglibexecdir = $(libexecdir)/$(PACKAGE)
31
32###--------------------------------------------------------------------------
33### Initial values for common variables.
34
35bin_PROGRAMS =
36check_PROGRAMS =
37pkginclude_HEADERS =
173ff44a 38PRECOMPS =
18c831dc
MW
39PROGMANS =
40LIBMANS =
173ff44a 41EXTRA_DIST = $(PRECOMPS) $(LIBMANS) $(PROGMANS)
18c831dc 42CLEANFILES =
173ff44a 43MAINTAINERCLEANFILES = $(PRECOMPS)
18c831dc
MW
44
45###--------------------------------------------------------------------------
46### Include path.
47
4af1c336 48MLIB_INCLUDES = \
18c831dc
MW
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
4af1c336 61AM_CPPFLAGS = $(MLIB_INCLUDES)
18c831dc
MW
62
63###--------------------------------------------------------------------------
64### Miscellaneous useful definitions.
65
66## Substitute tags in files.
67confsubst = $(top_srcdir)/config/confsubst
68
69SUBSTITUTIONS = \
70 prefix=$(prefix) exec_prefix=$(exec_prefix) \
71 libdir=$(libdir) includedir=$(includedir) \
72 bindir=$(bindir) sbindir=$(sbindir) \
73 PACKAGE=$(PACKAGE) VERSION=$(VERSION)
74
173ff44a
MW
75## Location of precomputed tables.
76precomp = $(top_srcdir)/precomp
77
18c831dc
MW
78###--------------------------------------------------------------------------
79### Building utilities.
80
81## Which libraries we need.
82UTIL_LIBS = \
83 $(top_builddir)/ui/libui.la \
84 $(top_builddir)/utils/libutils.la
85
18c831dc
MW
86###--------------------------------------------------------------------------
87### Testing.
88
89TEST_CPPFLAGS = -DTEST_RIG -DSRCDIR="\"$(srcdir)\"" $(AM_CPPFLAGS)
90LDADD = $(top_builddir)/libmLib.la
91
92check: tests
93.PHONY: check tests
94
7cf5c72a
MW
95tests::;
96.PHONY: tests
97
18c831dc
MW
98###--------------------------------------------------------------------------
99### Manual.
100
101EXTRA_DIST += $(LIBMANS) $(PROGMANS)
102
103install-data-local: install-man
104install-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
117uninstall-local: uninstall-man
118uninstall-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 --------------------------------------------------