diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-03-27 07:24:03 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-03-27 07:24:03 +0000 |
commit | c003c590fb1edad367011d4bbacd3d0575c26efa (patch) | |
tree | b41b613313fdc02a7a8db1cc9ab4aa17eba9a0cb | |
parent | 6aa11b4d48a5924d480fd1b45953430be42f1ba6 (diff) |
Rework the way Makefiles are generated.
This avoid errors seen by marco@ (and others previously) when
skipping 'make depend'.
-rw-r--r-- | doc/gl-docs/GL/gl/Makefile.bsd-wrapper | 6 | ||||
-rw-r--r-- | doc/gl-docs/GL/glx/Makefile.bsd-wrapper | 6 | ||||
-rw-r--r-- | doc/gl-docs/GLU/Makefile.bsd-wrapper | 6 | ||||
-rw-r--r-- | doc/gl-docs/GLw/Makefile.bsd-wrapper | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/doc/gl-docs/GL/gl/Makefile.bsd-wrapper b/doc/gl-docs/GL/gl/Makefile.bsd-wrapper index 7e917965a..fa8979bd3 100644 --- a/doc/gl-docs/GL/gl/Makefile.bsd-wrapper +++ b/doc/gl-docs/GL/gl/Makefile.bsd-wrapper @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.3 2006/12/04 21:09:59 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2009/03/27 07:24:02 matthieu Exp $ -all: includes +all: Makefile $(MAKE) -depend: +Makefile: if [ ${.OBJDIR} != ${.CURDIR} ]; then lndir ${.CURDIR}; fi if [ -x $(X11BASE)/bin/xmkmf ]; then \ $(X11BASE)/bin/xmkmf ; \ diff --git a/doc/gl-docs/GL/glx/Makefile.bsd-wrapper b/doc/gl-docs/GL/glx/Makefile.bsd-wrapper index b58ec7d69..8806cd93c 100644 --- a/doc/gl-docs/GL/glx/Makefile.bsd-wrapper +++ b/doc/gl-docs/GL/glx/Makefile.bsd-wrapper @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.3 2006/12/04 21:09:59 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2009/03/27 07:24:02 matthieu Exp $ -all: includes +all: Makefile $(MAKE) -depend: +Makefile: if [ ${.OBJDIR} != ${.CURDIR} ]; then lndir ${.CURDIR}; fi if [ -x $(X11BASE)/bin/xmkmf ]; then \ $(X11BASE)/bin/xmkmf ;\ diff --git a/doc/gl-docs/GLU/Makefile.bsd-wrapper b/doc/gl-docs/GLU/Makefile.bsd-wrapper index b58ec7d69..8806cd93c 100644 --- a/doc/gl-docs/GLU/Makefile.bsd-wrapper +++ b/doc/gl-docs/GLU/Makefile.bsd-wrapper @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.3 2006/12/04 21:09:59 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2009/03/27 07:24:02 matthieu Exp $ -all: includes +all: Makefile $(MAKE) -depend: +Makefile: if [ ${.OBJDIR} != ${.CURDIR} ]; then lndir ${.CURDIR}; fi if [ -x $(X11BASE)/bin/xmkmf ]; then \ $(X11BASE)/bin/xmkmf ;\ diff --git a/doc/gl-docs/GLw/Makefile.bsd-wrapper b/doc/gl-docs/GLw/Makefile.bsd-wrapper index b58ec7d69..8806cd93c 100644 --- a/doc/gl-docs/GLw/Makefile.bsd-wrapper +++ b/doc/gl-docs/GLw/Makefile.bsd-wrapper @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.3 2006/12/04 21:09:59 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2009/03/27 07:24:02 matthieu Exp $ -all: includes +all: Makefile $(MAKE) -depend: +Makefile: if [ ${.OBJDIR} != ${.CURDIR} ]; then lndir ${.CURDIR}; fi if [ -x $(X11BASE)/bin/xmkmf ]; then \ $(X11BASE)/bin/xmkmf ;\ |