diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-10-12 10:13:16 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-10-13 16:31:36 +0300 |
commit | 88f9251e3183646994cf5d584916eac0176251b0 (patch) | |
tree | 9e970793ffdc5c32c7d2c0d335db71c72704caa0 /contrib/scintilla.am | |
parent | da1a6507a826acbdfc2f492027efe0c48cc790b6 (diff) | |
download | sciteco-88f9251e3183646994cf5d584916eac0176251b0.tar.gz |
only build Scintilla and Lexilla static libraries
* saves some build time
* fixes Win32 Gtk+ builds
Diffstat (limited to 'contrib/scintilla.am')
-rw-r--r-- | contrib/scintilla.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/scintilla.am b/contrib/scintilla.am index cd14d4f..0a0334f 100644 --- a/contrib/scintilla.am +++ b/contrib/scintilla.am @@ -39,7 +39,7 @@ MAKE_SCINTILLA += CC='@CC@' CXX='@CXX@' \ # make call does not hurt. .PHONY: make-scintilla make-scintilla: - $(MAKE_SCINTILLA) + $(MAKE_SCINTILLA) ../bin/scintilla.a # scintilla.a itself is not phony. # This avoids unnecessary relinking if it is @@ -59,7 +59,7 @@ MAKE_LEXILLA = $(MAKE) -C @LEXILLA_PATH@/src \ .PHONY: make-lexilla make-lexilla: - $(MAKE_LEXILLA) + $(MAKE_LEXILLA) ../bin/liblexilla.a @LEXILLA_PATH@/bin/liblexilla.a : make-lexilla; |