diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2009-01-02 02:01:19 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2009-01-02 02:01:19 -0500 |
commit | dfae7cc51e19e1ca4aa857bf858e7e0ad4fa9ce1 (patch) | |
tree | b60b22b24df118d09bfa7b7e908a6ed74e165d7d /WWW/Library/Implementation/makefile.in | |
parent | 1928ffc4107112416223241f38b9c89f1620503f (diff) | |
download | lynx-snapshots-dfae7cc51e19e1ca4aa857bf858e7e0ad4fa9ce1.tar.gz |
snapshot of project "lynx", label v2-8-7dev_12a
Diffstat (limited to 'WWW/Library/Implementation/makefile.in')
-rw-r--r-- | WWW/Library/Implementation/makefile.in | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/WWW/Library/Implementation/makefile.in b/WWW/Library/Implementation/makefile.in index dc8d55d7..62a5a4f8 100644 --- a/WWW/Library/Implementation/makefile.in +++ b/WWW/Library/Implementation/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.19 2008/09/17 01:14:02 tom Exp $ +# $LynxId: makefile.in,v 1.20 2009/01/02 00:52:08 tom Exp $ # Make WWW under unix for a.n.other unix system (bsd) # Use this as a template @@ -22,6 +22,11 @@ DEFS = @DEFS@ EXTRA_CPPFLAGS = @EXTRA_CPPFLAGS@ CPPFLAGS = @CPPFLAGS@ +AR = @AR@ +ARFLAGS = @ARFLAGS@ + +RANLIB = @RANLIB@ + o = .@OBJEXT@ x = @EXEEXT@ @@ -58,8 +63,6 @@ VC = 2.14 # If this env var is set to something else Some makes will use that instead SHELL = @CONFIG_SHELL@ -RANLIB = @RANLIB@ - # .h files are distributed but originally are made from the # self-documenting hypertext files. @@ -170,7 +173,7 @@ depend : # On SGI, ranlib is unnecessary and does not exist so we ignore errors # for that step $(LOB)/libwww.a : $(COMMON) - @AR@ @AR_OPTS@ $(LOB)/libwww.a $(COMMON) + $(AR) $(ARFLAGS) $(LOB)/libwww.a $(COMMON) -$(RANLIB) $(LOB)/libwww.a # Clean up everything generatable except final products |