shithub: tinygl

Download patch

ref: 540ad4c8a721e810635808b33d178c92800d4618
parent: 8013da174118ba85ffbc34f391e8e385e7cadd36
author: David <gek@katherine>
date: Thu Feb 11 14:39:59 EST 2021

removed old config thing

--- a/config-old.mk
+++ /dev/null
@@ -1,82 +1,0 @@
-#####################################################################
-# C compiler
-
-# linux
-CC= gcc
-CFLAGS= -g -Wall -O2
-LFLAGS=
-
-# for BeOS PPC
-#CC= mwcc
-#CFLAGS= -I. -i-
-#LFLAGS=
-
-#####################################################################
-# TinyGL configuration 
-
-#####################################################################
-# Select window API for TinyGL: 
-
-# standard X11 GLX like API 
-TINYGL_USE_GLX=y
-
-# BEOS API
-#TINYGL_USE_BEOS=y
-
-# Micro Windows NanoX API
-#TINYGL_USE_NANOX=y
-
-#####################################################################
-# X11 configuration (for the examples only)
-
-ifdef TINYGL_USE_GLX
-# Linux
-UI_LIBS= -L/usr/X11R6/lib -lX11 -lXext
-UI_INCLUDES= 
-# Solaris
-#UI_LIBS= -L/usr/X11/lib -lX11 -lXext -lsocket -lnsl
-#UI_INCLUDES= 
-
-UI_OBJS=x11.o
-endif
-
-#####################################################################
-# Micro windowX11 configuration (for the examples only)
-
-ifdef TINYGL_USE_NANOX
-UI_LIBS= -lnano-X -lmwengine -lmwdrivers -lmwfonts
-UI_INCLUDES=
-
-# X11 target for nanoX
-UI_LIBS+= -L/usr/X11R6/lib -lX11 -lXext
-
-UI_OBJS=nanox.o
-endif
-
-#####################################################################
-# OpenGL configuration (for the examples only)
-
-# use TinyGL 
-GL_LIBS= -L../lib -lTinyGL 
-GL_INCLUDES= -I../include
-GL_DEPS= ../lib/libTinyGL.a
-
-# use Mesa
-#GL_LIBS= -lMesaGL 
-#GL_INCLUDES= 
-#GL_DEPS=
-
-# use OpenGL
-#GL_LIBS= -lGL 
-#GL_INCLUDES= 
-#GL_DEPS=
-
-####################################################################
-# Compile and link control
-
-# UNIX systems
-DIRS= src examples
-
-# BeOS
-# DIRS= src BeOS
-