27 lines
601 B
Makefile
27 lines
601 B
Makefile
# $NetBSD: Makefile.gnuwrap,v 1.8 2001/11/22 08:20:07 jmc Exp $
|
|
#
|
|
# Wrapper for GNU Makefiles.
|
|
|
|
.ifndef _WRAPPER_INCLUDED
|
|
_WRAPPER_INCLUDED=1
|
|
|
|
.ifndef _NOWRAPPER
|
|
.include "${.CURDIR}/Makefile"
|
|
.endif
|
|
|
|
# Prevent targets in source directories from being rebuilt.
|
|
|
|
_srcdir:= ${srcdir}
|
|
.MADE: ${.ALLTARGETS:M${_srcdir}/*} Makefile
|
|
|
|
# Don't rebuild .gmo files, or lex/yacc (which GNU puts in the source tree).
|
|
.po.gmo .l.c .y.c .y.h .x.1:
|
|
@true
|
|
|
|
# Make sure this file gets re-loaded recursively.
|
|
.ifndef _NOWRAPPER
|
|
_GNUWRAPPER:= ${.PARSEDIR}/${.PARSEFILE}
|
|
MAKE:= ${MAKE} -f ${_GNUWRAPPER}
|
|
.endif
|
|
.endif
|