1996-01-08 23:44:45 +01:00
|
|
|
# Copyright (C) 1991, 1992, 1995, 1996 Free Software Foundation, Inc.
|
1995-02-18 02:27:10 +01:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
|
|
|
|
# The GNU C Library 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
|
|
|
|
# Library General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with the GNU C Library; see the file COPYING.LIB. If
|
|
|
|
# not, write to the Free Software Foundation, Inc., 675 Mass Ave,
|
|
|
|
# Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Makefile for locales.
|
|
|
|
#
|
|
|
|
subdir := locale
|
|
|
|
|
1995-05-18 11:00:09 +02:00
|
|
|
headers = locale.h
|
|
|
|
distribute = localeinfo.h categories.def \
|
|
|
|
$(localedef-modules:=.c) $(locale-modules:=.c) \
|
|
|
|
$(lib-modules:=.c) config.h hash.h iso-4217.def \
|
Fri Dec 8 13:04:51 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* locale/error.c, locale/error.h: Files removed.
* locale/Makefile (distribute): Remove error.h.
(lib-modules): Remove error.
* hurd/hurdlookup.c (__hurd_file_name_lookup_retry): For "tty"
magic, return ENXIO if no ctty.
* sysdeps/mach/hurd/mmap.c: For MAP_FIXED, deallocate a previous
mapping if vm_map fails for that reason.
* posix/glob.c: Implement new options GLOB_ALTDIRFUNC, GLOB_BRACE,
GLOB_TILDE, GLOB_NOMAGIC.
(glob): Use stat instead of lstat to determine directoriness.
* posix/glob.h (GLOB_ALTDIRFUNC, GLOB_BRACE, GLOB_NOMAGIC, GLOB_TILDE):
New flag bits.
(__GLOB_FLAGS): Include them.
(glob_t): New members gl_closedir, gl_readdir, gl_opendir, gl_lstat,
gl_stat.
* elf/elf.h (ET_NUM, SHT_NUM, STB_NUM, STT_NUM, PT_NUM): New macros.
* sysdeps/unix/sysv/linux/sys/mman.h: Include <linux/mman.h> to
define all the bit values.
(MAP_*, MCL_*): Macros removed.
1995-12-09 11:00:22 +01:00
|
|
|
keyword.gperf keyword.h localedef.h token.h
|
1995-05-18 11:00:09 +02:00
|
|
|
routines = setlocale loadlocale localeconv nl_langinfo
|
|
|
|
categories = ctype messages monetary numeric time collate
|
1995-10-17 03:14:34 +01:00
|
|
|
aux = $(categories:%=lc-%) $(categories:%=C-%) SYS_libc
|
1995-05-18 11:00:09 +02:00
|
|
|
others = localedef locale
|
|
|
|
install-bin = localedef locale
|
|
|
|
extra-objs = $(localedef-modules:=.o) $(locale-modules:=.o) \
|
|
|
|
$(lib-modules:=.o)
|
|
|
|
|
1995-06-08 11:00:23 +02:00
|
|
|
localedef-modules := charmap locfile-lex locfile-parse locale-ctype \
|
1995-05-18 11:00:09 +02:00
|
|
|
monetary messages collate numeric
|
|
|
|
locale-modules := ctypedump
|
1996-01-08 23:44:45 +01:00
|
|
|
lib-modules := locfile-hash xmalloc
|
1995-05-18 11:00:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
GPERF = gperf
|
|
|
|
GPERFFLAGS = -acCgopt -k1,2,5,$$
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
include ../Rules
|
1995-05-18 11:00:09 +02:00
|
|
|
|
|
|
|
keyword.h: keyword.gperf
|
|
|
|
$(GPERF) $(GPERFFLAGS) $< > $@.new
|
|
|
|
mv -f $@.new $@
|
|
|
|
|
|
|
|
$(objpfx)localedef: $(localedef-modules:%=$(objpfx)%.o)
|
|
|
|
$(objpfx)locale: $(locale-modules:%=$(objpfx)%.o)
|
|
|
|
$(objpfx)localedef $(objpfx)locale: $(lib-modules:%=$(objpfx)%.o)
|
|
|
|
|
|
|
|
CPPFLAGS += -DLOCALE_PATH='"$(localedir)"' -DCHARMAP_PATH='"$(nlsdir)/charmap"'
|