freebsd-nq/mk/os.NetBSD.mk
Ed Maste 5eccfb5cf5 Import elftoolchain rev 3130
From svn.code.sf.net/p/elftoolchain/code/trunk
2014-12-22 20:32:23 +00:00

22 lines
612 B
Makefile

# $Id: os.NetBSD.mk 2986 2014-03-06 03:29:12Z jkoshy $
#
# Build recipes for NetBSD.
LDSTATIC?= -static # link programs statically
MKDOC?= yes # Build documentation.
MKLINT?= no # lint dies with a sigbus
MKTESTS?= yes # Enable the test suites.
MKNOWEB?= no # Build literate programs.
# Literate programming utility.
NOWEB?= /usr/pkgsrc/bin/noweb
# NetBSD's 'clean' target does not remove 'cat[0-9]' and 'html[0-9]'
# files generate from manual page sources. Augment the 'clobber'
# target to remove these.
os-specific-clobber: .PHONY
.for f in cat html
rm -f ${MANPAGES:@M@${M:R}.$f${M:E}@}
.endfor