-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmakefile.am
75 lines (67 loc) · 1.92 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
# vi: ff=unix
## Process this file with automake to produce Makefile.in
#
# Information for automake
# TODO: Figure out how this works, and how this works with
# the different version of the automake tool set.
#
AUTOMAKE_OPTIONS = dist-zip dist-bzip2
SUBDIRS = Source Docs
# TODO: if we define docdir configure.in do we still need to define
# it here and in Docs/makefile.am ?
#if FINK
#docdir = $(prefix)/share/doc/$(PACKAGE)
#else
#docdir = $(prefix)/doc/$(PACKAGE)-$(VERSION)
#endif
doc_DATA = AUTHORS COPYING ChangeLog INSTALL NEWS README.md UPGRADE
if FINK
contributiondir = ${docdir}/Contributions
dist_contribution_DATA = \
Contributions/robodoc2pod.pl \
Contributions/robodoc.kaptn
exampledir = ${docdir}/Examples/PerlExample
dist_example_DATA = \
Examples/PerlExample/robodoc.rc
examplesubdir = ${docdir}/Examples/PerlExample/Source
dist_examplesub_DATA = \
Examples/PerlExample/Source/Box/RectangularBox.pm \
Examples/PerlExample/Source/Box/SquareBox.pm \
Examples/PerlExample/Source/Box.pm \
Examples/PerlExample/Source/Cargo.txt \
Examples/PerlExample/Source/Loader.txt \
Examples/PerlExample/Source/SmartLoader.pm \
Examples/PerlExample/Source/TruckPacker.pl
endif
if FINK
EXTRA_DIST = \
UPGRADE \
README.md \
Docs/robodoc_example.rc \
Docs/manual.html \
Docs/manual.css
else
EXTRA_DIST = \
INSTALL.cygwin \
UPGRADE \
README.md \
Docs/robodoc_example.rc \
Docs/manual.html \
Docs/manual.css \
Contributions/robodoc2pod.pl \
Contributions/robodoc.kaptn \
Source/makefile.plain \
Source/makefile.mingw \
Source/makefile.mingw-cygwin \
Examples/PerlExample/robodoc.rc \
Examples/PerlExample/Source/Box/RectangularBox.pm \
Examples/PerlExample/Source/Box/SquareBox.pm \
Examples/PerlExample/Source/Box.pm \
Examples/PerlExample/Source/Cargo.txt \
Examples/PerlExample/Source/Loader.txt \
Examples/PerlExample/Source/SmartLoader.pm \
Examples/PerlExample/Source/TruckPacker.pl
endif
#
# End of automake stuff
#