From ae1bb2869b83ad0563d207b5cd9c04d7518c1f67 Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Mon, 21 May 2018 19:55:20 +0100 Subject: [PATCH] Build out to libGLdc.a to avoid confusion with libGL --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 01c2c31..f862122 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ # Copyright (C) 2014 Lawrence Sebald # Copyright (C) 2018 Luke Benstead -TARGET = libGL.a +TARGET = libGLdc.a OBJS = GL/draw.o GL/flush.o GL/framebuffer.o GL/immediate.o GL/lighting.o GL/state.o GL/texture.o OBJS += GL/matrix.o GL/fog.o GL/error.o @@ -19,11 +19,11 @@ link: build: $(OBJS) link -defaultall: build subdirs linklib create_kos_link +defaultall: create_kos_link $(OBJS) subdirs linklib include $(KOS_BASE)/addons/Makefile.prefab # creates the kos link to the headers create_kos_link: rm -f ../include/GL - ln -s ../libgl/include ../include/GL + ln -s ../GLdc/include ../include/GL