~ubuntu-branches/ubuntu/trusty/maloc/trusty-proposed

« back to all changes in this revision

Viewing changes to tools/tests/zfence/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2006-06-29 15:21:06 UTC
  • Revision ID: james.westby@ubuntu.com-20060629152106-kyqdw6qlc3vmqum3
Tags: upstream-0.2
ImportĀ upstreamĀ versionĀ 0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
### ##########################################################################
 
2
### MALOC = < Minimal Abstraction Layer for Object-oriented C >
 
3
### Copyright (C) 1994--2000  Michael Holst
 
4
###
 
5
### This program is free software; you can redistribute it and/or modify it
 
6
### under the terms of the GNU General Public License as published by the
 
7
### Free Software Foundation; either version 2 of the License, or (at your
 
8
### option) any later version.
 
9
###
 
10
### This program is distributed in the hope that it will be useful,
 
11
### but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
13
### See the GNU General Public License for more details.
 
14
###
 
15
### You should have received a copy of the GNU General Public License along
 
16
### with this program; if not, write to the Free Software Foundation, Inc.,
 
17
### 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
###
 
19
### rcsid="$Id: Makefile.am,v 1.17 2006/05/15 22:49:27 mholst Exp $"
 
20
### ##########################################################################
 
21
 
 
22
## ###########################################################################
 
23
## File:    Makefile.am
 
24
##
 
25
## Purpose: Automatically generate Makefile.in for autoconf using automake.
 
26
##
 
27
## Notes:   The final makefile produced by autoconf will use the following:
 
28
##
 
29
##     COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)
 
30
##     LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
 
31
##
 
32
## Author:  Michael Holst
 
33
## ###########################################################################
 
34
 
 
35
AUTOMAKE_OPTIONS = no-dependencies
 
36
SUFFIXES = .y .l .H .h .m .C .cc .c .f .java .o
 
37
always_built_SUBDIRS =
 
38
SUBDIRS = $(always_built_SUBDIRS) .
 
39
 
 
40
noinst_PROGRAMS  = eftest tstheap
 
41
eftest_SOURCES   = eftest.c
 
42
tstheap_SOURCES  = tstheap.c
 
43
eftest_LDADD     = @maloc_lib@ @rl_lib@ @liberty_lib@ @socket_lib@ @nsl_lib@ @thread_lib@ @math_lib@ @zfence_lib@ @profile_lib@
 
44
tstheap_LDADD    = @maloc_lib@ @rl_lib@ @liberty_lib@ @socket_lib@ @nsl_lib@ @thread_lib@ @math_lib@ @zfence_lib@ @profile_lib@
 
45
INCLUDES         = @maloc_inc@
 
46
AM_CFLAGS        = @profile@ @wall_pedantic_ansi@
 
47