~ubuntu-branches/ubuntu/karmic/psicode/karmic

« back to all changes in this revision

Viewing changes to src/lib/libciomr/Makefile.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:
4
4
 
5
5
include ../MakeVars
6
6
 
7
 
CDEF += -DBUFF=0 -DSITEDIR=\"$(datadir)\"
8
 
 
9
7
PSITARGET = $(top_objdir)/lib/libPSI_ciomr.a
10
8
 
11
 
TRUESRC = \
12
 
add_arr.c \
13
 
add_mat.c \
14
 
block_alloc.c \
15
 
block_matrix.c \
16
 
dot.c \
17
 
eigout.c \
18
 
eigsort.c \
19
 
eivout.c \
20
 
errors.c \
21
 
ffile.c \
22
 
flen.c \
23
 
flin.c \
24
 
fndcor.c \
25
 
get_file_info.c \
26
 
get_file_ptr.c \
27
 
get_param.c \
28
 
i2sec.c \
29
 
init_array.c \
30
 
init_matrix.c \
31
 
init_ptrs.c \
32
 
int_array.c \
33
 
int_pac.c \
34
 
io_getline.c \
35
 
io_locate.c \
36
 
ioopen.c \
37
 
long_int_array.c \
38
 
lubksb.c \
39
 
ludcmp.c \
40
 
mmult.c \
41
 
mxmb.c \
42
 
mxmbol.c \
43
 
old_inp.c \
44
 
print_array.c \
45
 
print_mat.c \
46
 
psi_start.c \
47
 
psi_stop.c \
48
 
r_async.c \
49
 
ram.c \
50
 
rclose.c \
51
 
resource.c \
52
 
rfile.c \
53
 
rgetsa.c \
54
 
rread.c \
55
 
rsetsa.c \
56
 
rsp.c \
57
 
rwrit.c \
58
 
s_async.c \
59
 
sec2i.c \
60
 
sequential.c \
61
 
sq_rsp.c \
62
 
sq_to_tri.c \
63
 
sread.c \
64
 
srew.c \
65
 
swrit.c \
66
 
tqli.c \
67
 
tred2.c \
68
 
tri_to_sq.c \
69
 
tstart.c \
70
 
wreadw.c \
71
 
wwritw.c \
72
 
zero.c 
73
 
 
74
 
DEPENDINCLUDE = includes.h iomrparam.h common.h pointers.h structs.h types.h
75
 
 
76
 
LIBOBJ = $(TRUESRC:%.c=%.o)
 
9
CXXSRC = \
 
10
add_arr.cc \
 
11
add_mat.cc \
 
12
block_matrix.cc \
 
13
dot.cc \
 
14
eigout.cc \
 
15
eigsort.cc \
 
16
eivout.cc \
 
17
ffile.cc \
 
18
flin.cc \
 
19
fndcor.cc \
 
20
init_array.cc \
 
21
init_matrix.cc \
 
22
int_array.cc \
 
23
lubksb.cc \
 
24
ludcmp.cc \
 
25
mmult.cc \
 
26
mxmb.cc \
 
27
print_array.cc \
 
28
print_mat.cc \
 
29
psi_start.cc \
 
30
psi_stop.cc \
 
31
rsp.cc \
 
32
sq_rsp.cc \
 
33
sq_to_tri.cc \
 
34
tqli.cc \
 
35
tred2.cc \
 
36
tri_to_sq.cc \
 
37
tstart.cc \
 
38
zero.cc 
 
39
 
 
40
 
 
41
TRUECSRC =
 
42
 
 
43
DEPENDINCLUDE = 
 
44
 
 
45
LIBOBJ = $(TRUECSRC:%.c=%.o) $(CXXSRC:%.cc=%.o)
77
46
 
78
47
include ../MakeRules
79
48
 
81
50
include $(LIBOBJ:%.o=%.d)
82
51
endif
83
52
 
84
 
install_inc:: libciomr.h iomrparam.h
85
 
        $(MKDIRS) $(incdir)/libciomr
86
 
        $(INSTALL_INCLUDE) $^ $(incdir)/libciomr
 
53
install_inc:: libciomr.h
 
54
        $(MKDIRS) $(DESTDIR)$(incdir)/libciomr
 
55
        $(INSTALL_INCLUDE) $^ $(DESTDIR)$(incdir)/libciomr