mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-10 00:13:04 +01:00
10 lines
113 B
Makefile
10 lines
113 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= ldd
|
|
SRCS= ldd.c
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SRCS+= sods.c
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|