Updated Branches: refs/heads/master fe871b5e4 -> e857750ea
makefile for custom_redirect Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/e857750e Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/e857750e Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/e857750e Branch: refs/heads/master Commit: e857750eafab0c65069a06bd425602f6bc58f302 Parents: fe871b5 Author: Bryan Call <[email protected]> Authored: Fri Aug 10 20:02:46 2012 -0700 Committer: Bryan Call <[email protected]> Committed: Fri Aug 10 20:02:46 2012 -0700 ---------------------------------------------------------------------- plugins/experimental/custom_redirect/Makefile.am | 24 +++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/e857750e/plugins/experimental/custom_redirect/Makefile.am ---------------------------------------------------------------------- diff --git a/plugins/experimental/custom_redirect/Makefile.am b/plugins/experimental/custom_redirect/Makefile.am new file mode 100644 index 0000000..1b03088 --- /dev/null +++ b/plugins/experimental/custom_redirect/Makefile.am @@ -0,0 +1,24 @@ +# 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. + +AM_CPPFLAGS = -I$(top_builddir)/proxy/api -I$(top_srcdir)/proxy/api \ + -I$(top_srcdir)/lib/ts -I$(top_builddir)/lib/ts + +pkglibdir = ${pkglibexecdir} +pkglib_LTLIBRARIES = custom_redirect.la +custom_redirect_la_SOURCES = custom_redirect.cc +custom_redirect_la_LDFLAGS = -module -avoid-version -shared +
