~ubuntu-branches/ubuntu/quantal/psicode/quantal

« back to all changes in this revision

Viewing changes to src/bin/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:
17
17
mandir = @mandir@
18
18
htmldir = @htmldir@
19
19
txtdir = @txtdir@
 
20
datarootdir = @datarootdir@
20
21
datadir = @datadir@
21
 
datarootdir = @datarootdir@
 
22
pkgdatadir=@pkgdatadir@
22
23
top_srcdir = @top_srcdir@
23
24
# this file is used by the subdirectories, so top_objdir is relative to those
24
25
top_objdir = ../../..
28
29
RANLIB = @RANLIB@
29
30
YACC = @YACC@
30
31
CC = @CC@
31
 
CCDEPEND = @CCDEPEND@
32
 
DODEPEND = @DODEPEND@
33
32
CXX = @CXX@
34
 
FC = @FC@
35
 
LD = @CC@
 
33
LD = $(CXX)
36
34
MKDIRS = @MKDIRS@
37
35
INSTALL = @INSTALL@
38
36
INSTALL_INCLUDE = @INSTALL_INCLUDE@
56
54
CXXDBG = @CXXDBG@
57
55
CXXINC = @CXXINC@
58
56
 
59
 
FDEF = @FDEF@
60
 
FOPT = @FOPT@
61
 
FOTH = @FOTH@
62
 
FDBG = @FDBG@
63
 
FINC = @FINC@
64
 
FSTATIC = @FSTATIC@
 
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@
65
70
 
66
71
# flags to be passed to compilers
67
72
CFLAGS = @CFLAGS@
68
73
CXXFLAGS = @CXXFLAGS@
69
 
FFLAGS = @FFLAGS@
70
 
FFLAGS_NOSTATIC = $(FOPT) $(FOTH) $(FDBG)
71
74
 
72
75
# set up suffixes needed for various files
73
 
F77SUF = @F77SUF@
74
76
OBJSUF = @OBJSUF@
75
77
LIBSUF = @LIBSUF@
76
78
 
77
79
FLIBS = @FLIBS@
78
 
CLIBS = @CLIBS@
79
 
CXXLIBS = @CXXLIBS@
80
80
BLAS = @BLAS@ $(FLIBS)
81
81
LAPACK = @LAPACK@ $(BLAS)
82
 
 
83
 
# where to find main for fortran programs
84
 
vpath allocate.o $(top_objdir)/lib:$(libdir)
85
 
 
86
 
# we are mostly compiling C programs here
87
82
LDFLAGS = @LDFLAGS@
88
 
LDLIBS = $(CLIBS) @LDLIBS@
89
 
 
90
 
# these are the most commonly used libraries
91
 
PSILIBS = libipv1.a libciomr.a
92
 
 
 
83
LDLIBS = @LDLIBS@
93
84
vpath %.a $(top_objdir)/lib:$(libdir)
94
85
 
95
86
#