aboutsummaryrefslogtreecommitdiffhomepage
path: root/scintilla.am
AgeCommit message (Collapse)AuthorFilesLines
2015-03-02define scintilla.a as a phony targetRobin Haberkorn1-1/+6
when hacking Scintilla, it is useful to recompile it as necessary. Since SciTECO calls the Scintilla/Scinterm Makefile recursively, we do not know the libraries dependencies in SciTECO's build system. It therefore makes sense to define externally built targets as phony, so the recursive make is called every time scintilla.a is required. If scintilla.a is already up to date, the additional recursive make call won't hurt.
2014-08-22automatically build Scintilla as part of SciTECO's build system:Robin Haberkorn1-0/+22
this should simplify building SciTECO for new users * compiler and archiver are passed down from Autoconf, so cross-compiling should work transparently * `make clean` will also clean the Scintilla source tree * there is no longer any need for "source bundles" as tar balls also contain Scintilla/Scinterm now * building from Git is not much more difficult than building from a tar ball * The versions of Scintilla/Scinterm embedded as submodules already contain all the patches necessary (currently none are necessary), so there's no need to have patch files in the repository * INSTALL instructions have been rewritten * the --with-scintilla and --with-scinterm site-config options have been kept. But they should be rarely necessary now.