aboutsummaryrefslogtreecommitdiff
path: root/Make.am
blob: f9247d8d29d8f8f9a3bd5731787299862c94e154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Main Makefile.am source for runcap
# Copyright (C) 2017-2024 Sergey Poznyakoff
#
# Runcap is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3 of the License, or (at your
# option) any later version.
#
# Runcap is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with Runcap. If not, see <http://www.gnu.org/licenses/>.

# The runcap library can be built in three distinct flavours:
#   1. as a standalone library
#   2. as a shared convenience library
#   3. as a static convenience library
# Due to various Automake/libtools subtleties, the three builds cannot be
# defined in a single Makefile.am. Therefore, three distinct Automake sources
# are provided for each of the above types. Each of them contains the rules
# and variables for its particular build flavour, and obtains common rules and
# and variables by including Make.am. The actual build flavour is determined by
# the second argument to the RUNCAP_SETUP macro invocation (see runcap.m4).
# The files and the corresponding 2nd argument for each build type are:
#   1. install.am   install
#   2. shared.am    shared
#   3. static.am    static

RUNCAP_SRC = \
 getc.c\
 getl.c\
 read.c\
 runcap.c\
 seek.c\
 tell.c
EXTRA_DIST = Make.am install.am shared.am static.am
check:
	$(MAKE) -C t check
SUBDIRS = . t

Return to:

Send suggestions and report system problems to the System administrator.