]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/lib/lua/Makefile.am
3b272f56cbe2891f754bb8887b6be52d7a0d3a7a
[ceph.git] / ceph / src / jaegertracing / thrift / lib / lua / Makefile.am
1 #
2 # Licensed to the Apache Software Foundation (ASF) under one
3 # or more contributor license agreements. See the NOTICE file
4 # distributed with this work for additional information
5 # regarding copyright ownership. The ASF licenses this file
6 # to you under the Apache License, Version 2.0 (the
7 # "License"); you may not use this file except in compliance
8 # with the License. You may obtain a copy of the License at
9 #
10 # http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing,
13 # software distributed under the License is distributed on an
14 # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 # KIND, either express or implied. See the License for the
16 # specific language governing permissions and limitations
17 # under the License.
18 #
19
20 AUTOMAKE_OPTIONS = subdir-objects nostdinc
21
22 SUBDIRS = .
23
24 lib_LTLIBRARIES = \
25 libluasocket.la \
26 liblualongnumber.la \
27 libluabpack.la \
28 libluabitwise.la
29
30 libluasocket_la_SOURCES = \
31 src/luasocket.c \
32 src/usocket.c
33
34 nobase_include_HEADERS = src/socket.h
35
36 libluasocket_la_CPPFLAGS = $(AM_CPPFLAGS) $(LUA_INCLUDE) -DLUA_COMPAT_MODULE
37 libluasocket_la_LDFLAGS = $(AM_LDFLAGS)
38 libluasocket_la_LIBADD = $(LUA_LIB) -lm
39
40 libluabpack_la_SOURCES = src/luabpack.c
41
42 libluabpack_la_CPPFLAGS = $(AM_CPPFLAGS) $(LUA_INCLUDE) -DLUA_COMPAT_MODULE
43 libluabpack_la_LDFLAGS = $(AM_LDFLAGS)
44 libluabpack_la_LIBADD = liblualongnumber.la $(LUA_LIB) -lm
45
46 libluabitwise_la_SOURCES = src/luabitwise.c
47
48 libluabitwise_la_CPPFLAGS = $(AM_CPPFLAGS) $(LUA_INCLUDE) -DLUA_COMPAT_MODULE
49 libluabitwise_la_LDFLAGS = $(AM_LDFLAGS)
50 libluabitwise_la_LIBADD = $(LUA_LIB) -lm
51
52 liblualongnumber_la_SOURCES = \
53 src/lualongnumber.c \
54 src/longnumberutils.c
55
56 liblualongnumber_la_CPPFLAGS = $(AM_CPPFLAGS) $(LUA_INCLUDE) -DLUA_COMPAT_MODULE
57 liblualongnumber_la_LDFLAGS = $(AM_LDFLAGS)
58 liblualongnumber_la_LIBADD = $(LUA_LIB) -lm
59
60 EXTRA_DIST = \
61 coding_standards.md \
62 TBinaryProtocol.lua \
63 TBufferedTransport.lua \
64 TCompactProtocol.lua \
65 TFramedTransport.lua \
66 Thrift.lua \
67 THttpTransport.lua \
68 TJsonProtocol.lua \
69 TMemoryBuffer.lua \
70 TProtocol.lua \
71 TServer.lua \
72 TSocket.lua \
73 TTransport.lua