~ubuntu-branches/ubuntu/precise/qhull/precise

« back to all changes in this revision

Viewing changes to config/Makefile-am-src

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2004-02-01 01:14:13 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040201011413-gok3tzufxn804osb
Tags: 2003.1-1
* New upstream release.  There are backward incompatibilities in the code
  and the soversion was bumped to libqhull5.
* debian/rules:
  - Major rewrite of build and install rules, since we are using now the
    upstream tarball generated with "make dist".
  - Added config rule.
  - Use dpatch to patch src/user.h (enable qh_QHpointer).
* debian/control:
  - Removed build-dependencies on autoconf, automake, and libtool.
  - Build-depends on dpatch.
  - Changed section of libqhull-dev package to libdevel.
* debian/libqhull-dev.files: Added usr/share/doc/libqhull5/src
  directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
### Makefile.am for the qhull package (src)
 
2
### Author: Rafael Laboissiere <rafael@debian.org>
 
3
### Created: Mon Dec  3 21:36:21 CET 2001
 
4
 
 
5
### Shared Library
 
6
 
 
7
# to:
 
8
lib_LTLIBRARIES = libqhull.la
 
9
 
 
10
# from:
 
11
libqhull_la_SOURCES = \
 
12
  user.c              \
 
13
  global.c            \
 
14
  stat.c              \
 
15
  io.c                \
 
16
  geom2.c             \
 
17
  poly2.c             \
 
18
  merge.c             \
 
19
  qhull.c             \
 
20
  geom.c              \
 
21
  poly.c              \
 
22
  qset.c              \
 
23
  mem.c
 
24
 
 
25
# how:
 
26
libqhull_la_LDFLAGS = -version-info 5:0:0 -lm
 
27
 
 
28
### Utility programs
 
29
 
 
30
# to:
 
31
bin_PROGRAMS = qhull rbox qconvex qdelaunay qvoronoi qhalf
 
32
 
 
33
# from:
 
34
qhull_SOURCES = unix.c
 
35
rbox_SOURCES = rbox.c
 
36
qconvex_SOURCES = qconvex.c
 
37
qdelaunay_SOURCES = qdelaun.c
 
38
qvoronoi_SOURCES = qvoronoi.c
 
39
qhalf_SOURCES = qhalf.c
 
40
 
 
41
# how:
 
42
qhull_LDADD = libqhull.la
 
43
rbox_LDADD = libqhull.la
 
44
qconvex_LDADD = libqhull.la
 
45
qdelaunay_LDADD = libqhull.la
 
46
qvoronoi_LDADD = libqhull.la
 
47
qhalf_LDADD = libqhull.la
 
48
 
 
49
### Include files
 
50
 
 
51
pkginclude_HEADERS = \
 
52
  geom.h             \
 
53
  mem.h              \
 
54
  poly.h             \
 
55
  qhull_a.h          \
 
56
  stat.h             \
 
57
  io.h               \
 
58
  merge.h            \
 
59
  qhull.h            \
 
60
  qset.h             \
 
61
  user.h
 
62
 
 
63
 
 
64
### Example programs
 
65
 
 
66
# to:
 
67
docdir = $(prefix)/share/doc/$(PACKAGE)
 
68
examplesdir = $(docdir)/examples
 
69
 
 
70
# which:
 
71
examples_DATA =       \
 
72
  user_eg.c           \
 
73
  user_eg2.c          \
 
74
  qhull_interface.cpp \
 
75
  Makefile.txt        \
 
76
  Mborland
 
77
 
 
78
doc_DATA =     \
 
79
  Changes.txt  \
 
80
  index.htm    \
 
81
  qh-geom.htm  \
 
82
  qh-globa.htm \
 
83
  qh-io.htm    \
 
84
  qh-mem.htm   \
 
85
  qh-merge.htm \
 
86
  qh-poly.htm  \
 
87
  qh-qhull.htm \
 
88
  qh-set.htm   \
 
89
  qh-stat.htm  \
 
90
  qh-user.htm
 
91
 
 
92
 
 
93
### Extra files to be included in the tarball
 
94
 
 
95
EXTRA_DIST =       \
 
96
  $(doc_DATA)      \
 
97
  $(examples_DATA)