Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Makefile: fix config.guess install | Tony Theodore | 2013-09-12 | 1 | -2/+2 |
| | |||||
* | Makefile: move config.guess install from binutils | Tony Theodore | 2013-09-12 | 1 | -0/+4 |
| | |||||
* | Makefile: don't exit on failed download (failed checksum will exit) | Tony Theodore | 2013-09-07 | 1 | -1/+4 |
| | |||||
* | Makefile: add explicit failed download message | Tony Theodore | 2013-08-27 | 1 | -2/+3 |
| | |||||
* | Makefile: use cut instead of sed for env var list | Tony Theodore | 2013-08-27 | 1 | -1/+1 |
| | |||||
* | Makefile: add proxies to env whitelist | Tony Theodore | 2013-08-27 | 1 | -1/+1 |
| | |||||
* | Makefile: remove extraneous backslash | Tony Theodore | 2013-08-25 | 1 | -1/+1 |
| | |||||
* | Makefile: add build-requirements goal for optional native builds | Tony Theodore | 2013-08-25 | 1 | -2/+7 |
| | |||||
* | Merge pull request #228 from tonytheodore/deps | Tony Theodore | 2013-08-25 | 1 | -1/+60 |
|\ | | | | | Makefile and docs: add EXCLUDE_PKGS and show*deps* functionality | ||||
| * | Makefile and docs: add EXCLUDE_PKGS and show*deps* functionality | Tony Theodore | 2013-08-20 | 1 | -1/+60 |
| | | |||||
* | | Makefile: remove TARGET dependencies on BUILD - keep optional for time being | Tony Theodore | 2013-08-25 | 1 | -3/+0 |
| | | |||||
* | | Makefile: add BUILD variable and add to target loop and PATH | Tony Theodore | 2013-08-25 | 1 | -1/+5 |
|/ | |||||
* | Makefile: use a minimal whitelist of env vars | Tony Theodore | 2013-08-12 | 1 | -6/+3 |
| | |||||
* | Makefile: create marker directories so --touch works on clean tree | Tony Theodore | 2013-08-08 | 1 | -2/+3 |
| | |||||
* | Makefile: add missing separator to find command | Tony Theodore | 2013-08-07 | 1 | -1/+1 |
| | |||||
* | Makefile: add settings.mk to failed log output | Tony Theodore | 2013-08-07 | 1 | -1/+6 |
| | |||||
* | Makefile: unexport various *TARGET* variables | Tony Theodore | 2013-08-07 | 1 | -1/+1 |
| | |||||
* | Makefile: add target-specific dependencies to download-foo rules also | Tony Theodore | 2013-08-06 | 1 | -1/+1 |
| | |||||
* | Makefile: add target-specific dependencies | Tony Theodore | 2013-08-06 | 1 | -1/+1 |
| | |||||
* | remove optional native builds for autoconf automake cmake libtool | Tony Theodore | 2013-07-26 | 1 | -1/+1 |
| | | | | these need more testing and proper multi-target support | ||||
* | Move package versions from index.html back into the src/*.mk files | Volker Grabsch | 2013-07-21 | 1 | -7/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | Most of the automatic conversion was done using the following Python script: import os import re pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk')) with open('index.html', 'rb') as f: index = f.read() pkgs_index = re.findall('<td class="package">([^<]*)</td>', index) assert pkgs_index == pkgs versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index)) assert sorted(versions.keys()) == pkgs for pkg in pkgs: version = versions[pkg] with open('src/' + pkg + '.mk', 'rb') as f: mk = f.read() checksumpos = mk.index('\n$(PKG)_CHECKSUM ') versionline = '\n$(PKG)_VERSION := %(version)s' % {'version': version} newmk = mk[:checksumpos] + versionline + mk[checksumpos:] with open('src/' + pkg + '.mk', 'wb') as f: f.write(newmk) | ||||
* | Replace unneeded "*-package" IDs in the docs | Volker Grabsch | 2013-07-21 | 1 | -1/+1 |
| | |||||
* | add optional native automake and autoconf | Tony Theodore | 2013-07-17 | 1 | -1/+1 |
| | |||||
* | Makefile: log OSX software version | Tony Theodore | 2013-07-14 | 1 | -1/+1 |
| | |||||
* | Makefile and docs: remove yasm requirement | Tony Theodore | 2013-07-13 | 1 | -1/+1 |
| | |||||
* | Makefile: add extra logging details | Tony Theodore | 2013-07-07 | 1 | -0/+4 |
| | |||||
* | Makefile: add $(DATE) portability variable | Tony Theodore | 2013-06-27 | 1 | -0/+1 |
| | |||||
* | Makefile: add MXE_TARGET_LIST variable | Tony Theodore | 2013-06-23 | 1 | -1/+2 |
| | |||||
* | Makefile: add new DEFAULT_MAX_JOBS variable | Tony Theodore | 2013-06-19 | 1 | -1/+3 |
| | |||||
* | Makefile: add g++ to requirements check | Tony Theodore | 2013-06-04 | 1 | -1/+1 |
| | |||||
* | unset CONFIG_SITE | Mark Brand | 2013-06-02 | 1 | -0/+1 |
| | |||||
* | Makefile: add target loop, serialise targets, and update settings file | Tony Theodore | 2013-06-01 | 1 | -28/+66 |
| | |||||
* | Makefile: change order of ignore filter to allow patterns | Tony Theodore | 2013-05-22 | 1 | -1/+1 |
| | |||||
* | Makefile: default JOBS to number of CPUs | Tony Theodore | 2013-05-12 | 1 | -1/+1 |
| | |||||
* | Makefile: fix indentation of missing url check | Tony Theodore | 2013-05-05 | 1 | -2/+2 |
| | |||||
* | Makefile: fix indentation of missing url check | Tony Theodore | 2013-05-05 | 1 | -13/+13 |
| | |||||
* | Makefile: add error messages for undefined package or url | Tony Theodore | 2013-05-05 | 1 | -3/+7 |
| | |||||
* | Makefile: alert when an older verison is found during update | Tony Theodore | 2013-03-31 | 1 | -1/+3 |
| | |||||
* | Complete adding of GNU sort | Ulrich Klauer | 2013-03-29 | 1 | -1/+1 |
| | | | | | Mention GNU Coreutils in the requirements section and check that $(SORT) is available. | ||||
* | Makefile: only update to latest version and print macro for failed updates | Tony Theodore | 2013-03-26 | 1 | -3/+4 |
| | |||||
* | add portability variable for gnu sort and add coreutils to requirements | Tony Theodore | 2013-03-26 | 1 | -0/+1 |
| | |||||
* | Makefile: continue after errors in update macros | Tony Theodore | 2013-03-25 | 1 | -1/+1 |
| | |||||
* | Makefile: add sample default rule when creating settings.mk | Tony Theodore | 2012-12-23 | 1 | -1/+2 |
| | |||||
* | Makefile: correctly escape urls for amazon services | Tony Theodore | 2012-12-05 | 1 | -4/+7 |
| | |||||
* | Merge pull request #81 from tonytheodore/glib-optional-native | Volker Grabsch | 2012-09-21 | 1 | -0/+1 |
|\ | | | | | Review: Build glib native tools only if they're not installed | ||||
| * | Makefile: pass PKG variable to build rules | Tony Theodore | 2012-09-18 | 1 | -0/+1 |
| | | | | | | | | | | | | See here for explanation: http://www.gnu.org/software/make/manual/make.html#Target_002dspecific | ||||
* | | fix spurious PKGS targets | Mark Brand | 2012-09-18 | 1 | -1/+1 |
|/ | | | | | | Follow-up to d711e21f6aed7ad084b7a6bb790bf24bc676bb29 which mentioned gettext which accidentally was seen as a target for via PKGS by Makefile. | ||||
* | add package cdn fallback | Tony Theodore | 2012-09-16 | 1 | -3/+8 |
| | |||||
* | cleanup after failed download | Tony Theodore | 2012-09-16 | 1 | -1/+1 |
| | |||||
* | fix bracketing of wget calls | Tony Theodore | 2012-09-16 | 1 | -2/+2 |
| |