diff options
author | Vicent Martà <tanoku@gmail.com> | 2011-10-13 18:08:19 -0700 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2011-10-13 18:08:19 -0700 |
commit | 1776f5ab495a5748e28685da1f6da1c298cb0273 (patch) | |
tree | e50eaf74d530e9302be5bd16f37c17de85754e66 | |
parent | b7e1dd1603def3bce370d7d3fa03778999623033 (diff) | |
parent | d42eff03443090dddc128ca50c45eaa3b46f3aa9 (diff) | |
download | libgit2-1776f5ab495a5748e28685da1f6da1c298cb0273.tar.gz |
Merge pull request #457 from khalsah/makefile-fix
Update Makefile.embed with http-parser dependency
-rw-r--r-- | Makefile.embed | 4 |
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: |