~ubuntu-branches/ubuntu/lucid/graphviz/lucid-updates

« back to all changes in this revision

Viewing changes to plugin/devil/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2008-06-19 20:23:23 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080619202323-ls23h96ntj9ny94m
Tags: 2.18-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Build depend on liblualib50-dev instead of liblua5.1-0-dev.
  - Drop libttf-dev (libttf-dev is in universe) (LP: #174749).
  - Replace gs-common with ghostscript.
  - Build-depend on python-dev instead of python2.4-dev or python2.5-dev.
  - Mention the correct python version for the python bindings in the
    package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile.am,v 1.6 2007/10/11 18:14:10 ellson Exp $ $Revision: 1.6 $
 
1
# $Id: Makefile.am,v 1.8 2008/02/28 03:29:52 glenlow Exp $ $Revision: 1.8 $
2
2
## Process this file with automake to produce Makefile.in
3
3
 
4
4
AM_CPPFLAGS = \
12
12
 
13
13
if WITH_DEVIL
14
14
noinst_LTLIBRARIES = libgvplugin_devil_C.la
 
15
if WITH_WIN32
 
16
lib_LTLIBRARIES = libgvplugin_devil.la
 
17
else
15
18
pkglib_LTLIBRARIES = libgvplugin_devil.la
16
19
endif
 
20
endif
17
21
 
18
22
libgvplugin_devil_C_la_SOURCES = \
19
23
        gvplugin_devil.c \
23
27
libgvplugin_devil_la_SOURCES = $(libgvplugin_devil_C_la_SOURCES)
24
28
libgvplugin_devil_la_LIBADD = @DEVIL_LIBS@
25
29
 
 
30
if WITH_WIN32
 
31
libgvplugin_devil_la_LDFLAGS += -no-undefined
 
32
endif
 
33
 
26
34
EXTRA_DIST = Makefile.old
27
35