~ubuntu-branches/ubuntu/karmic/dejagnu/karmic

« back to all changes in this revision

Viewing changes to example/mathhelper/testsuite/mathhelper/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2006-12-11 09:06:59 UTC
  • mfrom: (2.1.6 edgy)
  • Revision ID: james.westby@ubuntu.com-20061211090659-w586kgi3giz84053
Tags: 1.4.4.cvs20060709-3
* Acknowledge previous NMUs.
* Fix permissions on /usr/share/dejagnu when building without fakeroot
  (Closes: #392589, #379809).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to generate Makefile.in
 
2
 
 
3
AUTOMAKE_OPTIONS = dejagnu
 
4
 
 
5
# figure this out
 
6
#if HAVE_DEJAGNU
 
7
PROCTOR = proctor
 
8
#else
 
9
#PROCTOR = 
 
10
#endif
 
11
 
 
12
DL_LIB = @DL_LIB@
 
13
LIBLTDL = @LIBLTDL@
 
14
INCLTDL = @INCLTDL@
 
15
 
 
16
AM_CXXFLAGS = -g
 
17
 
 
18
CLEANFILES = *.log *.sum site.bak
 
19
 
 
20
all:
 
21
        @echo "Nothing to be done for all"
 
22
 
 
23
INCLUDES= \
 
24
 -I$(top_srcdir)/libmathhelper -I/opt/dejagnu-1.4.4/include
 
25
 
 
26
noinst_PROGRAMS = 
 
27
 
 
28
noinst_PROGRAMS += testmost
 
29
testmost_SOURCES = testmost.c
 
30
testmost_LDADD = $(top_builddir)/libmathhelper/libmathhelper.la
 
31
 
 
32
noinst_PROGRAMS += divzero
 
33
divzero_SOURCES = divzero.c
 
34
divzero_LDADD = $(top_builddir)/libmathhelper/libmathhelper.la
 
35
 
 
36
# this is the wrapper for the testcases
 
37
# noinst_PROGRAMS += $(PROCTOR) 
 
38
# proctor_SOURCES = proctor.cc
 
39
# proctor_LDFLAGS = -L../..
 
40
# proctor_LDADD = $(top_builddir)/libmathhelper/libmathhelper.la
 
41
# proctor_DEPENDENCIES = $(top_builddir)/libmathhelper/libmathhelper.la
 
42