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

« back to all changes in this revision

Viewing changes to agraph/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
#YFLAGS = -dv -pag_yy
 
8
#LFLAGS = -Pag_yy -olex.yy.c
 
9
 
 
10
noinst_HEADERS = aghdr.h agraph.h malloc.h vmstub.h grammar.h
 
11
 
 
12
noinst_LTLIBRARIES = libagraph.la
 
13
man_MANS = agraph.3
 
14
 
 
15
libagraph_la_SOURCES = agerror.c apply.c attr.c \
 
16
        edge.c flatten.c grammar.y graph.c id.c imap.c io.c \
 
17
        mem.c node.c obj.c pend.c rec.c refstr.c scan.l subg.c \
 
18
        utils.c write.c aghdr.h agraph.h malloc.h vmstub.h
 
19
 
 
20
INCLUDES = -I$(top_srcdir)/cdt
 
21
 
 
22
scan.o scan.lo : scan.c grammar.h
 
23
 
 
24
scan.c: scan.l
 
25
        $(LEX) -oscan.t scan.l
 
26
        $(SED) "s/yy/ag_yy/g" < scan.t > scan.c
 
27
        rm scan.t
 
28
 
 
29
grammar.c : grammar.y
 
30
        $(YACC) -dv grammar.y
 
31
        $(SED) "s/yy/ag_yy/g" < y.tab.c > grammar.c
 
32
        $(SED) "s/yy/ag_yy/g" < y.tab.h > grammar.h
 
33
        rm y.tab.c y.tab.h
 
34
 
 
35
grammar.h : grammar.c
 
36
 
 
37
DISTCLEANFILES = y.output
 
38
 
 
39
EXTRA_DIST = $(man_MANS) nmakefile Makefile.IN cmpnd.c dotdge.c \
 
40
        grammar.grammar main.c tester.c README grammar.c grammar.h scan.c
 
41