~ubuntu-branches/debian/stretch/openbabel/stretch

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Leidert (dale)
  • Date: 2009-07-17 00:18:06 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090717001806-sy3mzs3e1d1adbs9
Tags: 2.2.2-2
* debian/control (Uploaders): Removed LI Daobing. Thanks for your work!
  (Standards-Version): Bumped to 3.8.2.
  (Vcs-Svn): Fixed vcs-field-uses-not-recommended-uri-format.
* debian/patches/537102_fix_tr1_memory_detection.patch: Added.
  - configure.in, configure, src/config.h.in: Fix detection of tr1/memory to
    prevent building the package with boost (closes: #537102).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
EXTRA_DIST = \
2
2
        strncasecmp.c snprintf.c snprintf.h zipstream.h zipstreamimpl.h \
3
 
        dlhandler_win32.cpp CMakeLists.txt RDKitConv.cpp config.h.cmake
 
3
        CMakeLists.txt RDKitConv.cpp config.h.cmake
4
4
 
5
5
if BUILD_SHARED
6
6
thisdir = .
14
14
 
15
15
lib_LTLIBRARIES = libopenbabel.la
16
16
 
17
 
if BUILD_SHARED
18
 
dlhandler = dlhandler_unix.cpp
 
17
if BUILD_SHARED_UNIX
 
18
# Unix, e.g., Linux, Mac, BSD, Solaris, etc.
 
19
   dlhandler_unix = dlhandler_unix.cpp
 
20
else 
 
21
         dlhandler_unix = 
 
22
endif
 
23
 
 
24
if BUILD_SHARED_WIN
 
25
# MinGW
 
26
   dlhandler_win32 = dlhandler_win32.cpp
19
27
else
20
 
dlhandler = 
 
28
         dlhandler_win32 = 
21
29
endif
22
30
 
23
31
libopenbabel_la_SOURCES = \
31
39
                molchrg.cpp \
32
40
                obconversion.cpp oberror.cpp obiter.cpp \
33
41
                obmolecformat.cpp obutil.cpp \
34
 
                ops.cpp \
 
42
                op.cpp ops.cpp \
35
43
                parsmart.cpp \
36
44
                patty.cpp phmodel.cpp plugin.cpp \
37
45
                pointgroup.cpp \
38
46
                rand.cpp residue.cpp ring.cpp \
39
47
                rotor.cpp rotamer.cpp \
40
48
                tokenst.cpp typer.cpp \
41
 
                transform.cpp $(dlhandler)
 
49
                transform.cpp $(dlhandler_unix) $(dlhandler_win32)
42
50
 
43
 
libopenbabel_la_LDFLAGS = -version-info 3:1:0 -no-undefined
 
51
libopenbabel_la_LDFLAGS = -version-info 3:2:0 -no-undefined
44
52
 
45
53
if BUILD_SHARED
46
54
AM_CPPFLAGS = -DOB_MODULE_PATH=\"$(pkglibdir)/$(VERSION)\" -DUSING_DYNAMIC_LIBS