This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
sdbm can fail if a config.h exists in system directories
[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
16
17 h2ph:           h2ph.PL
18
19 perlbug:        perlbug.PL
20
21 perldoc:        perldoc.PL
22
23 pl2pm:          pl2pm.PL
24
25 splain:         splain.PL ../lib/diagnostics.pm
26
27 clean:
28
29 realclean:
30         rm -rf $(plextract) pstruct
31
32 clobber:        realclean
33
34 distclean:      clobber