1OUT=mime.mapping.php
2HOST=`hostname -f`
3
4all:  ${OUT}
5${OUT}:
6	HOST=${HOST} php convert.php > ${OUT}
7clean:
8	rm -f ${OUT}
9