diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2012-05-19 18:05:56 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2012-05-19 18:05:56 +0700 |
commit | 56e1e2bf7005d904df482e45f9008544338f07e9 (patch) | |
tree | dc74b9ac2aa2640a151b1729cd3d08c7e910ea19 /Makefile.embed | |
parent | ad5df35a47d56c3d716d7a56eac4aeb611987c11 (diff) | |
download | libgit2-56e1e2bf7005d904df482e45f9008544338f07e9.tar.gz |
Build xdiff as well in Makefile.embed.
Diffstat (limited to 'Makefile.embed')
-rw-r--r-- | Makefile.embed | 2 |
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: |