diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-04-17 05:09:23 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-04-17 05:09:23 +0000 |
commit | f4da34146408703c0a96714b9c456d479528d47c (patch) | |
tree | 06dd34b942c259c8445b43b0e3ad047219ed456f /sbin/pdisk/Makefile | |
parent | 7c76c3dbb074fcd67c7828d223be2d33390b2224 (diff) |
Add pdisk to list of programs to build for powerpc, all other archs
will build the manpage, with the proper destination.
Diffstat (limited to 'sbin/pdisk/Makefile')
-rw-r--r-- | sbin/pdisk/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sbin/pdisk/Makefile b/sbin/pdisk/Makefile index ee2535b800b..2c6ea886f01 100644 --- a/sbin/pdisk/Makefile +++ b/sbin/pdisk/Makefile @@ -1,10 +1,15 @@ -# $Id: Makefile,v 1.1 2001/03/24 00:20:59 drahn Exp $ +# $Id: Makefile,v 1.2 2001/04/17 05:09:22 drahn Exp $ +.if ${MACHINE} == "powerpc PROG= pdisk SRCS= pdisk.c dump.c partition_map.c convert.c io.c errors.c bitfield.c \ deblock_media.c file_media.c media.c pathname.c util.c validate.c +.else +NOPROG=yes +.endif MAN= pdisk.8 +MANSUBDIR=powerpc .include <bsd.prog.mk> |