From 178fb5f1c1eb9f2c244276cba9ca4c0971910df7 Mon Sep 17 00:00:00 2001 From: matthieu Date: Mon, 10 Oct 2016 13:27:14 +0000 Subject: [PATCH] Move headers files to 'GL/' so that the library can be built without installed headers. --- lib/libGLw/{ => GL}/GLwDrawA.h | 0 lib/libGLw/{ => GL}/GLwDrawAP.h | 0 lib/libGLw/{ => GL}/GLwMDrawA.h | 0 lib/libGLw/{ => GL}/GLwMDrawAP.h | 0 lib/libGLw/Makefile | 6 +++--- 5 files changed, 3 insertions(+), 3 deletions(-) rename lib/libGLw/{ => GL}/GLwDrawA.h (100%) rename lib/libGLw/{ => GL}/GLwDrawAP.h (100%) rename lib/libGLw/{ => GL}/GLwMDrawA.h (100%) rename lib/libGLw/{ => GL}/GLwMDrawAP.h (100%) diff --git a/lib/libGLw/GLwDrawA.h b/lib/libGLw/GL/GLwDrawA.h similarity index 100% rename from lib/libGLw/GLwDrawA.h rename to lib/libGLw/GL/GLwDrawA.h diff --git a/lib/libGLw/GLwDrawAP.h b/lib/libGLw/GL/GLwDrawAP.h similarity index 100% rename from lib/libGLw/GLwDrawAP.h rename to lib/libGLw/GL/GLwDrawAP.h diff --git a/lib/libGLw/GLwMDrawA.h b/lib/libGLw/GL/GLwMDrawA.h similarity index 100% rename from lib/libGLw/GLwMDrawA.h rename to lib/libGLw/GL/GLwMDrawA.h diff --git a/lib/libGLw/GLwMDrawAP.h b/lib/libGLw/GL/GLwMDrawAP.h similarity index 100% rename from lib/libGLw/GLwMDrawAP.h rename to 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"; \