diff options
author | Bruno Haible <bruno@clisp.org> | 2003-02-14 20:28:11 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:02 +0200 |
commit | d5511775a370db382dd8dc5e94994e83a72fa24e (patch) | |
tree | 4733ab49a8c7cf1e286b6f61d2357d3c022e5b9b /gettext-runtime | |
parent | 001e251fe76ff1b6acdbb8ef3914978181f7b7d4 (diff) | |
download | external_gettext-d5511775a370db382dd8dc5e94994e83a72fa24e.zip external_gettext-d5511775a370db382dd8dc5e94994e83a72fa24e.tar.gz external_gettext-d5511775a370db382dd8dc5e94994e83a72fa24e.tar.bz2 |
Infrastruture for new gettext-runtime/lib directory.
Diffstat (limited to 'gettext-runtime')
-rw-r--r-- | gettext-runtime/lib/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-runtime/lib/Makefile.am | 37 |
2 files changed, 42 insertions, 0 deletions
diff --git a/gettext-runtime/lib/ChangeLog b/gettext-runtime/lib/ChangeLog new file mode 100644 index 0000000..f9fdce9 --- /dev/null +++ b/gettext-runtime/lib/ChangeLog @@ -0,0 +1,5 @@ +2003-02-12 Bruno Haible <bruno@clisp.org> + + Extracted from gettext package. + * Makefile.am: New file. + diff --git a/gettext-runtime/lib/Makefile.am b/gettext-runtime/lib/Makefile.am new file mode 100644 index 0000000..35fc8be --- /dev/null +++ b/gettext-runtime/lib/Makefile.am @@ -0,0 +1,37 @@ +## Makefile for the gettext-runtime/lib subdirectory of GNU gettext +## Copyright (C) 1995-1998, 2000-2003 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 + +noinst_LIBRARIES = libgrt.a + +# Sources that are compiled on all platforms. + +libgrt_a_SOURCES = \ + basename.h basename.c \ + error.h error.c \ + exit.h \ + getopt.h getopt.c getopt1.c \ + xmalloc.h xmalloc.c + +INCLUDES = \ + -I. -I$(srcdir) \ + -I.. \ + -I../intl -I$(srcdir)/../intl \ + -I../../gettext-tools/lib -I$(srcdir)/../../gettext-tools/lib |