diff options
author | is <is> | 1998-07-07 21:36:09 +0000 |
---|---|---|
committer | is <is> | 1998-07-07 21:36:09 +0000 |
commit | 54f56bbe5e5cedb4ec06611bc2389b83f179701a (patch) | |
tree | b26ecd873966b09b0acfc648783db495daff6723 /security/pgp2 | |
parent | 895ad2f4e7a324d1769770aa93682f3b443a3b68 (diff) | |
download | pkgsrc-54f56bbe5e5cedb4ec06611bc2389b83f179701a.tar.gz |
Zero order 68060 patch. Compile with "make M68060=1 $OTHEROPTIONS" for
68060 target machines.
Diffstat (limited to 'security/pgp2')
-rw-r--r-- | security/pgp2/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/pgp2/Makefile b/security/pgp2/Makefile index b25e0cce53c..7fa80709d3c 100644 --- a/security/pgp2/Makefile +++ b/security/pgp2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 1998/06/22 13:06:18 agc Exp $ +# $NetBSD: Makefile,v 1.11 1998/07/07 21:36:09 is Exp $ # FreeBSD Id: Makefile,v 1.20 1997/08/27 13:06:01 ache Exp # @@ -38,8 +38,13 @@ IS_INTERACTIVE= yes OBJS_EXT= _80386.o _zmatch.o ASMFLAG= -DASM .elif ${MACHINE_ARCH} == "m68k" +.ifdef M68060 +OBJS_EXT= +ASMFLAG= -m68060 -DPORTABLE -DMPORTABLE +.else OBJS_EXT= mc68020.o ASMFLAG= +.endif .elif ${MACHINE_ARCH} == "sparc" OBJS_EXT= sparc.o ASMFLAG= |