summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2011-10-13 18:08:19 -0700
committerVicent Martí <tanoku@gmail.com>2011-10-13 18:08:19 -0700
commit1776f5ab495a5748e28685da1f6da1c298cb0273 (patch)
treee50eaf74d530e9302be5bd16f37c17de85754e66
parentb7e1dd1603def3bce370d7d3fa03778999623033 (diff)
parentd42eff03443090dddc128ca50c45eaa3b46f3aa9 (diff)
downloadlibgit2-1776f5ab495a5748e28685da1f6da1c298cb0273.tar.gz
Merge pull request #457 from khalsah/makefile-fix
Update Makefile.embed with http-parser dependency
-rw-r--r--Makefile.embed4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.embed b/Makefile.embed
index fec090fa7..83dc281b4 100644
--- a/Makefile.embed
+++ b/Makefile.embed
@@ -4,12 +4,12 @@ AR=ar cq
RANLIB=ranlib
LIBNAME=libgit2.a
-INCLUDES= -I. -Isrc -Iinclude -Ideps/zlib
+INCLUDES= -I. -Isrc -Iinclude -Ideps/http-parser -Ideps/zlib
DEFINES= $(INCLUDES) -DNO_VIZ -DSTDC -DNO_GZIP -D_FILE_OFFSET_BITS=64
CFLAGS= -g $(DEFINES) -Wall -Wextra -fPIC -O2
-SRCS = $(wildcard src/*.c) $(wildcard src/unix/*.c) $(wildcard deps/zlib/*.c)
+SRCS = $(wildcard src/*.c) $(wildcard src/transports/*.c) $(wildcard src/unix/*.c) $(wildcard deps/http-parser/*.c) $(wildcard deps/zlib/*.c)
OBJS = $(patsubst %.c,%.o,$(SRCS))
%.c.o: