1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29.KEEP_STATE:
30
31include ../../../../Makefile.cmd
32include ../../Makefile.perlcfg
33 
34PL_SRCS = \
35    c2ph.PL \
36    cpan.PL \
37    dprofpp.PL \
38    enc2xs.PL \
39    h2ph.PL \
40    h2xs.PL \
41    instmodsh.PL \
42    libnetcfg.PL \
43    perlbug.PL \
44    perlcc.PL \
45    perldoc.PL \
46    perlivp.PL \
47    piconv.PL \
48    pl2pm.PL \
49    prove.PL \
50    splain.PL \
51    xsubpp.PL
52
53PL_TARGS = $(PL_SRCS:%.PL=%)
54
55TARGS = $(PL_TARGS)
56CLOBBERFILES = $(TARGS) pstruct
57
58all: $(TARGS)
59
60$(PL_TARGS):
61	$(RUN_MINIPERL) $@.PL
62
63.PARALLEL: $(PL_TARGS)
64
65$(PL_TARGS): ../lib/Config.pm
66
67perlbug: ../patchlevel.h
68
69splain: ../lib/diagnostics.pm
70
71clean:
72
73include ../../../../Makefile.targ
74