diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2016-10-10 13:27:15 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2016-10-10 13:27:15 +0000 |
commit | f008e00b926205ce4cf58f91b96106094aa2e475 (patch) | |
tree | 8eb4566c83398d1d221a6da668eb642c6b5da4fc | |
parent | 31010f015d9573970b822ebdcd2c77e582a8db48 (diff) |
Move headers files to 'GL/' so that the library can be built
without installed headers.
-rw-r--r-- | lib/libGLw/GL/GLwDrawA.h (renamed from lib/libGLw/GLwDrawA.h) | 0 | ||||
-rw-r--r-- | lib/libGLw/GL/GLwDrawAP.h (renamed from lib/libGLw/GLwDrawAP.h) | 0 | ||||
-rw-r--r-- | lib/libGLw/GL/GLwMDrawA.h (renamed from lib/libGLw/GLwMDrawA.h) | 0 | ||||
-rw-r--r-- | lib/libGLw/GL/GLwMDrawAP.h (renamed from lib/libGLw/GLwMDrawAP.h) | 0 | ||||
-rw-r--r-- | lib/libGLw/Makefile | 6 |
5 files changed, 3 insertions, 3 deletions
diff --git a/lib/libGLw/GLwDrawA.h b/lib/libGLw/GL/GLwDrawA.h index 5da21a9a0..5da21a9a0 100644 --- a/lib/libGLw/GLwDrawA.h +++ b/lib/libGLw/GL/GLwDrawA.h diff --git a/lib/libGLw/GLwDrawAP.h b/lib/libGLw/GL/GLwDrawAP.h index a02ce642b..a02ce642b 100644 --- a/lib/libGLw/GLwDrawAP.h +++ b/lib/libGLw/GL/GLwDrawAP.h diff --git a/lib/libGLw/GLwMDrawA.h b/lib/libGLw/GL/GLwMDrawA.h index 95e210adc..95e210adc 100644 --- a/lib/libGLw/GLwMDrawA.h +++ b/lib/libGLw/GL/GLwMDrawA.h diff --git a/lib/libGLw/GLwMDrawAP.h b/lib/libGLw/GL/GLwMDrawAP.h index 2ee3eed5a..2ee3eed5a 100644 --- a/lib/libGLw/GLwMDrawAP.h +++ b/lib/libGLw/GL/GLwMDrawAP.h diff --git a/lib/libGLw/Makefile b/lib/libGLw/Makefile index 02f4e397d..48b45fe3a 100644 --- a/lib/libGLw/Makefile +++ b/lib/libGLw/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2016/10/08 19:29:18 matthieu Exp $ +# $OpenBSD: Makefile,v 1.18 2016/10/10 13:27:14 matthieu Exp $ DEBUG?= @@ -9,7 +9,7 @@ MESA_MINOR= 11 MESA_TINY= 2 CPPFLAGS += -I${X11BASE}/include \ - -I${.CURDIR} + -I${.CURDIR} -I${.CURDIR}/GL SRCS= \ GLwDrawA.c \ @@ -26,7 +26,7 @@ INCS= \ obj: _xenocara_obj includes: - cd ${.CURDIR}; for i in ${INCS}; do \ + cd ${.CURDIR}/GL; for i in ${INCS}; do \ j="cmp -s $$i ${DESTDIR}${INCSDIR}/GL/$$i || \ ${INSTALL_DATA} $$i ${DESTDIR}${INCSDIR}/GL"; \ echo "\tinstalling $$i"; \ |