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

« back to all changes in this revision

Viewing changes to lefty/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
SUBDIRS = ws os cs2l dot2l examples
 
6
 
 
7
leftydir = $(libdir)/@PACKAGE@/lefty
 
8
 
 
9
CFLAGS = @CFLAGS@ -DDATE="\"`date`\"" -DLEFTYPATH=\"${leftydir}\" -DHAVEDOT @NO_CNT_IN_FILESTRUCT@
 
10
 
 
11
noinst_HEADERS = code.h common.h display.h exec.h g.h gfxview.h internal.h \
 
12
        io.h lex.h mem.h parse.h str.h tbl.h txtview.h
 
13
bin_PROGRAMS = lefty
 
14
man_MANS = lefty.1
 
15
 
 
16
lefty_SCRIPTS = lefty.psp
 
17
 
 
18
EXTRA_DIST = $(man_MANS) colors.txt lefty.psp aix_mods/* \
 
19
        nmakefile Makefile.IN
 
20
 
 
21
INCLUDES = \
 
22
        @X_CFLAGS@ \
 
23
        -I$(srcdir)/ws/x11 \
 
24
        -I$(srcdir)/os/unix \
 
25
        -I$(srcdir)/dot2l \
 
26
        @EXTRA_INCLUDES@ \
 
27
        @XAW_INCLUDES@
 
28
 
 
29
lefty_SOURCES = code.c common.c display.c exec.c g.c gfxview.c internal.c \
 
30
        lefty.c lex.c mem.c parse.c str.c tbl.c txtview.c \
 
31
        code.h common.h display.h exec.h g.h gfxview.h internal.h \
 
32
        io.h lex.h mem.h parse.h str.h tbl.h txtview.h
 
33
 
 
34
lefty_LDADD = \
 
35
        dot2l/libdot2l.la \
 
36
        ws/x11/libws.la \
 
37
        ws/x11/libfilereq/libfilereq.la \
 
38
        os/unix/libos.la \
 
39
        @EXTRA_LIBS@ @X_LIBS@ @XAW_LIBS@ @X_PRE_LIBS@ \
 
40
        -lXaw -lXmu -lXt -lXext -lX11 \
 
41
        @SOCKET_LIBS@
 
42