~ps10gel/ubuntu/xenial/trafficserver/6.2.0

« back to all changes in this revision

Viewing changes to test/plugin/assembly/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= -g -KPIC -D_REENTRANT=1
 
20
LDFLAGS= -G -g
 
21
 
 
22
TS_BASE=../../../../..
 
23
API_INC= -I. -I$(TS_BASE)/proxy/api/include
 
24
 
 
25
default: assembly.so
 
26
 
 
27
headers.o: headers.c headers.h common.h
 
28
        $(CC) $(CFLAGS) $(API_INC) -o headers.o -c headers.c
 
29
 
 
30
list.o: list.c list.h common.h
 
31
        $(CC) $(CFLAGS) $(API_INC) -o list.o -c list.c
 
32
 
 
33
assembly.o: assembly.c common.h
 
34
        $(CC) $(CFLAGS) $(API_INC) -o assembly.o -c assembly.c
 
35
 
 
36
assembly.so: assembly.o headers.o list.o
 
37
        $(CC) $(LDFLAGS) -o assembly.so assembly.o headers.o list.o
 
38
 
 
39
clean:
 
40
        rm -f assembly.so assembly.o headers.o list.o