aboutsummaryrefslogtreecommitdiffstats
path: root/core
AgeCommit message (Collapse)Author
2014-07-31Fix package fetching0.3.0Loïc Hoguin
Two issues got fixed: * The variable name for the package file got changed to PKG_FILE2 to avoid conflicts with the PKG_FILE from previous erlang.mk versions. * The way repositories are fetched changed to fix an issue preventing fetching the package file *and* the repositories on the same invokation.
2014-07-25Strip whitespace around the PROJECT variableLoïc Hoguin
2014-07-25Use $(error ...) for pkg-search targetLoïc Hoguin
2014-07-22Merge branch 'patch-71' of git://github.com/andreineculau/erlang.mkLoïc Hoguin
2014-07-22Improve detection of dependency support for makeAndrei Neculau
2014-07-20Change package index file format and deps handlingLoïc Hoguin
This commit adds two columns to the package index file: the method used to retrieve the dependency (only git supported at this point) and the preferred version (a commit or equivalent in the case of git). Now that all the necessary information is in the package index file, the dep_* lines become optional. It is possible to fetch dependencies by just listing it in the DEPS variable, for example this would fetch both cowboy and jsx: DEPS = cowboy jsx The dep_* line can be used to override the defaults. It now takes three values, the method used to retrieve the dependency, the repository URL and the preferred version. The only change from before is the first value being added.
2014-06-10fixed problem of fetching package file.Andrzej Sliwa
2014-05-30Quote module names when producing project.appSina Samavati
2014-05-28Change GitHub raw file URLTyler Margison
GitHub issues a 301 Moved Permanently response on all calls to `https://raw.github.com`, which redirects to `https://raw.githubusercontent.com`.
2014-05-28Cut erlang.mk into many small componentsLoïc Hoguin
* The build.config says what gets into the generated erlang.mk. * The default erlang.mk in the repository hasn't changed yet. * Clean targets were separated into "clean" and "distclean". * The "help" target was added to display some help message. I probably broke a couple things...