Roger Meier | 6cf0ffc | 2014-04-05 00:45:42 +0200 | [diff] [blame] | 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 | SUBDIRS = . |
| 21 | |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 22 | lib_LTLIBRARIES = \ |
Jens Geyer | aaa8947 | 2014-10-03 20:22:28 +0200 | [diff] [blame^] | 23 | libluasocket.la \ |
| 24 | libluabpack.la \ |
| 25 | libluabitwise.la \ |
| 26 | liblualongnumber.la |
Roger Meier | 6cf0ffc | 2014-04-05 00:45:42 +0200 | [diff] [blame] | 27 | |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 28 | libluasocket_la_SOURCES = \ |
Jens Geyer | aaa8947 | 2014-10-03 20:22:28 +0200 | [diff] [blame^] | 29 | src/luasocket.c \ |
| 30 | src/usocket.c |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 31 | |
| 32 | nobase_include_HEADERS = src/socket.h |
Roger Meier | 6cf0ffc | 2014-04-05 00:45:42 +0200 | [diff] [blame] | 33 | |
| 34 | libluasocket_la_CPPFLAGS = $(AM_CPPFLAGS) -I/usr/include/lua5.2 -DLUA_COMPAT_MODULE |
| 35 | libluasocket_la_LDFLAGS = $(AM_LDFLAGS) -llua5.2 -lm |
| 36 | |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 37 | libluabpack_la_SOURCES = src/luabpack.c |
Roger Meier | 6cf0ffc | 2014-04-05 00:45:42 +0200 | [diff] [blame] | 38 | |
| 39 | libluabpack_la_CPPFLAGS = $(AM_CPPFLAGS) -I/usr/include/lua5.2 -DLUA_COMPAT_MODULE |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 40 | libluabpack_la_LDFLAGS = $(AM_LDFLAGS) -llua5.2 -lm |
Roger Meier | 6cf0ffc | 2014-04-05 00:45:42 +0200 | [diff] [blame] | 41 | libluabpack_la_LIBADD = liblualongnumber.la |
| 42 | |
| 43 | libluabitwise_la_SOURCES = src/luabitwise.c |
| 44 | |
| 45 | libluabitwise_la_CPPFLAGS = $(AM_CPPFLAGS) -I/usr/include/lua5.2 -DLUA_COMPAT_MODULE |
| 46 | libluabitwise_la_LDFLAGS = $(AM_LDFLAGS) -llua5.2 -lm |
| 47 | |
jfarrell | 8fd8c63 | 2014-07-10 09:14:51 -0400 | [diff] [blame] | 48 | liblualongnumber_la_SOURCES = \ |
Jens Geyer | aaa8947 | 2014-10-03 20:22:28 +0200 | [diff] [blame^] | 49 | src/lualongnumber.c \ |
| 50 | src/longnumberutils.c |
Roger Meier | 6cf0ffc | 2014-04-05 00:45:42 +0200 | [diff] [blame] | 51 | |
| 52 | liblualongnumber_la_CPPFLAGS = $(AM_CPPFLAGS) -I/usr/include/lua5.2 -DLUA_COMPAT_MODULE |
| 53 | liblualongnumber_la_LDFLAGS = $(AM_LDFLAGS) -llua5.2 -lm |
| 54 | |
| 55 | EXTRA_DIST = TBinaryProtocol.lua \ |
Jens Geyer | aaa8947 | 2014-10-03 20:22:28 +0200 | [diff] [blame^] | 56 | TBufferedTransport.lua \ |
| 57 | TFramedTransport.lua \ |
| 58 | Thrift.lua \ |
| 59 | TMemoryBuffer.lua \ |
| 60 | TProtocol.lua \ |
| 61 | TServer.lua \ |
| 62 | TSocket.lua \ |
| 63 | TTransport.lua |