Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix warnings in Makefile.embed | Russell Belfer | 2013-09-23 | 1 | -1/+1 |
| | |||||
* | When building with MINGW, specify `__USE_MINGW_ANSI_STDIO`. | Arthur Schreiber | 2013-07-31 | 1 | -6/+6 |
| | | | This option is already present in the CMake config, but was missing from `Makefile.embed` and would cause all kinds of weird failures when compiling rugged on windows with the ruby devkit. | ||||
* | Allow Makefile.embed to be used when cross-compiling | Arthur Schreiber | 2013-07-25 | 1 | -5/+23 |
| | | | | | | | This allows libgit2 to be cross-compiled (e.g. when building native rugged binaries for windows from Linux or OS X). ``` CROSS_COMPILE=i686-w64-mingw32 make -f Makefile.embed ``` | ||||
* | makefile: Fix the builtin Makefile | Vicent Marti | 2012-11-13 | 1 | -1/+1 |
| | |||||
* | Fix Makefile.embed to build src/sha1/*.c | Scott J. Goldman | 2012-10-23 | 1 | -1/+1 |
| | |||||
* | More Makefile.embed cleanups | Scott J. Goldman | 2012-06-20 | 1 | -3/+4 |
| | | | | Don't need unix/*.c for windows, don't need wildcard for regex.c | ||||
* | Fix Makefile.emebed for mingw32 | Scott J. Goldman | 2012-06-19 | 1 | -2/+17 |
| | | | | otherwise we can't compile the native parts of the rugged gem on Windows | ||||
* | Allow passing additional defines and cflags to Makefile.embed. | Bruce Mitchener | 2012-05-19 | 1 | -2/+2 |
| | |||||
* | Build xdiff as well in Makefile.embed. | Bruce Mitchener | 2012-05-19 | 1 | -1/+1 |
| | |||||
* | makefile: Define _GNU_SOURCE in the embed mkfile | Vicent Martà | 2012-02-09 | 1 | -1/+1 |
| | |||||
* | Add src/transports to Makefile sources | Hargobind S. Khalsa | 2011-10-13 | 1 | -1/+1 |
| | |||||
* | Update Makefile.embed with http-parser dependency | Hargobind S. Khalsa | 2011-10-13 | 1 | -2/+2 |
| | |||||
* | build: Add simple Makefile for embedding the library | Vicent Marti | 2011-07-06 | 1 | -0/+26 |
Run `make -f Makefile.embed` to get a `libgit2.a` with no dependencies and no configuration on any Unix-like system. The generated library can be linked with any piece of software without licensing issues. Have fun. |