File: Makefile.am

package info (click to toggle)
trafficserver 9.2.5%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 53,008 kB
  • sloc: cpp: 345,484; ansic: 31,134; python: 24,200; sh: 7,271; makefile: 3,045; perl: 2,261; java: 277; pascal: 119; sql: 94; xml: 2
file content (108 lines) | stat: -rw-r--r-- 4,429 bytes parent folder | download | duplicates (2)
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
#  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.

include $(top_srcdir)/build/plugins.mk
include $(top_srcdir)/build/tidy.mk

AM_CXXFLAGS += -Wno-unused-variable
AM_LDFLAGS = $(TS_PLUGIN_LD_FLAGS)

libtscppapi = $(top_builddir)/src/tscpp/api/libtscppapi.la

if BUILD_EXAMPLE_PLUGINS

example_Plugins = \
	AsyncHttpFetch.la \
	AsyncHttpFetchStreaming.la \
	AsyncTimer.la \
	ClientRedirect.la \
	ClientRequest.la \
	CustomErrorRemapPlugin.la \
	CustomResponse.la \
	DelayTransformationPlugin.la \
	GlobalHookPlugin.la \
	GzipTransformationPlugin.la \
	HelloWorldPlugin.la \
	InternalTransactionHandling.la \
	LoggerExample.la \
	MultipleTransactionHookPlugins.la \
	NullTransformationPlugin.la \
	PostBuffer.la \
	RemapPlugin.la \
	ServerResponse.la \
	StatExample.la \
	TimeoutExamplePlugin.la \
	TransactionHookPlugin.la \
	WebSocket.la \
	boom.la \
	intercept.la

pkglib_LTLIBRARIES = $(example_Plugins)

endif

AsyncHttpFetchStreaming_la_SOURCES = async_http_fetch_streaming/AsyncHttpFetchStreaming.cc
AsyncHttpFetch_la_SOURCES = async_http_fetch/AsyncHttpFetch.cc
AsyncTimer_la_SOURCES = async_timer/AsyncTimer.cc
ClientRedirect_la_SOURCES = clientredirect/ClientRedirect.cc
ClientRequest_la_SOURCES = clientrequest/ClientRequest.cc
CustomErrorRemapPlugin_la_SOURCES = custom_error_remap_plugin/CustomErrorRemapPlugin.cc
CustomResponse_la_SOURCES = customresponse/CustomResponse.cc
DelayTransformationPlugin_la_SOURCES = delay_transformation_plugin/DelayTransformationPlugin.cc
GlobalHookPlugin_la_SOURCES = globalhook/GlobalHookPlugin.cc
GzipTransformationPlugin_la_SOURCES = gzip_transformation/GzipTransformationPlugin.cc
HelloWorldPlugin_la_SOURCES = helloworld/HelloWorldPlugin.cc
InternalTransactionHandling_la_SOURCES = internal_transaction_handling/InternalTransactionHandling.cc
LoggerExample_la_SOURCES = logger_example/LoggerExample.cc
MultipleTransactionHookPlugins_la_SOURCES = multiple_transaction_hooks/MultipleTransactionHookPlugins.cc
NullTransformationPlugin_la_SOURCES = null_transformation_plugin/NullTransformationPlugin.cc
PostBuffer_la_SOURCES = post_buffer/PostBuffer.cc
RemapPlugin_la_SOURCES = remap_plugin/RemapPlugin.cc
ServerResponse_la_SOURCES = serverresponse/ServerResponse.cc
StatExample_la_SOURCES = stat_example/StatExample.cc
TimeoutExamplePlugin_la_SOURCES = timeout_example/TimeoutExamplePlugin.cc
TransactionHookPlugin_la_SOURCES = transactionhook/TransactionHookPlugin.cc
WebSocket_la_SOURCES = websocket/WebSocket.cc websocket/WSBuffer.cc
boom_la_SOURCES = boom/boom.cc
intercept_la_SOURCES = intercept/intercept.cc

AsyncHttpFetchStreaming_la_LIBADD = $(libtscppapi)
AsyncHttpFetch_la_LIBADD = $(libtscppapi)
AsyncTimer_la_LIBADD = $(libtscppapi)
ClientRedirect_la_LIBADD = $(libtscppapi)
ClientRequest_la_LIBADD = $(libtscppapi)
CustomErrorRemapPlugin_la_LIBADD = $(libtscppapi)
CustomResponse_la_LIBADD = $(libtscppapi)
DelayTransformationPlugin_la_LIBADD = $(libtscppapi)
GlobalHookPlugin_la_LIBADD = $(libtscppapi)
GzipTransformationPlugin_la_LIBADD = $(libtscppapi)
HelloWorldPlugin_la_LIBADD = $(libtscppapi)
InternalTransactionHandling_la_LIBADD = $(libtscppapi)
LoggerExample_la_LIBADD = $(libtscppapi)
MultipleTransactionHookPlugins_la_LIBADD = $(libtscppapi)
NullTransformationPlugin_la_LIBADD = $(libtscppapi)
PostBuffer_la_LIBADD = $(libtscppapi)
RemapPlugin_la_LIBADD = $(libtscppapi)
ServerResponse_la_LIBADD = $(libtscppapi)
StatExample_la_LIBADD = $(libtscppapi)
TimeoutExamplePlugin_la_LIBADD = $(libtscppapi)
TransactionHookPlugin_la_LIBADD = $(libtscppapi)
WebSocket_la_LIBADD = $(libtscppapi)
boom_la_LIBADD = $(libtscppapi)
intercept_la_LIBADD = $(libtscppapi)

clang-tidy-local: $(DIST_SOURCES)
	$(CXX_Clang_Tidy)