summaryrefslogtreecommitdiffstats
path: root/lib/Makefile.am
blob: fdeb4748b1be031e48e8a26b3c3505785ac8a60f (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
## Makefile for the support lib subdirectory of the GNU NLS Utilities
## Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc.
##
## This program 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 2, or (at your option)
## any later version.
##
## This program 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 this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

## Process this file with automake to produce Makefile.in.

AUTOMAKE_OPTIONS = 1.5 gnits no-dependencies

lib_LTLIBRARIES = libgettextlib.la

# Sources that are compiled on all platforms.

libgettextlib_la_SOURCES = \
  argmatch.h argmatch.c \
  backupfile.h backupfile.c addext.c \
  basename.h basename.c \
  binary-io.h \
  c-ctype.h c-ctype.c \
  copy-file.h copy-file.c \
  execute.h execute.c \
  exit.h \
  findprog.h findprog.c \
  fstrcmp.h fstrcmp.c \
  full-write.h full-write.c \
  gcd.h gcd.c \
  getopt.h getopt.c getopt1.c \
  hash.h hash.c \
  javacomp.h javacomp.c \
  javaexec.h javaexec.c \
  linebreak.h linebreak.c lbrkprop.h utf8-ucs4.h utf16-ucs4.h \
  localcharset.c \
  mbswidth.h mbswidth.c \
  minmax.h \
  obstack.h obstack.c \
  pathmax.h \
  pathname.h concatpath.c \
  pipe.h pipe-bidi.c pipe-in.c pipe-out.c \
  progname.h progname.c \
  safe-read.h safe-read.c \
  sh-quote.h sh-quote.c \
  tmpdir.h tmpdir.c \
  wait-process.h wait-process.c \
  xerror.h xerror.c \
  xmalloc.h xmalloc.c xstrdup.c \
  xsetenv.h xsetenv.c

# Sources that are compiled only on platforms that lack the functions.

LIBADD_SOURCE = \
  liballoca.h alloca.c \
  error.h error.c \
  getline.h getline.c \
  memset.c \
  mkdtemp.h mkdtemp.c \
  pfnmatch.h pfnmatch.c \
  setenv.h setenv.c \
  stpcpy.h stpcpy.c \
  stpncpy.h stpncpy.c \
  strcase.h strcasecmp.c strncasecmp.c \
  strcspn.c \
  strpbrk.h strpbrk.c \
  strstr.h strstr.c \
  strtol.c strtoul.c \
  vasprintf.c

# Unused sources.

UNUSED_SOURCE = \
  memmove.c \
  xgetcwd.h xgetcwd.c

# How to build libgettextlib.la.

libgettextlib_la_LIBADD = @LTALLOCA@ @LTLIBOBJS@

# Need @INTLLIBS@ because many source files use gettext().
# Need @LIBICONV@ because linebreak.c uses iconv().
libgettextlib_la_LDFLAGS = \
  -release @VERSION@ \
  @INTLLIBS@ @LIBICONV@ -lc -no-undefined

# Extra files to be installed.

gettextsrcdir = $(datadir)/gettext
gettextsrc_DATA = gettext.h

# List of files to be distributed.

noinst_HEADERS = gettext.h

EXTRA_DIST = classpath.c config.charset ref-add.sin ref-del.sin \
$(LIBADD_SOURCE) $(UNUSED_SOURCE) \
stdbool.h.in \
gen-lbrkprop.c 3level.h

DEFS = -DLIBDIR=\"$(libdir)\" @DEFS@
INCLUDES = -I. -I$(srcdir) -I.. -I../intl -I$(top_srcdir)/intl


DISTCLEANFILES = fnmatch.h


all-local execute.lo javacomp.lo javaexec.lo pipe-bidi.lo pipe-in.lo pipe-out.lo progname.lo wait-process.lo xerror.lo: @STDBOOL_H@
stdbool.h: stdbool.h.in
	cp $(srcdir)/stdbool.h.in stdbool.h
MOSTLYCLEANFILES = @STDBOOL_H@


# The following is needed in order to install a simple file in $(libdir)
# which is shared with other installed packages. We use a list of referencing
# packages so that "make uninstall" will remove the file if and only if it
# is not used by another installed package.
# On systems with glibc-2.1 or newer, the file is redundant, therefore we
# avoid installing it.

all-local: charset.alias ref-add.sed ref-del.sed

charset_alias = $(DESTDIR)$(libdir)/charset.alias
charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
install-exec-local: all-local
	$(mkinstalldirs) $(DESTDIR)$(libdir)
	if test -f $(charset_alias); then \
	  sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
	  $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
	  rm -f $(charset_tmp) ; \
	else \
	  if test @GLIBC21@ = no; then \
	    sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
	    $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
	    rm -f $(charset_tmp) ; \
	  fi ; \
	fi

uninstall-local: all-local
	if test -f $(charset_alias); then \
	  sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
	  if grep '^# Packages using this file: $$' $(charset_tmp) \
	      > /dev/null; then \
	    rm -f $(charset_alias); \
	  else \
	    $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
	  fi; \
	  rm -f $(charset_tmp); \
	fi

charset.alias: config.charset
	$(SHELL) $(srcdir)/config.charset '@host@' > t-$@
	mv t-$@ $@

SUFFIXES = .sed .sin
.sin.sed:
	sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
	mv t-$@ $@

CLEANFILES = charset.alias ref-add.sed ref-del.sed