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

« back to all changes in this revision

Viewing changes to tcldgl/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 = dgl.h
 
10
pkglib_LTLIBRARIES = libtcldgl.la
 
11
man_MANS = tcldgl.n
 
12
 
 
13
libtcldgl_la_SOURCES = dgl.c dglayout.c dglshape.c dglutil.c dgl.h
 
14
 
 
15
INCLUDES = \
 
16
        @TCL_CFLAGS@ \
 
17
        -I$(top_srcdir)/agraph \
 
18
        -I$(top_srcdir)/cdt \
 
19
        -I$(top_srcdir)/tclhandle \
 
20
        -I$(top_srcdir)/incr \
 
21
        -I$(top_srcdir)/shape \
 
22
        -I@TCLSH_EXEC_PREFIX@/include 
 
23
 
 
24
libtcldgl_la_LIBADD = \
 
25
        ../tclhandle/libtclhandle.la \
 
26
        ../agraph/libagraph.la \
 
27
        ../cdt/libcdt.la \
 
28
        ../fdp/libfdp.la \
 
29
        ../dag/libdag.la \
 
30
        ../geo/libgeo.la \
 
31
        ../grid/libgrid.la \
 
32
        ../incr/libincr.la \
 
33
        ../pathplan/libpathplan.la \
 
34
        ../agutil/libagutil.la \
 
35
        ../shape/libshape.la \
 
36
        ../ns/libns.la \
 
37
        ../tclstubs/libtclstubs.la \
 
38
        -lc -lm
 
39
 
 
40
all-local: pkgIndex.tcl
 
41
 
 
42
pkgIndex.tcl:
 
43
        echo 'package ifneeded Tcldgl $(VERSION) "' > pkgIndex.tcl
 
44
        echo '  load [file join $$dir libtcldgl.so] Tcldgl"' >> pkgIndex.tcl
 
45
 
 
46
test:
 
47
        echo 'load .libs/libtcldgl.so Tcldgl ; cd tests ; source all' | tclsh8.3
 
48
 
 
49
CLEANFILES = pkgIndex.tcl
 
50
 
 
51
EXTRA_DIST = $(man_MANS)