Home | History | Annotate | Line # | Download | only in csu
Makefile revision 1.22
      1  1.22    itojun #	$NetBSD: Makefile,v 1.22 2001/01/08 08:30:00 itojun Exp $
      2   1.6       cgd 
      3  1.13  christos .include <bsd.own.mk>
      4  1.13  christos 
      5  1.20    simonb .if ${OBJECT_FMT} == "ELF" && exists(${MACHINE_ARCH}_elf)
      6  1.13  christos SUBDIR=	${MACHINE_ARCH}_elf
      7  1.22    itojun .elif ${OBJECT_FMT} == "ELF" && exists(${MACHINE_CPU}_elf)
      8  1.22    itojun SUBDIR=	${MACHINE_ARCH}_elf
      9  1.22    itojun .elif exists(${MACHINE_ARCH})
     10  1.22    itojun SUBDIR=	${MACHINE_ARCH}
     11  1.22    itojun .elif exists(${MACHINE_CPU})
     12  1.22    itojun SUBDIR=	${MACHINE_CPU}
     13  1.13  christos .else
     14  1.22    itojun .BEGIN:
     15  1.22    itojun 	@echo no SUBDIR for ${MACHINE_ARCH}_elf, ${MACHINE_ARCH} nor ${MACHINE_CPU}
     16  1.22    itojun 	@false
     17  1.13  christos .endif
     18   1.6       cgd 
     19  1.19   thorpej .if (${OBJECT_FMT} != "ELF" && ${MACHINE_ARCH} != "arm32")
     20   1.6       cgd SUBDIR+= c++
     21   1.6       cgd .endif
     22   1.1       cgd 
     23   1.1       cgd .include <bsd.subdir.mk>
     24