~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to tcldgr/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
AUTOMAKE_OPTIONS = 1.4
 
4
 
 
5
LIBS=
 
6
 
 
7
SUBDIRS = demo
 
8
 
 
9
noinst_HEADERS = dgr.h
 
10
pkglib_LTLIBRARIES = libtcldgr.la
 
11
man_MANS = tcldgr.n
 
12
 
 
13
libtcldgr_la_SOURCES = dgedge.c dgnode.c dgr.c dgraph.c dgrutil.c dgr.h
 
14
 
 
15
INCLUDES = \
 
16
        @TCL_CFLAGS@ \
 
17
        -I$(top_srcdir)/agraph \
 
18
        -I$(top_srcdir)/cdt \
 
19
        -I$(top_srcdir)/tclhandle \
 
20
        -I@TCLSH_EXEC_PREFIX@/include 
 
21
 
 
22
libtcldgr_la_LIBADD = \
 
23
        ../tclhandle/libtclhandle.la \
 
24
        ../agraph/libagraph.la \
 
25
        ../cdt/libcdt.la \
 
26
        ../tclstubs/libtclstubs.la
 
27
 
 
28
all-local: pkgIndex.tcl
 
29
 
 
30
pkgIndex.tcl:
 
31
        echo 'package ifneeded Tcldgr $(VERSION) "' > pkgIndex.tcl
 
32
        echo '  load [file join $$dir libtcldgr.so] Tcldgr"' >> pkgIndex.tcl
 
33
 
 
34
test:
 
35
        echo 'load .libs/libtcldgr.so Tcldgr ; cd tests ; source all' | tclsh8.3
 
36
 
 
37
CLEANFILES = pkgIndex.tcl
 
38
 
 
39
EXTRA_DIST = $(man_MANS)