Add HAMMER support to the installer
[dragonfly.git] / contrib / bsdinstaller-1.1.6 / src / backend / Makefile
1 # Build all backends.
2 # $Id: Makefile,v 1.5 2005/04/05 20:53:46 cpressey Exp $
3
4 SUBDIR= installer test lua
5 TARGETS=all in_cvs clean
6
7 .for _target in ${TARGETS}
8 ${_target}:
9         @for _subdir in ${SUBDIR}; do                                   \
10                 echo "===> $${_subdir}" &&                              \
11                 cd ${.CURDIR}$//$${_subdir} &&                          \
12                 ${MAKE} ${_target};                                     \
13         done
14 .endfor