diff options
author | H.J. Lu <hjl@gnu.org> | 1998-01-13 20:31:57 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-13 13:31:57 -0700 |
commit | 09f6348b8b0037aecf6ef857e2c2aec56dec65f9 (patch) | |
tree | 9f7e35d5a30cdaadc2942146559498d8449377aa /texinfo/libtxi | |
parent | af2de9e61f4eae3205f7dab8711560ff1e2248ad (diff) | |
download | gcc-09f6348b8b0037aecf6ef857e2c2aec56dec65f9.zip gcc-09f6348b8b0037aecf6ef857e2c2aec56dec65f9.tar.gz gcc-09f6348b8b0037aecf6ef857e2c2aec56dec65f9.tar.bz2 |
* libtxi/Makefile.in (AR_FLAGS): Defined as "rc".
From-SVN: r17337
Diffstat (limited to 'texinfo/libtxi')
-rw-r--r-- | texinfo/libtxi/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/texinfo/libtxi/Makefile.in b/texinfo/libtxi/Makefile.in index 8ec2485..0dae19f 100644 --- a/texinfo/libtxi/Makefile.in +++ b/texinfo/libtxi/Makefile.in @@ -1,7 +1,7 @@ # Makefile for GNU texinfo/libtxi. -*- Indented-Text -*- # $Id: Makefile.in,v 1.4 1998/01/13 20:31:57 law Exp $ -# Copyright (C) 1993, 96 Free Software Foundation, Inc. +# Copyright (C) 1993, 96, 98 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 @@ -23,6 +23,7 @@ VPATH = @srcdir@ CC = @CC@ AR = ar +AR_FLAGS = rc RANLIB = @RANLIB@ DEFS = @DEFS@ @@ -52,7 +53,7 @@ sub-all: all libtxi.a: $(OBJS) rm -f $@ - $(AR) cq $@ $(OBJS) + $(AR) $(AR_FLAGS) $@ $(OBJS) $(RANLIB) $@ getopt.o: getopt.c getopt.h |