This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix utils/perldoc.PL for dos-djgpp:
[perl5.git] / utils / Makefile
1
2 PERL = ../miniperl
3
4 # Files to be built with variable substitution after miniperl is
5 # available.  Dependencies handled manually below (for now).
6
7 pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL splain.PL
8 plextract  = c2ph h2ph h2xs perlbug perldoc pl2pm splain
9
10 all: $(plextract)
11
12 $(plextract):
13         $(PERL) -I../lib $@.PL
14
15 c2ph:           c2ph.PL ../config.sh
16
17 h2ph:           h2ph.PL ../config.sh
18
19 h2xs:           h2xs.PL ../config.sh
20
21 perlbug:        perlbug.PL ../config.sh ../patchlevel.h
22
23 perldoc:        perldoc.PL ../config.sh
24
25 pl2pm:          pl2pm.PL ../config.sh
26
27 splain:         splain.PL ../config.sh ../lib/diagnostics.pm
28
29 clean:
30
31 realclean:
32         rm -rf $(plextract) pstruct
33
34 clobber:        realclean
35
36 distclean:      clobber