xref: /dragonfly/usr.bin/ldd/Makefile (revision 6e285212)
1# $FreeBSD: src/usr.bin/ldd/Makefile,v 1.11 1999/08/28 01:02:42 peter Exp $
2# $DragonFly: src/usr.bin/ldd/Makefile,v 1.2 2003/06/17 04:29:27 dillon Exp $
3
4PROG=		ldd
5SRCS=		ldd.c
6.if ${MACHINE_ARCH} == "i386"
7SRCS+=		sods.c
8.endif
9CFLAGS+=	-Wall
10
11.include <bsd.prog.mk>
12