summarylogtreecommitdiffstats
path: root/0002-dist-libev.diff
blob: 1c966772ede8dd57b0d91849a405c154c402a4ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 
 all: libfiber.so bin/echo_server runtests
 
-VPATH += example src test submodules/libev
+VPATH += example src test
 
 CFILES = \
     fiber_context.c \
@@ -49,7 +49,7 @@ ifeq ($(ARCH),x86)
 CFLAGS += -m32 -march=i686 -DARCH_x86
 endif
 
-CFLAGS += -pthread -Wall -Iinclude -Isubmodules/libev -D_REENTRANT -ggdb -O3
+CFLAGS += -pthread -Wall -Iinclude -D_REENTRANT -ggdb -O3
 
 #don't use split-stack on gcc 4.6 since it doesn't implement getcontext, setcontext, or makecontext
 GCC46 = $(shell $(CC) -v 2>&1 | grep "gcc.*4.6" > /dev/null; echo $$?)