21e1fe821f
reside in separate subdirectories (various source moved by repository copying). Adapt Makefiles to new situation.
15 lines
248 B
Makefile
15 lines
248 B
Makefile
# $NetBSD: Makefile,v 1.7 1998/12/15 22:07:11 pk Exp $
|
|
#
|
|
# ldd(1) is toolchain dependent
|
|
#
|
|
|
|
.include <bsd.own.mk> # get OBJECT_FMT definition
|
|
|
|
.if (${OBJECT_FMT} == "ELF")
|
|
SUBDIR+= ldd_elf
|
|
.else
|
|
SUBDIR+= ldd_aout
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|