1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
ifeq ($(SYSTEM),)
SYSTEM = $(shell uname | cut -f 1 -d_)
endif
TRUESYSTEM = $(shell uname)
MACHINE = $(shell uname -m)
DISTRIB = $(shell cat /etc/issue | cut -f 1 -d\ | head -1)
CC = gcc
CXX = g++
LD = g++
AS = gcc -c
AR = ar rcs
BINEXT = bin
CPPFLAGS += -fno-strict-aliasing
ifeq ($(DEBUG),)
CPPFLAGS += -O3 -DNDEBUG
else
CPPFLAGS += -g -DDEBUG
LDFLAGS += -g
endif
INCLUDES = includes libcoro libeio libev
LIBS =
ifeq ($(SYSTEM),Darwin)
CPPFLAGS += -fPIC
LDFLAGS += -fPIC
LIBS += pthread iconv
CONFIG_H = darwin-config.h
ARCH_FLAGS = -arch i386
LD = g++ -arch i386
STRIP = strip -x
ifeq ($(TRUESYSTEM),Linux)
CROSSCOMPILE = true
ARCH_FLAGS =
CC = i686-apple-darwin9-gcc
CXX = i686-apple-darwin9-g++
LD = i686-apple-darwin9-g++ -arch i386 -mmacosx-version-min=10.5
STRIP = i686-apple-darwin9-strip -x
AS = i686-apple-darwin9-as -arch i386
AR = i686-apple-darwin9-ar rcs
endif
endif
ifeq ($(SYSTEM),MINGW32)
BINEXT = exe
COMPILE_PTHREADS = true
CONFIG_H = mingw32-config.h
INCLUDES += win32/iconv win32/pthreads-win32
LIBS += ws2_32
ifeq ($(TRUESYSTEM),Linux)
ifeq ($(DISTRIB),CentOS)
CROSSCOMPILE = true
CC = i686-pc-mingw32-gcc
CXX = i686-pc-mingw32-g++
LD = i686-pc-mingw32-g++
AS = i686-pc-mingw32-gcc -c
STRIP = i686-pc-mingw32-strip --strip-unneeded
WINDRES = i686-pc-mingw32-windres
AR = i686-pc-mingw32-ar rcs
else
CROSSCOMPILE = true
CC = i586-mingw32msvc-gcc
CXX = i586-mingw32msvc-g++
LD = i586-mingw32msvc-g++
AS = i586-mingw32msvc-gcc -c
STRIP = i586-mingw32msvc-strip --strip-unneeded
WINDRES = i586-mingw32msvc-windres
AR = i586-mingw32msvc-ar rcs
endif
endif
ifeq ($(TRUESYSTEM),Darwin)
CROSSCOMPILE = true
CC = i386-mingw32-gcc
CXX = i386-mingw32-g++
LD = i386-mingw32-g++
AS = i386-mingw32-gcc -c
STRIP = i386-mingw32-strip --strip-unneeded
WINDRES = i386-mingw32-windres
AR = i386-mingw32-ar rcs
endif
endif
ifeq ($(SYSTEM),Linux)
CPPFLAGS += -fPIC
LDFLAGS += -fPIC
LIBS += pthread
CONFIG_H = linux-config.h
ARCH_FLAGS = -march=i686 -m32
ASFLAGS = -march=i686 --32
STRIP = strip --strip-unneeded
endif
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) -fexceptions -imacros $(CONFIG_H)
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
CXXFLAGS += -Wno-deprecated
LDFLAGS += $(ARCH_FLAGS)
LDLIBS = $(addprefix -l, $(LIBS))
vpath %.cc src:tests
vpath %.c libcoro:libeio:libev:win32/pthreads-win32:win32/iconv
BALAU_SOURCES = \
Local.cc \
Threads.cc \
\
BString.cc \
Main.cc \
Printer.cc \
\
Handle.cc \
Input.cc \
Socket.cc \
\
Task.cc \
TaskMan.cc \
ifeq ($(SYSTEM),MINGW32)
WIN32_SOURCES = \
pthread.c \
iconv.c \
localcharset.c \
relocatable.c \
endif
ifeq ($(SYSTEM),Darwin)
DARWIN_SOURCES = \
darwin-eprintf.c \
endif
LIBCORO_SOURCES = \
coro.c \
LIBEV_SOURCES = \
ev.c \
event.c \
LIBEIO_SOURCES = \
eio.c \
TEST_SOURCES = \
test-Sanity.cc \
test-String.cc \
test-Tasks.cc \
test-Threads.cc \
test-Handles.cc \
test-Sockets.cc \
LIB = libBalau.a
BALAU_OBJECTS = $(addsuffix .o, $(notdir $(basename $(BALAU_SOURCES) $(LIBCORO_SOURCES) $(LIBEIO_SOURCES) $(LIBEV_SOURCES) $(WIN32_SOURCES) $(DARWIN_SOURCES))))
WHOLE_SOURCES = $(BALAU_SOURCES) $(LIBCORO_SOURCES) $(LIBEIO_SOURCES) $(LIBEV_SOURCES) $(WIN32_SOURCES) $(DARWIN_SOURCES) $(TEST_SOURCES)
TESTS = $(addsuffix .$(BINEXT), $(notdir $(basename $(TEST_SOURCES))))
ALL_OBJECTS = $(addsuffix .o, $(notdir $(basename $(WHOLE_SOURCES))))
ALL_DEPS = $(addsuffix .dep, $(notdir $(basename $(WHOLE_SOURCES))))
all: dep lib
tests: $(TESTS)
ifneq ($(CROSSCOMPILE),true)
for t in $(TESTS) ; do ./$$t ; done
else
ifeq ($(SYSTEM),MINGW32)
for t in $(TESTS) ; do wine ./$$t ; done
endif
endif
strip: $(TESTS)
for t in $(TESTS) ; do $(STRIP) ./$$t ; done
lib: $(LIB)
libBalau.a: $(BALAU_OBJECTS)
$(AR) libBalau.a $(BALAU_OBJECTS)
%.$(BINEXT) : %.o $(LIB)
$(LD) $(LDFLAGS) -o $@ $< ./$(LIB) $(LDLIBS)
dep: $(ALL_DEPS)
%.dep : %.cc
$(CXX) $(CXXFLAGS) $(CPPFLAGS_NO_ARCH) -M -MF $@ $<
%.dep : %.c
$(CC) $(CFLAGS) $(CPPFLAGS_NO_ARCH) -M -MF $@ $<
-include $(ALL_DEPS)
clean:
rm -f $(ALL_OBJECTS) $(TESTS) $(LIB) $(ALL_DEPS)
.PHONY: lib tests clean strip
|