15 lines
202 B
Makefile
15 lines
202 B
Makefile
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
PROGS= envctl retention timings
|
||
|
|
||
|
all clean test:
|
||
|
.for target in ${.TARGET}
|
||
|
.for prog in ${PROGS}
|
||
|
@${MAKE} -f Makefile.${prog} ${target}
|
||
|
.endfor
|
||
|
.if make(clean)
|
||
|
rm -f *~
|
||
|
.endif
|
||
|
.endfor
|