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