summaryrefslogtreecommitdiff
path: root/Makefile.embed
Commit message (Collapse)AuthorAgeFilesLines
* Fix warnings in Makefile.embedRussell Belfer2013-09-231-1/+1
|
* When building with MINGW, specify `__USE_MINGW_ANSI_STDIO`.Arthur Schreiber2013-07-311-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-compilingArthur Schreiber2013-07-251-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 MakefileVicent Marti2012-11-131-1/+1
|
* Fix Makefile.embed to build src/sha1/*.cScott J. Goldman2012-10-231-1/+1
|
* More Makefile.embed cleanupsScott J. Goldman2012-06-201-3/+4
| | | | Don't need unix/*.c for windows, don't need wildcard for regex.c
* Fix Makefile.emebed for mingw32Scott J. Goldman2012-06-191-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 Mitchener2012-05-191-2/+2
|
* Build xdiff as well in Makefile.embed.Bruce Mitchener2012-05-191-1/+1
|
* makefile: Define _GNU_SOURCE in the embed mkfileVicent Martí2012-02-091-1/+1
|
* Add src/transports to Makefile sourcesHargobind S. Khalsa2011-10-131-1/+1
|
* Update Makefile.embed with http-parser dependencyHargobind S. Khalsa2011-10-131-2/+2
|
* build: Add simple Makefile for embedding the libraryVicent Marti2011-07-061-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.