forked from acl-dev/acl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
281 lines (264 loc) · 7.9 KB
/
Makefile
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
SHELL = /bin/sh
#CC = g++
CC = ${ENV_CC}
#AR = ar
AR = ${ENV_AR}
ARFL = rv
#RANLIB = ranlib
RANLIB = ${ENV_RANLIB}
#OSNAME = $(shell uname -sm)
#OSTYPE = $(shell uname -p)
OSNAME = $(shell uname -a)
OSTYPE = $(shell uname -a)
LIB_PATH = ./dist/lib
ACL_LIB = $(LIB_PATH)
PROTO_LIB = $(LIB_PATH)
DICT_LIB = $(LIB_PATH)
TLS_LIB = $(LIB_PATH)
INC_PATH = ./dist/include
ACL_INC = $(INC_PATH)/acl
PROTO_INC = $(INC_PATH)/protocol
DICT_INC = $(INC_PATH)/dict
TLS_INC = $(INC_PATH)/tls
RPATH =
DATE_NOW = 20`date +%y`.`date +%m`.`date +%d`
MAKE_ARGS =
SYSLIB = -lpthread -lz
LDFLAGS = -shared
polarssl =
ifeq ($(CC),)
CC = g++
endif
ifeq ($(AR),)
AR = ar
endif
ifeq ($(RANLIB),)
RANLIB = ranlib
endif
ifeq ($(findstring on, $(polarssl)), on)
CFLAGS += -DHAS_POLARSSL
endif
ifeq ($(findstring Linux, $(OSNAME)), Linux)
ifeq ($(findstring i686, $(OSTYPE)), i686)
RPATH = linux32
endif
ifeq ($(findstring x86_64, $(OSTYPE)), x86_64)
RPATH = linux64
endif
n = `cat /proc/cpuinfo | grep processor | wc -l`
MAKE_ARGS = -j $(n)
SYSLIB += -lrt -ldl
endif
# For Darwin
ifeq ($(findstring Darwin, $(OSNAME)), Darwin)
RPATH = macos
SYSLIB += -rdynamic -L/usr/lib -liconv
LDFLAGS = -dynamiclib -shared
endif
ifeq ($(findstring FreeBSD, $(OSNAME)), FreeBSD)
RPATH = freebsd
SYSLIB += -L/usr/local/lib -liconv
endif
ifeq ($(findstring SunOS, $(OSNAME)), SunOS)
ifeq ($(findstring i386, $(OSTYPE)), i386)
RPATH = sunos_x86
endif
SYSLIB += -liconv
endif
##############################################################################
.PHONY = check help all_lib all samples all clean install uninstall uninstall_all build_bin build_src build_one
VERSION = 3.2.2_2
help:
@(echo "usage: make help|all|all_lib|all_samples|clean|install|uninstall|uninstall_all|build_bin|build_src|build_one")
all_lib:
@if test "$(polarssl)" = "on"; then \
export ENV_FLAGS=$(ENV_FLAGS):HAS_POLARSSL; \
else \
export ENV_FLAGS=$(ENV_FLAGS); \
fi
@(cd lib_acl; make pch)
@(cd lib_acl; make $(MAKE_ARGS))
@(cd lib_protocol; make $(MAKE_ARGS))
@(cd lib_acl_cpp; make check)
@(cd lib_acl_cpp; make pch)
@(cd lib_acl_cpp; make $(MAKE_ARGS))
@(cd lib_rpc; make $(MAKE_ARGS))
all_samples: all_lib
@(cd unit_test; make $(MAKE_ARGS))
@(cd lib_acl/samples; make)
@(cd lib_protocol/samples; make)
@(cd lib_acl_cpp/samples; make)
# @(cd lib_dict; make $(MAKE_ARGS))
# @(cd lib_tls; make $(MAKE_ARGS))
all: all_lib all_samples
clean:
@(cd lib_acl; make clean)
@(cd lib_protocol; make clean)
@(cd lib_acl_cpp; make clean)
@(cd lib_rpc; make clean)
@(cd unit_test; make clean)
@(cd lib_acl/samples; make clean)
@(cd lib_protocol/samples; make clean)
@(rm -f lib_acl.a lib_acl.so)
# @(cd lib_dict; make clean)
# @(cd lib_tls; make clean)
install:
@(echo "")
@(echo "begin copy file...")
cp -f lib_acl/master/acl_master ./dist/master/libexec/$(RPATH)/
cp -f lib_acl/lib/lib_acl.a $(ACL_LIB)/$(RPATH)/
cp -Rf lib_acl/include/* $(ACL_INC)/
cp -f lib_protocol/lib/lib_protocol.a $(PROTO_LIB)/$(RPATH)/
cp -Rf lib_protocol/include/* $(PROTO_INC)/
cp -f lib_acl_cpp/lib/lib_acl_cpp.a $(ACL_LIB)/$(RPATH)/
cp -Rf lib_acl_cpp/include/acl_cpp/* $(INC_PATH)/acl_cpp/
# cp -f lib_dict/lib/lib_dict.a $(DICT_LIB)/$(RPATH)/
# cp -Rf lib_dict/include/* $(DICT_INC)/
# cp -f lib_tls/lib/lib_tls.a $(TLS_LIB)/$(RPATH)/
# cp -Rf lib_tls/include/* $(TLS_INC)/
uninstall:
@(echo "")
@(echo "begin remove file...")
rm -f ./dist/master/libexec/$(RPATH)/*
rm -f $(ACL_LIB)/$(RPATH)/lib_acl.a
rm -Rf $(ACL_INC)/*
rm -f $(PROTO_LIB)/$(RPATH)/lib_protocol.a
rm -Rf $(PROTO_INC)/*
rm -f $(ACL_LIB)/$(RPATH)/lib_acl_cpp.a
rm -Rf $(INC_PATH)/acl_cpp/*
rm -f $(DICT_LIB)/$(RPATH)/lib_dict.a
rm -Rf $(DICT_INC)/*
rm -f $(TLS_LIB)/$(RPATH)/lib_tls.a
rm -Rf $(TLS_INC)/*
uninstall_all:
@(echo "")
@(echo "begin remove all dist files ...")
rm -Rf $(ACL_INC)/*
rm -Rf $(PROTO_INC)/*
rm -Rf $(DICT_INC)/*
rm -Rf $(TLS_INC)/*
rm -f ./dist/master/libexec/linux32/*
rm -f ./dist/master/libexec/linux64/*
rm -f ./dist/master/libexec/sunos_x86/*
rm -f ./dist/master/libexec/freebsd/*
rm -f $(ACL_LIB)/linux32/*.a
rm -f $(ACL_LIB)/linux64/*.a
rm -f $(ACL_LIB)/sunos_x86/*.a
rm -f $(ACL_LIB)/freebsd/*.a
rm -f $(ACL_LIB)/win32/*.lib
rm -f $(ACL_LIB)/win32/*.dll
rm -f $(PROTO_LIB)/linux32/*.a
rm -f $(PROTO_LIB)/linux64/*.a
rm -f $(PROTO_LIB)/sunos_x86/*.a
rm -f $(PROTO_LIB)/freebsd/*.a
rm -f $(PROTO_LIB)/win32/*.lib
rm -f $(PROTO_LIB)/win32/*.dll
rm -f $(DICT_LIB)/linux32/*.a
rm -f $(DICT_LIB)/linux64/*.a
rm -f $(DICT_LIB)/sunos_x86/*.a
rm -f $(DICT_LIB)/freebsd/*.a
rm -f $(DICT_LIB)/win32/*.lib
rm -f $(DICT_LIB)/win32/*.dll
rm -f $(TLS_LIB)/linux32/*.a
rm -f $(TLS_LIB)/linux64/*.a
rm -f $(TLS_LIB)/sunos_x86/*.a
rm -f $(TLS_LIB)/freebsd/*.a
rm -f $(TLS_LIB)/win32/*.lib
rm -f $(TLS_LIB)/win32/*.dll
rm -f win32_build/vc/lib_acl/*.map
rm -f win32_build/vc/lib_acl/*.ilk
rm -f win32_build/vc/lib_protocol/*.map
rm -f win32_build/vc/lib_protocol/*.ilk
build_bin:
@(echo "please waiting ...")
@(echo "begin building bin release...")
@(rm -rf acl.bin)
@(echo "copy files ...")
@(cp -R dist acl.bin)
@(cp lib_acl/changes.txt acl.bin/include/acl/)
@(cp lib_protocol/changes.txt acl.bin/include/protocol/)
@(cp lib_dict/changes.txt acl.bin/include/dict/)
@(cp lib_tls/changes.txt acl.bin/include/tls/)
@(cp changes.txt acl.bin/)
@(echo "make tar package ...")
@(tar -cf acl.bin.tar acl.bin)
@(echo "make gzip package ...")
@(gzip -c acl.bin.tar > acl.bin.tgz)
@(rm acl.bin.tar)
@(rm -rf acl.bin)
@(echo "move acl.bin.tgz to ../acl$(VERSION).bin.$(DATE_NOW).tgz")
@(mv acl.bin.tgz ../acl$(VERSION).bin.$(DATE_NOW).tgz)
# @(echo "move acl.bin.tgz to ../acl$(VERSION).bin.tgz")
# @(mv acl.bin.tgz ../acl$(VERSION).bin.tgz)
build_src: clean uninstall_all
@(echo "begin building src release...")
@(rm -rf acl)
@(echo "copy files ...")
@(mkdir acl)
@(cp -R lib_acl acl/)
@(cp -R lib_protocol acl/)
@(cp -R lib_acl_cpp acl/)
@(cp -R lib_dict acl/)
@(cp -R lib_tls acl/)
@(cp -R lib_rpc acl/)
@(cp -R lib acl/)
@(cp -R include acl/)
@(cp -R unit_test acl/)
@(cp -R res acl/)
@(cp -R resource acl/)
@(cp -R app acl/)
@(cp -R dist acl/)
@(cp -R doc acl/)
@(cp Makefile acl/)
@(cp changes.txt acl/)
@(cp readme.txt acl/)
@(cp Doxyfile acl/)
@(cp Doxyfile_acl_protocol acl/)
@(cp license.bsd acl/)
@(cp license.ibm acl/)
@(cp README_EN.md acl/)
@(cp README.md acl/)
@(cp SAMPLES.md acl/)
@(cp acl_cpp_vc2003.sln acl/)
@(cp acl_cpp_vc2008.sln acl/)
@(cp acl_cpp_vc2010.sln acl/)
@(cp acl_cpp_vc2012.sln acl/)
@(cp acl_vc2003.sln acl/)
@(cp acl_vc2010.sln acl/)
@(cp acl_vc2012.sln acl/)
@(cd acl/; find . -name "*.svn" |xargs rm -rf)
@(echo "make tar package ...")
@(tar -cf acl.src.tar acl)
@(echo "make gzip package ...")
@(gzip -c acl.src.tar > acl.src.tgz)
@(rm acl.src.tar)
@(rm -rf acl)
@(echo "move acl.src.tgz to ../acl$(VERSION).src.$(DATE_NOW).tgz")
@(mv acl.src.tgz ../acl$(VERSION).src.$(DATE_NOW).tgz)
# @(echo "move acl.src.tgz to ../acl$(VERSION).src.tgz")
# @(mv acl.src.tgz ../acl$(VERSION).src.tgz)
RELEASE_PATH = release
build_one: all_lib
@(mkdir -p $(RELEASE_PATH); mkdir -p $(RELEASE_PATH)/acl; \
mkdir -p $(RELEASE_PATH)/protocol; \
mkdir -p $(RELEASE_PATH)/acl_cpp)
@(cp lib_acl/lib/lib_acl.a $(RELEASE_PATH)/acl/)
@(cp lib_protocol/lib/lib_protocol.a $(RELEASE_PATH)/protocol/)
@(cp lib_acl_cpp/lib/lib_acl_cpp.a $(RELEASE_PATH)/acl_cpp/)
@(cd $(RELEASE_PATH)/acl; ar -x lib_acl.a)
@(cd $(RELEASE_PATH)/protocol; ar -x lib_protocol.a)
@(cd $(RELEASE_PATH)/acl_cpp; ar -x lib_acl_cpp.a)
$(AR) $(ARFL) ./lib_acl.a $(RELEASE_PATH)/acl/*.o \
$(RELEASE_PATH)/protocol/*.o $(RELEASE_PATH)/acl_cpp/*.o
$(RANLIB) ./lib_acl.a
$(CC) $(LDFLAGS) -o ./lib_acl.so $(RELEASE_PATH)/acl_cpp/*.o \
$(RELEASE_PATH)/protocol/*.o $(RELEASE_PATH)/acl/*.o \
$(SYSLIB)
@(rm -rf $(RELEASE_PATH))
@echo ""
@echo "Over, lib_acl.a and lib_acl.so were built ok!"
@echo ""
check:
@(echo "TYPE: $(OSTYPE)")
@(echo "OSNAME: $(OSNAME)")
@(echo "RPATH: $(RPATH)")