diff options
-rw-r--r-- | lib/csu/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/csu/Makefile b/lib/csu/Makefile index 0c56287c294..8eae87abc1b 100644 --- a/lib/csu/Makefile +++ b/lib/csu/Makefile @@ -1,5 +1,11 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:41:17 deraadt Exp $ +# $Id: Makefile,v 1.2 1997/11/08 08:13:10 todd Exp $ -SUBDIR= ${MACHINE_ARCH} c++ +.if make(obj) +SUBDIR= alpha i386 m68k mips mvme88k ns32k powerpc sparc vax +.else +SUBDIR= ${MACHINE_ARCH} +.endif + +SUBDIR+= c++ .include <bsd.subdir.mk> |