Configure support for OGL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3639 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
1999-09-13 07:18:36 +00:00
parent ca8a9e603a
commit c596875e23
3 changed files with 46 additions and 24 deletions

View File

@@ -2814,6 +2814,8 @@ AC_OUTPUT([
utils/wxMMedia2/sample/Makefile
utils/glcanvas/Makefile
utils/glcanvas/${GL_TOOLKIT_DIR}/Makefile
utils/ogl/Makefile
utils/ogl/src/Makefile
],
[
chmod +x wx-config

6
utils/ogl/Makefile.in Normal file
View File

@@ -0,0 +1,6 @@
all:
cd src; make
clean:
cd src; make clean

14
utils/ogl/src/Makefile.in Normal file
View File

@@ -0,0 +1,14 @@
#
top_srcdir = @top_srcdir@
top_builddir = ../../..
VPATH= $(top_srcdir)/utils/ogl/src
LIBTARGET=$(top_builddir)/lib/libogl.a
OBJECTS=basic.o bmpshape.o composit.o divided.o lines.o misc.o
basic2.o canvas.o constrnt.o drawn.o mfutils.o ogldiag.o
include $(top_builddir)/src/makelib.env