summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-10-09 12:01:38 -0700
committerPixel <pixel@nobis-crew.org>2011-10-09 12:01:38 -0700
commit2367226978def1b3ab9d0a64996b1b938a5b27f2 (patch)
tree50942c4e7b1e82c062ac0b53cfc826e71d88980b /Makefile
parent42a07d9445f6d7d579ecb89cc1912c3abf413a6e (diff)
Adding libeio to the compilation blurb.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 15 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 59fa941..a5463d3 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,8 @@ LD = g++
AS = gcc -c
AR = ar rcs
+CPPFLAGS += -DPIC -fPIC
+LDFLAGS += -fPIC
ifeq ($(DEBUG),)
CPPFLAGS += -O3
else
@@ -19,7 +21,10 @@ CPPFLAGS += -g
LDFLAGS += -g
endif
+INCLUDES = includes libcoro libeio
+
ifeq ($(SYSTEM),Darwin)
+ LIBS += pthread
CONFIG_H = darwin-config.h
ARCH_FLAGS = -arch i386
LIBS = -liconv
@@ -33,21 +38,22 @@ ifeq ($(SYSTEM),Darwin)
AS = i686-apple-darwin-as -arch i386
endif
else
+ifeq ($(SYSTEM),Linux)
+ LIBS += pthread
CONFIG_H = linux-config.h
ARCH_FLAGS = -march=i686 -m32
ASFLAGS = -march=i686 --32
STRIP = strip --strip-unneeded
endif
+endif
-INCLUDES = -Iincludes -Ilibcoro
-
-CPPFLAGS_NO_ARCH += $(INCLUDES) -fexceptions -Wno-deprecated -imacros $(CONFIG_H)
+CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) -fexceptions -Wno-deprecated -imacros $(CONFIG_H)
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
-LDFLAGS += $(ARCH_FLAGS) $(LIBS)
+LDFLAGS += $(ARCH_FLAGS) $(addprefix -l, $(LIBS))
vpath %.cc src:tests
-vpath %.c libcoro
+vpath %.c libcoro:libeio
BALAU_SOURCES = \
BString.cc \
@@ -60,6 +66,9 @@ TaskMan.cc \
LIBCORO_SOURCES = \
coro.c \
+LIBEIO_SOURCES = \
+eio.c \
+
TEST_SOURCES = \
test-Sanity.cc \
test-String.cc \
@@ -69,7 +78,7 @@ LIB = libBalau.a
BALAU_OBJECTS = $(addsuffix .o, $(notdir $(basename $(BALAU_SOURCES) $(LIBCORO_SOURCES))))
-WHOLE_SOURCES = $(BALAU_SOURCES) $(LIBCORO_SOURCES) $(TEST_SOURCES)
+WHOLE_SOURCES = $(BALAU_SOURCES) $(LIBCORO_SOURCES) $(LIBEIO_SOURCES) $(TEST_SOURCES)
TESTS = $(addsuffix .bin, $(notdir $(basename $(TEST_SOURCES))))
ALL_OBJECTS = $(addsuffix .o, $(notdir $(basename $(WHOLE_SOURCES))))