diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 1997-11-08 08:13:11 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 1997-11-08 08:13:11 +0000 |
commit | 68ae6cd010d3c454c7c1e7fe6b59eab10e0706bb (patch) | |
tree | e937246091e4490a1f8849bf4fe3e57fb2e8f27e /lib | |
parent | 4e51351a1227b734994c023be8ffe8ebd7c1ab08 (diff) |
make obj thingies.
Diffstat (limited to 'lib')
-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> |