Makefile.embed


Log

Author Commit Date CI Message
Russell Belfer a3c2d916 2013-09-23T21:59:32 Fix warnings in Makefile.embed
Arthur Schreiber a6837b5f 2013-07-31T19:13:35 When building with MINGW, specify `__USE_MINGW_ANSI_STDIO`. 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.
Arthur Schreiber 847c6793 2013-07-25T00:26:51 Allow Makefile.embed to be used when cross-compiling 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 ```
Vicent Marti 26227474 2012-11-13T14:05:43 makefile: Fix the builtin Makefile
Scott J. Goldman 308581de 2012-10-23T18:18:19 Fix Makefile.embed to build src/sha1/*.c
Scott J. Goldman e905c1fc 2012-06-20T11:09:35 More Makefile.embed cleanups Don't need unix/*.c for windows, don't need wildcard for regex.c
Scott J. Goldman e96e3be7 2012-06-19T18:08:15 Fix Makefile.emebed for mingw32 otherwise we can't compile the native parts of the rugged gem on Windows
Bruce Mitchener 8e1742ab 2012-05-19T18:06:19 Allow passing additional defines and cflags to Makefile.embed.
Bruce Mitchener 56e1e2bf 2012-05-19T18:05:56 Build xdiff as well in Makefile.embed.
Vicent Martí 9b8d5608 2012-02-09T01:18:26 makefile: Define _GNU_SOURCE in the embed mkfile
Hargobind S. Khalsa d42eff03 2011-10-13T19:05:03 Add src/transports to Makefile sources
Hargobind S. Khalsa 7fcddeb6 2011-10-13T18:36:43 Update Makefile.embed with http-parser dependency
Vicent Marti e1bf24c8 2011-07-06T02:14:30 build: Add simple Makefile for embedding the library 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.