NetBSD/usr.bin/ldd/Makefile
pk 21e1fe821f Move a.out version of ldd(1) to the usr.bin tree; elf and a.out
reside in separate subdirectories (various source moved by
repository copying). Adapt Makefiles to new situation.
1998-12-15 22:07:11 +00:00

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>