11 lines
170 B
Makefile
11 lines
170 B
Makefile
# $Id: Makefile,v 1.9 1998/06/12 14:11:15 peter Exp $
|
|
|
|
PROG= ldd
|
|
SRCS= ldd.c
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SRCS+= sods.c
|
|
.endif
|
|
CFLAGS+= -Wall
|
|
|
|
.include <bsd.prog.mk>
|