diff options
-rw-r--r-- | usr.bin/pcc/ccom/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/pcc/ccom/Makefile b/usr.bin/pcc/ccom/Makefile index 52406f7ac61..4367db43b8b 100644 --- a/usr.bin/pcc/ccom/Makefile +++ b/usr.bin/pcc/ccom/Makefile @@ -1,9 +1,12 @@ -# $OpenBSD: Makefile,v 1.1 2007/10/07 17:58:51 otto Exp $ +# $OpenBSD: Makefile,v 1.2 2007/10/14 20:29:27 otto Exp $ # # Makefile for the ccom part of pcc. # +.if ${MACHINE_ARCH} == "i386" SUBDIR+= x86 -#SUBDIR+= vax +.else +SUBDIR+= ${MACHINE_ARCH} +.endif .include <bsd.subdir.mk> |