~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to extension/Makefile.am

  • Committer: Arnold D. Robbins
  • Date: 2012-11-25 19:54:48 UTC
  • mfrom: (319.1.122)
  • Revision ID: git-v1:9a9ff61bbd952c1263b55f82a269da5b09289a6b
Merge branch 'master' into array-iface

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# extension/Makefile.am --- automake input file for gawk
 
3
#
 
4
# Copyright (C) 1995-2006, 2012 the Free Software Foundation, Inc.
 
5
#
 
6
# This file is part of GAWK, the GNU implementation of the
 
7
# AWK Programming Language.
 
8
#
 
9
# GAWK is free software; you can redistribute it and/or modify
 
10
# it under the terms of the GNU General Public License as published by
 
11
# the Free Software Foundation; either version 3 of the License, or
 
12
# (at your option) any later version.
 
13
#
 
14
# GAWK is distributed in the hope that it will be useful,
 
15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
# GNU General Public License for more details.
 
18
#
 
19
# You should have received a copy of the GNU General Public License
 
20
# along with this program; if not, write to the Free Software
 
21
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 
22
#
 
23
 
 
24
## Process this file with automake to produce Makefile.in.
 
25
 
 
26
AM_CPPFLAGS = -I$(srcdir)/..
 
27
 
 
28
# This variable insures that aclocal runs
 
29
# correctly after changing configure.ac
 
30
ACLOCAL_AMFLAGS = -I m4
 
31
 
 
32
# Note: rwarray does not currently compile.
 
33
 
 
34
pkgextension_LTLIBRARIES =      \
 
35
        filefuncs.la    \
 
36
        fnmatch.la      \
 
37
        fork.la         \
 
38
        ordchr.la       \
 
39
        readdir.la      \
 
40
        readfile.la     \
 
41
        revoutput.la    \
 
42
        revtwoway.la    \
 
43
        rwarray.la      \
 
44
        testext.la      \
 
45
        time.la
 
46
 
 
47
MY_MODULE_FLAGS = -module -avoid-version -no-undefined
 
48
# on Cygwin, gettext requires that we link with -lintl 
 
49
MY_LIBS = $(LIBINTL)
 
50
 
 
51
filefuncs_la_SOURCES  = filefuncs.c stack.h stack.c gawkfts.h gawkfts.c
 
52
filefuncs_la_LDFLAGS  = $(MY_MODULE_FLAGS)
 
53
filefuncs_la_LIBADD   = $(MY_LIBS)
 
54
 
 
55
fnmatch_la_SOURCES    = fnmatch.c
 
56
fnmatch_la_LDFLAGS    = $(MY_MODULE_FLAGS)
 
57
fnmatch_la_LIBADD     = $(MY_LIBS)
 
58
 
 
59
fork_la_SOURCES       = fork.c
 
60
fork_la_LDFLAGS       = $(MY_MODULE_FLAGS)
 
61
fork_la_LIBADD        = $(MY_LIBS)
 
62
 
 
63
ordchr_la_SOURCES     = ordchr.c
 
64
ordchr_la_LDFLAGS     = $(MY_MODULE_FLAGS)
 
65
ordchr_la_LIBADD      = $(MY_LIBS)
 
66
 
 
67
readdir_la_SOURCES    = readdir.c
 
68
readdir_la_LDFLAGS    = $(MY_MODULE_FLAGS)
 
69
readdir_la_LIBADD     = $(MY_LIBS)
 
70
 
 
71
readfile_la_SOURCES   = readfile.c
 
72
readfile_la_LDFLAGS   = $(MY_MODULE_FLAGS)
 
73
readfile_la_LIBADD    = $(MY_LIBS)
 
74
 
 
75
revoutput_la_SOURCES  = revoutput.c
 
76
revoutput_la_LDFLAGS  = $(MY_MODULE_FLAGS)
 
77
revoutput_la_LIBADD   = $(MY_LIBS)
 
78
 
 
79
revtwoway_la_SOURCES  = revtwoway.c
 
80
revtwoway_la_LDFLAGS  = $(MY_MODULE_FLAGS)
 
81
revtwoway_la_LIBADD   = $(MY_LIBS)
 
82
 
 
83
rwarray_la_SOURCES    = rwarray.c
 
84
rwarray_la_LDFLAGS    = $(MY_MODULE_FLAGS)
 
85
rwarray_la_LIBADD     = $(MY_LIBS)
 
86
 
 
87
time_la_SOURCES       = time.c
 
88
time_la_LDFLAGS       = $(MY_MODULE_FLAGS)
 
89
time_la_LIBADD        = $(MY_LIBS)
 
90
 
 
91
testext_la_SOURCES    = testext.c
 
92
testext_la_LDFLAGS    = $(MY_MODULE_FLAGS)
 
93
testext_la_LIBADD     = $(MY_LIBS)
 
94
 
 
95
EXTRA_DIST = build-aux/config.rpath  \
 
96
        ChangeLog \
 
97
        ChangeLog.0 \
 
98
        fts.3
 
99
 
 
100
dist_man_MANS = \
 
101
        filefuncs.3am fnmatch.3am fork.3am ordchr.3am \
 
102
        readdir.3am readfile.3am revoutput.3am \
 
103
        revtwoway.3am rwarray.3am time.3am
 
104
 
 
105
# gettext requires this
 
106
SUBDIRS =