Commit d42eff03443090dddc128ca50c45eaa3b46f3aa9

Hargobind S. Khalsa 2011-10-13T19:05:03

Add src/transports to Makefile sources

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/Makefile.embed b/Makefile.embed
index debe356..83dc281 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
 CFLAGS= -g $(DEFINES) -Wall -Wextra -fPIC -O2
 
-SRCS = $(wildcard src/*.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 deps/http-parser/*.c) $(wildcard deps/zlib/*.c)
 OBJS = $(patsubst %.c,%.o,$(SRCS))
 
 %.c.o: