blob: 33947c87f18851964694de2217abec3f453acc21 (
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
|
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
pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL
plextract = c2ph h2ph h2xs perlbug perldoc pl2pm
all: $(plextract)
$(plextract):
$(PERL) -I../lib $@.PL
clean:
realclean:
rm -rf $(plextract) pstruct
clobber: realclean
distclean: clobber
|