Use perl, not perl5 to compile interfaces.

This commit is contained in:
Doug Rabson 1999-04-18 13:31:23 +00:00
parent 44e568e2a1
commit 8c1cc362b8

View File

@ -1,4 +1,4 @@
# $Id$
# $Id: Makefile,v 1.1 1999/04/16 21:52:27 peter Exp $
S = ${.CURDIR}/../..
.PATH: $S/pci
@ -17,12 +17,12 @@ opt_bdg.h:
touch opt_bdg.h
device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m
perl5 $S/kern/makedevops.pl -h $S/kern/device_if.m
perl $S/kern/makedevops.pl -h $S/kern/device_if.m
bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
perl5 $S/kern/makedevops.pl -h $S/kern/bus_if.m
perl $S/kern/makedevops.pl -h $S/kern/bus_if.m
pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
perl5 $S/kern/makedevops.pl -h $S/pci/pci_if.m
perl $S/kern/makedevops.pl -h $S/pci/pci_if.m
.include <bsd.kmod.mk>