-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile.am
83 lines (75 loc) · 2.11 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
82
83
# vi: ff=unix
## Process this file with automake to produce Makefile.in
# $Id: makefile.am,v 1.27 2007/02/06 23:25:34 gumpu Exp $
#
# 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
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 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 \
Docs/robodoc.1 \
Docs/robohdrs.1 \
Docs/robodoc.rc \
Docs/manual.html \
Docs/manual.css
else
EXTRA_DIST = \
UPGRADE \
Docs/robodoc.1 \
Docs/robohdrs.1 \
Docs/robodoc.rc \
Docs/manual.html \
Docs/manual.css \
Contributions/robodoc2pod.pl \
Contributions/robodoc.kaptn \
Source/makefile.plain \
Source/makefile.bcc \
Source/makefile.wingcc \
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 \
Win32/robodoc.dsp \
Win32/robodoc.dsw \
Win32/robodoc.sln \
Win32/robodoc.vcproj
endif
#
# End of automake stuff
#