-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
executable file
·81 lines (64 loc) · 1.4 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
# Makefile.am for AFT
# 2002/03/16 [email protected]
#
SUFFIXES=.dat .pm
.dat.pm:
@PERL@ compile.pl $<
aft2rtf-doc.rtf: aft2rtf-doc.aft
@PERL@ aft.pl --type=rtf aft2rtf-doc.aft
aft-refman.html: aft-refman.aft
@PERL@ aft.pl --type=bn-html aft-refman.aft
@PERL@ aft.pl --type=bn-html aft-refman.aft
aft.pl: aft.in
@PERL@ -p -e 's|use lib.*|use lib ".";|' aft.in >aft.pl
chmod a+x aft.pl
Makefile: $(BUILT_SOURCES)
bin_SCRIPTS=aft
BUILT_SOURCES=\
aft.pl \
aft-dbarticle.pm \
aft-bn-html.pm \
aft-html.pm \
aft-lout.pm \
aft-loutbook.pm \
aft-loutreport.pm \
aft-rtf.pm \
aft-tex.pm \
aft-xhtml.pm
pkgdata_DATA=$(BUILT_SOURCES) AFT.pm
pkgdata_SCRIPTS=compile.pl postrtf.pl launch_ie.pl
DOCS=aft2rtf-doc.rtf aft-refman.html
TOCS=aft2rtf-doc.aft-TOC aft-refman.aft-TOC
MISCDOCS=aft.gif aft.jpg aft.eps ChangeLog.aft
docdir=$(datadir)/doc/@PACKAGE@
examplesdir=$(docdir)/examples
backendsdir=$(docdir)/backends
doc_DATA=$(DOCS) $(MISCDOCS)
examples_DATA=\
aft.aft \
aft-refman.aft \
aft2rtf-doc.aft
backends_DATA=\
aft-dbarticle.dat \
aft-bn-html.dat \
aft-html.dat \
aft-lout.dat \
aft-loutbook.dat \
aft-loutreport.dat \
aft-rtf.dat \
aft-tex.dat \
aft-xhtml.dat
MOSTLYCLEANFILES=$(DOCS) $(TOCS) $(BUILT_SOURCES)
EXTRA_DIST=\
$(pkgdata_SCRIPTS) \
$(MISCDOCS) \
$(examples_DATA) \
$(backends_DATA) \
AFT.pm \
LICENSE.txt \
Makefile.cvs \
install.pl \
trip-1.aft \
trip.aft
#EOF