diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-02-18 17:59:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-02-18 17:59:16 +0000 |
commit | fb5663ca863c5b970cdb521aa4570ef9f649745b (patch) | |
tree | 7878e40f9228929450d489a43308cd84e3d454b9 /iconv/Makefile | |
parent | da8324650d7e867028d1d5e9bcaed962bc6b2322 (diff) | |
download | glibc-fb5663ca863c5b970cdb521aa4570ef9f649745b.tar.gz glibc-fb5663ca863c5b970cdb521aa4570ef9f649745b.tar.xz glibc-fb5663ca863c5b970cdb521aa4570ef9f649745b.zip |
Update.
1998-02-18 17:57 Ulrich Drepper <drepper@cygnus.com> * iconv/Makefile: Add rules to build and install iconv program. * iconv/iconv_prog.c: New file. 1998-02-18 16:34 H.J. Lu <hjl@gnu.org> * elf/dlsym.c (dlsym_doit): Fix scope and skip maps for _dl_lookup_symbol_skip call. * elf/dlvsym.c (dlvsym_doit): Likewise. 1998-02-18 Ulrich Drepper <drepper@cygnus.com> * libio/iovsscanf.c: Do not include errno.h.
Diffstat (limited to 'iconv/Makefile')
-rw-r--r-- | iconv/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/iconv/Makefile b/iconv/Makefile index 5e5f74878a..917ea39ce9 100644 --- a/iconv/Makefile +++ b/iconv/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997 Free Software Foundation, Inc. +# Copyright (C) 1997, 1998 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -27,6 +27,13 @@ routines = iconv_open iconv iconv_close \ gconv_dl gconv_builtin gconv_simple distribute = gconv_builtin.h +others = iconv_prog + CFLAGS-gconv_conf.c = -DGCONV_PATH='"$(gconvdir)"' include ../Rules + +subdir_install: $(inst_bindir)iconv + +$(inst_bindir)iconv: $(objpfx)iconv_prog + $(do-install) |