Commit 8e1742ab1358dd8de7efe0f6ceb94eb28ac33f87

Bruce Mitchener 2012-05-19T18:06:19

Allow passing additional defines and cflags to Makefile.embed.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/Makefile.embed b/Makefile.embed
index 8c26e77..65f13b9 100644
--- a/Makefile.embed
+++ b/Makefile.embed
@@ -6,8 +6,8 @@ LIBNAME=libgit2.a
 
 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
+DEFINES= $(INCLUDES) -DNO_VIZ -DSTDC -DNO_GZIP -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE $(EXTRA_DEFINES)
+CFLAGS= -g $(DEFINES) -Wall -Wextra -fPIC -O2 $(EXTRA_CFLAGS)
 
 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))