Home | History | Annotate | Line # | Download | only in tools
Makefile.gnuwrap revision 1.2
      1 #	$NetBSD: Makefile.gnuwrap,v 1.2 2001/11/13 04:01:49 tv Exp $
      2 #
      3 # Wrapper for GNU Makefiles.
      4 
      5 .include "${.CURDIR}/Makefile"
      6 
      7 # Prevent targets in source directories from being rebuilt.
      8 
      9 _srcdir:=	${srcdir}
     10 .MADE:		${.ALLTARGETS:M${srcdir}/*}
     11 
     12 # Don't rebuild .gmo files, or lex/yacc (which GNU puts in the source tree).
     13 .po.gmo .l.c .y.c .y.h:
     14 	@true
     15 
     16 # Make sure this file gets re-loaded recursively.
     17 _GNUWRAPPER:=	${.PARSEDIR}/${.PARSEFILE}
     18 MAKE:=		${MAKE} -f ${_GNUWRAPPER}
     19