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

« back to all changes in this revision

Viewing changes to plugin/dot_layout/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.3 2007/10/11 18:14:10 ellson Exp $ $Revision: 1.3 $
 
1
# $Id: Makefile.am,v 1.5 2008/02/28 03:29:52 glenlow Exp $ $Revision: 1.5 $
2
2
## Process this file with automake to produce Makefile.in
3
3
 
4
4
AM_CPPFLAGS = \
12
12
 
13
13
noinst_LTLIBRARIES = libgvplugin_dot_layout_C.la
14
14
 
 
15
if WITH_WIN32
 
16
lib_LTLIBRARIES = libgvplugin_dot_layout.la
 
17
else
15
18
pkglib_LTLIBRARIES = libgvplugin_dot_layout.la
 
19
endif
16
20
 
17
21
libgvplugin_dot_layout_C_la_SOURCES = \
18
22
        gvplugin_dot_layout.c \
25
29
libgvplugin_dot_layout_la_LIBADD = $(libgvplugin_dot_layout_C_la_LIBADD) \
26
30
        $(top_builddir)/lib/gvc/libgvc.la \
27
31
        $(top_builddir)/lib/pathplan/libpathplan.la
 
32
        
 
33
if WITH_WIN32
 
34
libgvplugin_dot_layout_la_LDFLAGS += -no-undefined
 
35
libgvplugin_dot_layout_la_LIBADD += $(top_builddir)/lib/graph/libgraph.la
 
36
endif
28
37
 
29
38
EXTRA_DIST = Makefile.old
30
39