mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 23:57:54 +01: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>
|