~ps10gel/ubuntu/xenial/trafficserver/6.2.0

« back to all changes in this revision

Viewing changes to test/plugin/alt-info/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Arno Toell
  • Date: 2011-01-13 11:49:18 UTC
  • Revision ID: james.westby@ubuntu.com-20110113114918-vu422h8dknrgkj15
Tags: upstream-2.1.5-unstable
ImportĀ upstreamĀ versionĀ 2.1.5-unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#  Licensed to the Apache Software Foundation (ASF) under one
 
2
#  or more contributor license agreements.  See the NOTICE file
 
3
#  distributed with this work for additional information
 
4
#  regarding copyright ownership.  The ASF licenses this file
 
5
#  to you under the Apache License, Version 2.0 (the
 
6
#  "License"); you may not use this file except in compliance
 
7
#  with the License.  You may obtain a copy of the License at
 
8
#
 
9
#      http://www.apache.org/licenses/LICENSE-2.0
 
10
#
 
11
#  Unless required by applicable law or agreed to in writing, software
 
12
#  distributed under the License is distributed on an "AS IS" BASIS,
 
13
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
14
#  See the License for the specific language governing permissions and
 
15
#  limitations under the License.
 
16
 
 
17
CC=@CC@
 
18
LD=ld
 
19
CFLAGS=@CFLAGS@ @SHARED_CFLAGS@
 
20
LDFLAGS=@LDFLAGS@ @SHARED_LDFLAGS@
 
21
API_INC=../../../proxy/api/include
 
22
 
 
23
default: alt-info.so alt-info-dbg.so
 
24
 
 
25
alt-info.o: alt-info.c $(API_INC)/ts.h
 
26
        $(CC) $(CFLAGS) -I$(API_INC) -o alt-info.o -c alt-info.c
 
27
 
 
28
alt-info.so: alt-info.o
 
29
        $(CC) $(LDFLAGS) -o alt-info.so alt-info.o
 
30
 
 
31
alt-info-dbg.o: alt-info.c $(API_INC)/ts.h
 
32
        $(CC) $(CFLAGS) -DDEBUG -I$(API_INC) -o alt-info-dbg.o -c alt-info.c
 
33
 
 
34
alt-info-dbg.so: alt-info-dbg.o
 
35
        $(CC) $(LDFLAGS) -o alt-info-dbg.so alt-info-dbg.o
 
36
 
 
37
clean:
 
38
        rm -f alt-info.so alt-info.o
 
39
        rm -f alt-info-dbg.so alt-info-dbg.o