blob: 9dd24642f2c3631a0a9036d3b3ef025f827d9fdc (
plain)
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
|
PERL = ../miniperl
# Files to be built with variable substitution after miniperl is
# available. Dependencies handled manually below (for now).
pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL splain.PL
plextract = c2ph h2ph h2xs perlbug perldoc pl2pm splain
all: $(plextract)
$(plextract):
$(PERL) -I../lib $@.PL
c2ph: c2ph.PL
h2ph: h2ph.PL
h2xs: h2xs.PL
perlbug: perlbug.PL
perldoc: perldoc.PL
pl2pm: pl2pm.PL
splain: splain.PL ../lib/diagnostics.pm
clean:
realclean:
rm -rf $(plextract) pstruct
clobber: realclean
distclean: clobber
|