diff options
author | Van de Bugger <unknown> | 2016-08-11 15:01:54 +1000 |
---|---|---|
committer | Van de Bugger <unknown> | 2016-08-11 15:01:54 +1000 |
commit | 23e35f8bfb6bea4db89828c8f8732697d9e8d8f1 (patch) | |
tree | b79436c07a1676ce926bb8e356d2b27e2c414597 | |
parent | 46aebe9a9cc1f55c32cbfe5b9d7c70ed99597da5 (diff) | |
download | scintilla-mirror-23e35f8bfb6bea4db89828c8f8732697d9e8d8f1.tar.gz |
Bug [#1846]. Allow setting ARFLAGS for make.
-rw-r--r-- | gtk/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/makefile b/gtk/makefile index f75d5ba5e..f2bf16c66 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -15,6 +15,7 @@ CC = clang SANITIZE = address #SANITIZE = undefined endif +ARFLAGS = rc RANLIB = touch ifdef GTK3 @@ -113,7 +114,7 @@ $(COMPLIB): Accessor.o CharacterSet.o LexerBase.o LexerModule.o LexerSimple.o St KeyMap.o LineMarker.o PositionCache.o ScintillaGTK.o CellBuffer.o CharacterCategory.o ViewStyle.o \ RESearch.o RunStyles.o Selection.o Style.o Indicator.o AutoComplete.o UniConversion.o XPM.o \ $(MARSHALLER) $(LEXOBJS) - $(AR) rc $@ $^ + $(AR) $(ARFLAGS) $@ $^ $(RANLIB) $@ # Automatically generate header dependencies with "make deps" |