mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-29 08:08:37 +00:00
13 lines
154 B
Makefile
13 lines
154 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 7/19/93
|
|
|
|
PROG= limits
|
|
SRCS= limits.c
|
|
|
|
CFLAGS+=-Wall
|
|
LDADD+= -lutil
|
|
DPADD+= ${LIBUTIL}
|
|
|
|
BINMODE=0555
|
|
|
|
.include <bsd.prog.mk>
|