summaryrefslogtreecommitdiffstats
path: root/src/ocaml-core.mk
Commit message (Collapse)AuthorAgeFilesLines
* use $(TEST_FILE) instead of $(2).c and otherBoris Nagaev2016-07-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following script was applied: set -xue find src/ plugins/ -name '*.mk' -type f > mks # special cases for test file: # ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated sed 's@$(2).c@$(PWD)/src/$(PKG)-test.c@g' -i \ src/{boost,freeimage,hdf5,lapack,sdl,sdl_image,sdl_sound}.mk sed 's@$(2).f@$(PWD)/src/$(PKG)-test.f@g' -i src/lapack.mk sed 's@$(PWD)/$(2).pro@$(PWD)/src/$(PKG)-test.pro@g' -i \ src/qt.mk plugins/examples/custom-qt-min/overrides.mk sed 's@$(2)-CMakeLists.txt@$(PWD)/src/$(PKG)-test-CMakeLists.txt@g' \ -i src/{sdl_image,sdl_sound}.mk # check for base in $(ls -d src/*-test* | sed 's@-test.*@@' | sort | uniq --repeated); do ! grep -q '$(2)' "${base}.mk" done # other $(2) sed 's@$(2).cpp@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).cxx@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).c@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).ml@$(TEST_FILE)@g' -i $(cat mks) sed 's@$(2).f@$(TEST_FILE)@g' -i $(cat mks) # check ! grep '$(2)' $(cat mks) See https://github.com/mxe/mxe/issues/1452
* luajit ocaml-core: use BUILD_CC variableTony Theodore2015-09-301-1/+1
|
* many packages: explicitly disable shared buildsTony Theodore2014-04-061-0/+2
| | | | closes #369
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | 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)
* Fix redirects of ocaml-core to ocaml-nativeVolker Grabsch2013-07-211-7/+7
|
* Fix initial comments of all src/*.mk filesVolker Grabsch2013-07-211-2/+2
|
* various packages: enable/disable mingw-w64 buildsTony Theodore2013-06-011-0/+2
|
* reorganise native and cross tools between ocaml-native and ocaml-corewilliam32013-04-131-8/+2
|
* update to ocaml 4.00.1William2013-01-141-1/+1
|
* package ocaml-core: add explicit -j 1 to prevent random build failuresTony Theodore2012-12-211-11/+11
|
* package ocaml-core: add prefixed ocamlyaccTony Theodore2012-12-141-2/+4
|
* add prefixed-ocamllex to usr/bin in ocaml-coreWilliam2012-12-131-4/+1
|
* package ocaml-core: add explicit -j 1 to prevent random build failuresTony Theodore2012-12-121-4/+4
|
* ocaml packages: fix inconsistent spacingTony Theodore2012-12-091-7/+6
|
* run make cleanup-styleTony Theodore2012-12-051-109/+109
|
* add package ocaml-coreWilliam2012-10-301-0/+128
|
* Revert "add package ocaml-core"Mark Brand2012-09-181-151/+0
| | | | This reverts commit f7e8a7a5f673b739fdb7631de24a23086c65eae2.
* add package ocaml-coreWilliam2012-08-231-0/+151