~ubuntu-branches/ubuntu/precise/psicode/precise

« back to all changes in this revision

Viewing changes to src/samples/MakeVars.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck, Michael Banck, Daniel Leidert
  • Date: 2009-02-23 00:12:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090223001202-rutldoy3dimfpesc
Tags: 3.4.0-1
* New upstream release.

[ Michael Banck ]
* debian/patches/01_DESTDIR.dpatch: Refreshed.
* debian/patches/02_FHS.dpatch: Removed, applied upstream.
* debian/patches/03_debian_docdir: Likewise.
* debian/patches/04_man.dpatch: Likewise.
* debian/patches/06_466828_fix_gcc_43_ftbfs.dpatch: Likewise.
* debian/patches/07_464867_move_executables: Fixed and refreshed.
* debian/patches/00list: Adjusted.
* debian/control: Improved description.
* debian/patches-held: Removed.
* debian/rules (install/psi3): Do not ship the ruby bindings for now.

[ Daniel Leidert ]
* debian/rules: Fix txtdir via DEB_MAKE_INSTALL_TARGET.
* debian/patches/01_DESTDIR.dpatch: Refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
SHELL = /bin/sh
 
3
 
 
4
#
 
5
# Initialize variables that have been figured out by configure.
 
6
#
 
7
 
 
8
target = @target@
 
9
 
 
10
prefix = @prefix@
 
11
exec_prefix = @exec_prefix@
 
12
bindir = @bindir@
 
13
libdir = @libdir@
 
14
incdir = @includedir@
 
15
docdir = @docdir@
 
16
manext = 1
 
17
mandir = @mandir@
 
18
htmldir = @htmldir@
 
19
txtdir = @txtdir@
 
20
datarootdir = @datarootdir@
 
21
datadir = @datadir@
 
22
pkgdatadir=@pkgdatadir@
 
23
top_srcdir = @top_srcdir@
 
24
# this file is used by the subdirectories, so top_objdir is relative to those
 
25
top_objdir = ../../..
 
26
objincdir = @objincdir@
 
27
 
 
28
PWD = $(shell pwd)
 
29
RANLIB = @RANLIB@
 
30
YACC = @YACC@
 
31
CC = @CC@
 
32
CXX = @CXX@
 
33
LD = $(CXX)
 
34
MKDIRS = @MKDIRS@
 
35
INSTALL = @INSTALL@
 
36
INSTALL_INCLUDE = @INSTALL_INCLUDE@
 
37
INSTALL_DATA = @INSTALL_DATA@
 
38
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
39
 
 
40
PSICPPFLAGS = @PSICPPFLAGS@
 
41
CPPFLAGS = @CPPFLAGS@
 
42
 
 
43
CDEF = @CDEF@
 
44
CDEF += -DUSE_LIBCHKPT
 
45
COPT = @COPT@
 
46
COTH = @COTH@
 
47
CDBG = @CDBG@
 
48
CINC = @CINC@
 
49
 
 
50
CXXDEF = @CXXDEF@      
 
51
CXXDEF += -DUSE_LIBCHKPT 
 
52
CXXOPT = @CXXOPT@
 
53
CXXOTH = @CXXOTH@
 
54
CXXDBG = @CXXDBG@
 
55
CXXINC = @CXXINC@
 
56
 
 
57
# The suffix generated by the -M compiler option
 
58
CCDEPENDSUF = @CCDEPENDSUF@
 
59
CXXDEPENDSUF = @CXXDEPENDSUF@
 
60
CCDEPENDFLAGS = @CCDEPENDFLAGS@
 
61
CXXDEPENDFLAGS = @CXXDEPENDFLAGS@
 
62
CCDEPEND = $(CC)
 
63
CXXDEPEND = $(CXX)
 
64
 
 
65
# Flags for Ruby location
 
66
RUBYLIB = @RUBYLIB@
 
67
RUBYINC = @RUBYINC@
 
68
HAVE_RUBY = @HAVE_RUBY@
 
69
RUBYLDFLAGS = @RUBYLDFLAGS@
 
70
 
 
71
# flags to be passed to compilers
 
72
CFLAGS = @CFLAGS@
 
73
CXXFLAGS = @CXXFLAGS@
 
74
 
 
75
# set up suffixes needed for various files
 
76
OBJSUF = @OBJSUF@
 
77
LIBSUF = @LIBSUF@
 
78
 
 
79
FLIBS = @FLIBS@
 
80
BLAS = @BLAS@ $(FLIBS)
 
81
LAPACK = @LAPACK@ $(BLAS)
 
82
LDFLAGS = @LDFLAGS@
 
83
LDLIBS = @LDLIBS@
 
84
vpath %.a $(top_objdir)/lib:$(libdir)
 
85
 
 
86
#
 
87
# have target default to the name of the directory we're in
 
88
#
 
89
PSITARGET = $(shell basename `pwd`)
 
90
 
 
91
# Force -lx to only look for libx.a.
 
92
.LIBPATTERNS = lib%.a
 
93
 
 
94
#
 
95
# Initialize other variables.
 
96
#
 
97
 
 
98
# Force -lx to only look for libx.a.
 
99
.LIBPATTERNS = lib%.a
 
100