2014-04-04 22:45:42 +00:00
|
|
|
#
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
|
2014-10-22 12:09:43 +00:00
|
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
|
2014-04-04 22:45:42 +00:00
|
|
|
SUBDIRS = .
|
|
|
|
|
2014-07-10 13:14:51 +00:00
|
|
|
lib_LTLIBRARIES = \
|
2014-10-03 18:42:54 +00:00
|
|
|
libluasocket.la \
|
|
|
|
libluabpack.la \
|
|
|
|
libluabitwise.la \
|
|
|
|
liblualongnumber.la
|
2014-04-04 22:45:42 +00:00
|
|
|
|
2014-07-10 13:14:51 +00:00
|
|
|
libluasocket_la_SOURCES = \
|
2014-10-03 18:42:54 +00:00
|
|
|
src/luasocket.c \
|
|
|
|
src/usocket.c
|
2014-07-10 13:14:51 +00:00
|
|
|
|
|
|
|
nobase_include_HEADERS = src/socket.h
|
2014-04-04 22:45:42 +00:00
|
|
|
|
2016-03-09 10:58:18 +00:00
|
|
|
libluasocket_la_CPPFLAGS = $(AM_CPPFLAGS) $(LUA_INCLUDE) -DLUA_COMPAT_MODULE
|
|
|
|
libluasocket_la_LDFLAGS = $(AM_LDFLAGS)
|
|
|
|
libluasocket_la_LIBADD = $(LUA_LIB) -lm
|
2014-04-04 22:45:42 +00:00
|
|
|
|
2014-07-10 13:14:51 +00:00
|
|
|
libluabpack_la_SOURCES = src/luabpack.c
|
2014-04-04 22:45:42 +00:00
|
|
|
|
2016-03-09 10:58:18 +00:00
|
|
|
libluabpack_la_CPPFLAGS = $(AM_CPPFLAGS) $(LUA_INCLUDE) -DLUA_COMPAT_MODULE
|
|
|
|
libluabpack_la_LDFLAGS = $(AM_LDFLAGS)
|
|
|
|
libluabpack_la_LIBADD = liblualongnumber.la $(LUA_LIB) -lm
|
2014-04-04 22:45:42 +00:00
|
|
|
|
|
|
|
libluabitwise_la_SOURCES = src/luabitwise.c
|
|
|
|
|
2016-03-09 10:58:18 +00:00
|
|
|
libluabitwise_la_CPPFLAGS = $(AM_CPPFLAGS) $(LUA_INCLUDE) -DLUA_COMPAT_MODULE
|
|
|
|
libluabitwise_la_LDFLAGS = $(AM_LDFLAGS)
|
|
|
|
libluabitwise_la_LIBADD = $(LUA_LIB) -lm
|
2014-04-04 22:45:42 +00:00
|
|
|
|
2014-07-10 13:14:51 +00:00
|
|
|
liblualongnumber_la_SOURCES = \
|
2014-10-03 18:42:54 +00:00
|
|
|
src/lualongnumber.c \
|
|
|
|
src/longnumberutils.c
|
2014-04-04 22:45:42 +00:00
|
|
|
|
2016-03-09 10:58:18 +00:00
|
|
|
liblualongnumber_la_CPPFLAGS = $(AM_CPPFLAGS) $(LUA_INCLUDE) -DLUA_COMPAT_MODULE
|
|
|
|
liblualongnumber_la_LDFLAGS = $(AM_LDFLAGS)
|
|
|
|
liblualongnumber_la_LIBADD = $(LUA_LIB) -lm
|
2014-04-04 22:45:42 +00:00
|
|
|
|
2015-08-25 04:39:29 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
coding_standards.md \
|
|
|
|
TBinaryProtocol.lua \
|
2014-10-03 18:42:54 +00:00
|
|
|
TBufferedTransport.lua \
|
2016-03-18 06:13:36 +00:00
|
|
|
TCompactProtocol.lua \
|
2014-10-03 18:42:54 +00:00
|
|
|
TFramedTransport.lua \
|
|
|
|
Thrift.lua \
|
2016-03-18 06:13:36 +00:00
|
|
|
THttpTransport.lua \
|
|
|
|
TJsonProtocol.lua \
|
2014-10-03 18:42:54 +00:00
|
|
|
TMemoryBuffer.lua \
|
|
|
|
TProtocol.lua \
|
|
|
|
TServer.lua \
|
|
|
|
TSocket.lua \
|
2014-10-22 12:09:43 +00:00
|
|
|
TTransport.lua
|