mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
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
|