Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2012-05-19 15:05:56 +0400
committerBruce Mitchener <bruce.mitchener@gmail.com>2012-05-19 15:05:56 +0400
commit56e1e2bf7005d904df482e45f9008544338f07e9 (patch)
treedc74b9ac2aa2640a151b1729cd3d08c7e910ea19 /Makefile.embed
parentad5df35a47d56c3d716d7a56eac4aeb611987c11 (diff)
Build xdiff as well in Makefile.embed.
Diffstat (limited to 'Makefile.embed')
-rw-r--r--Makefile.embed2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.embed b/Makefile.embed
index fb6b01bee..8c26e7723 100644
--- a/Makefile.embed
+++ b/Makefile.embed
@@ -9,7 +9,7 @@ INCLUDES= -I. -Isrc -Iinclude -Ideps/http-parser -Ideps/zlib
DEFINES= $(INCLUDES) -DNO_VIZ -DSTDC -DNO_GZIP -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
CFLAGS= -g $(DEFINES) -Wall -Wextra -fPIC -O2
-SRCS = $(wildcard src/*.c) $(wildcard src/transports/*.c) $(wildcard src/unix/*.c) $(wildcard deps/http-parser/*.c) $(wildcard deps/zlib/*.c)
+SRCS = $(wildcard src/*.c) $(wildcard src/transports/*.c) $(wildcard src/unix/*.c) $(wildcard src/xdiff/*.c) $(wildcard deps/http-parser/*.c) $(wildcard deps/zlib/*.c)
OBJS = $(patsubst %.c,%.o,$(SRCS))
%.c.o: