NetBSD/lib/csu/Makefile
cgd 53ded8ebcb add a hack so that old- and new-toolchain alphas do the right thing:
include bsd.own.mk early on, and if !alpha or if !ELF_TOOLCHAIN,
build c++rt0.o.  ELF alphas don't use the 'normal' C++ runtime startup
routines.  Eventually, there should be better ways to distinguish what
toolchain and object format is in use, and the Alpha C++ startup code
changes should be merged with that used by the other ports.
1996-10-08 00:36:28 +00:00

12 lines
243 B
Makefile

# $Id: Makefile,v 1.6 1996/10/08 00:36:28 cgd Exp $
.include <bsd.own.mk> # for ELF_TOOLCHAIN defn on alpha
SUBDIR= ${MACHINE_ARCH}
.if (${MACHINE_ARCH} != "alpha" || !defined(ELF_TOOLCHAIN))
SUBDIR+= c++
.endif
.include <bsd.subdir.mk>