~ubuntu-branches/ubuntu/intrepid/wfmath/intrepid

« back to all changes in this revision

Viewing changes to atlas/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2007-12-09 16:19:35 UTC
  • mfrom: (1.1.5 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20071209161935-5zy1h5h60acy6xkm
Tags: 0.3.7-1
* New upstream release.
* Updated Standards-Version to 3.7.3.
* Updated debhelper level to 5.
* Added homepage field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
EXTRA_DIST = atlas_0_4_test.cpp atlas_0_6_test.cpp
 
1
EXTRA_DIST = atlas_0_6_test.cpp
2
2
 
3
3
# have to include both here to get it to build, but we're including
4
4
# distinct headers so we're okay
5
 
AM_CXXFLAGS = -O2 -Wall @ATLAS_0_4_CFLAGS@ @ATLAS_0_6_CFLAGS@
6
 
 
7
 
if HAVE_ATLAS_0_4
8
 
 
9
 
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/wfmath
10
 
 
11
 
ATLAS_0_4_TESTS = atlas_0_4_test
12
 
 
13
 
atlas_0_4_test_SOURCES = atlas_0_4_test.cpp
14
 
atlas_0_4_test_LDADD = ../wfmath/libwfmath-0.3.la @ATLAS_0_4_LIBS@
15
 
 
16
 
else
17
 
ATLAS_0_4_TESTS =
18
 
endif
 
5
AM_CXXFLAGS = -O2 -Wall @ATLAS_0_6_CFLAGS@
19
6
 
20
7
if HAVE_ATLAS_0_6
21
8
 
30
17
ATLAS_0_6_TESTS =
31
18
endif
32
19
 
33
 
check_PROGRAMS = $(ATLAS_0_4_TESTS) $(ATLAS_0_6_TESTS)
 
20
check_PROGRAMS = $(ATLAS_0_6_TESTS)
34
21
TESTS = $(check_PROGRAMS)