summaryrefslogtreecommitdiff
path: root/Makefile.embed
diff options
context:
space:
mode:
authorHargobind S. Khalsa <khalsah@gmail.com>2011-10-13 18:36:43 -0600
committerHargobind S. Khalsa <khalsah@gmail.com>2011-10-13 18:44:14 -0600
commit7fcddeb68b5135c1be1482c898f3155e242304a6 (patch)
tree4fd06708a8044bb70396da5b0ed699e253eea114 /Makefile.embed
parentb7e1dd1603def3bce370d7d3fa03778999623033 (diff)
downloadlibgit2-7fcddeb68b5135c1be1482c898f3155e242304a6.tar.gz
Update Makefile.embed with http-parser dependency
Diffstat (limited to 'Makefile.embed')
-rw-r--r--Makefile.embed4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.embed b/Makefile.embed
index fec090fa7..debe356cc 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/unix/*.c) $(wildcard deps/http-parser/*.c) $(wildcard deps/zlib/*.c)
OBJS = $(patsubst %.c,%.o,$(SRCS))
%.c.o: