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

« back to all changes in this revision

Viewing changes to tkspline/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
LIBS=
 
4
 
 
5
AUTOMAKE_OPTIONS = 1.4
 
6
 
 
7
SUBDIRS = demo
 
8
 
 
9
pkglib_LTLIBRARIES = libtkspline.la
 
10
man_MANS = tkspline.n
 
11
 
 
12
INCLUDES = \
 
13
        @X_CFLAGS@ \
 
14
        @TCL_CFLAGS@ \
 
15
        @TK_CFLAGS@ \
 
16
        @TCLINT_INCLUDES@ \
 
17
        @TKINT_INCLUDES@ \
 
18
        -I@TK_EXEC_PREFIX@/include \
 
19
        -I@TCLSH_EXEC_PREFIX@/include 
 
20
 
 
21
libtkspline_la_SOURCES = tkspline.c
 
22
 
 
23
libtkspline_la_LIBADD = \
 
24
        ../tkstubs/libtkstubs.la \
 
25
        ../tclstubs/libtclstubs.la 
 
26
 
 
27
all-local: pkgIndex.tcl
 
28
 
 
29
pkgIndex.tcl:
 
30
        echo 'package ifneeded Tkspline $(VERSION) "' > pkgIndex.tcl
 
31
        echo '  package require Tk 8.3' >> pkgIndex.tcl
 
32
        echo '  load [file join $$dir libtkspline.so] Tkspline"' >> pkgIndex.tcl
 
33
 
 
34
CLEANFILES = pkgIndex.tcl
 
35
 
 
36
EXTRA_DIST = $(man_MANS)