17 lines
177 B
Makefile
17 lines
177 B
Makefile
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
SRCS= retention.c
|
||
|
PROG= retention
|
||
|
|
||
|
CFLAGS+=-Wall -I../../../include
|
||
|
|
||
|
CLEANFILES= *~ ${PROG}.core
|
||
|
|
||
|
NO_MAN= yes
|
||
|
|
||
|
.include <bsd.prog.mk>
|
||
|
|
||
|
test: ${PROG}
|
||
|
@./${PROG}
|