summaryrefslogtreecommitdiff
path: root/Makefile.build
Commit message (Collapse)AuthorAgeFilesLines
* src: move debug agent from deps/ to src/Ben Noordhuis2014-11-031-1/+0
| | | | | | There is not much point in keeping it a separate project because it doesn't build standalone, plus it makes applying changes to core more difficult because of the implicit dependency on header files in src/.
* build: set up basic multi-arch/mode buildBen Noordhuis2014-10-161-10/+17
| | | | | | | | | Make `make -f Makefile.build ia32.release x64.debug` work. It's not perfect yet: it requires running `./configure` first and the generated `config.gypi` is shared across builds. PR-URL: https://github.com/node-forward/node/pull/24 Reviewed-By: Fedor Indutny <fedor@indutny.com>
* build: copy V8 makefile to top-level directoryBen Noordhuis2014-10-161-0/+493
Will be used as the template for a multi-arch, multi-mode build system. PR-URL: https://github.com/node-forward/node/pull/24 Reviewed-By: Fedor Indutny <fedor@indutny.com>