diff options
author | Scott Beamer <sbeamer@ucsc.edu> | 2019-05-01 22:05:53 -0700 |
---|---|---|
committer | Scott Beamer <sbeamer@ucsc.edu> | 2019-05-01 22:05:53 -0700 |
commit | d76f6b24fe80f8e5e0d046f0d6a707080aaeeb30 (patch) | |
tree | ed3e28651ec5e730cd9b7b00c988869462a1ccf3 /Makefile.in | |
parent | 69a8b5d2cfc54c36c86b8733a1fbcdffe9811a94 (diff) | |
download | spike-d76f6b24fe80f8e5e0d046f0d6a707080aaeeb30.zip spike-d76f6b24fe80f8e5e0d046f0d6a707080aaeeb30.tar.gz spike-d76f6b24fe80f8e5e0d046f0d6a707080aaeeb30.tar.bz2 |
simplify flags with ar to improve bsd ar compatability
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 43a28b2..ee92e6e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -211,7 +211,7 @@ $(2)_lib_libnames := $$(patsubst %, lib%.a, $$($(2)_lib_libs)) $(2)_lib_libarg := $$(patsubst %, -l%, $$($(2)_lib_libs)) lib$(1).a : $$($(2)_objs) $$($(2)_c_objs) $$($(2)_lib_libnames) - $(AR) rcs -o $$@ $$^ + $(AR) rcs $$@ $$^ $(2)_junk += lib$(1).a |