9d5d28c26f
very nearly there.
24 lines
608 B
Makefile
24 lines
608 B
Makefile
# $NetBSD: Makefile,v 1.2 2002/01/21 20:04:37 tv Exp $
|
|
|
|
TIMESTAMP= ${TOOLDIR}/bin/nbhost-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
|
|
cp host-mkdep $@
|
|
chmod +x $@
|
|
|
|
# Run by hand, then "configure" script committed:
|
|
regen:
|
|
cd ${.CURDIR} && ${TOOLDIR}/bin/nbautoconf
|