c4a72b6436
bsd.own.mk, as the _TOOL_PREFIX variable.
25 lines
664 B
Makefile
25 lines
664 B
Makefile
# $NetBSD: Makefile,v 1.6 2002/12/08 20:20:01 thorpej Exp $
|
|
|
|
TIMESTAMP= ${TOOLDIR}/bin/${_TOOL_PREFIX}host-mkdep
|
|
|
|
CLEANFILES+= config.cache config.log config.status host-mkdep
|
|
|
|
.include <bsd.hostprog.mk>
|
|
|
|
realall: host-mkdep
|
|
host-mkdep: configure host-mkdep.in
|
|
-rm -f $@
|
|
CC=${HOST_CC:Q} CFLAGS=${HOST_CFLAGS:Q} LDFLAGS=${HOST_LDFLAGS:Q} \
|
|
${.CURDIR}/configure --cache-file=config.cache
|
|
|
|
# This is the only program that comes before binstall.
|
|
install: ${TIMESTAMP}
|
|
${TIMESTAMP}: host-mkdep
|
|
mkdir -p ${TOOLDIR}/bin
|
|
cp host-mkdep $@
|
|
chmod +x $@
|
|
|
|
# Run by hand, then "configure" script committed:
|
|
regen:
|
|
cd ${.CURDIR} && ${TOOLDIR}/bin/${_TOOL_PREFIX}autoconf
|