2003-10-13 00:41:10 +00:00
|
|
|
# KallistiOS ##version##
|
|
|
|
#
|
2014-08-16 18:09:37 +00:00
|
|
|
# kos-ports/libgl Makefile
|
|
|
|
# Copyright (C) 2013, 2014 Josh Pearson
|
|
|
|
# Copyright (C) 2014 Lawrence Sebald
|
2018-05-14 16:10:53 +00:00
|
|
|
# Copyright (C) 2018 Luke Benstead
|
2003-10-13 00:41:10 +00:00
|
|
|
|
2015-09-06 16:47:57 +00:00
|
|
|
TARGET = libGL.a
|
2018-05-14 16:10:53 +00:00
|
|
|
OBJS = gl-rgb.o gl-fog.o gl-sh4-light.o gl-light.o gl-clip.o gl-clip-arrays.o
|
2018-05-16 20:43:56 +00:00
|
|
|
OBJS += gl-pvr.o gl-matrix.o gl-api.o glu-texture.o
|
2014-09-29 02:40:41 +00:00
|
|
|
OBJS += gl-framebuffer.o gl-cap.o gl-error.o
|
2018-05-12 20:06:22 +00:00
|
|
|
OBJS += GL/draw.o GL/flush.o GL/framebuffer.o GL/immediate.o GL/lighting.o GL/state.o GL/texture.o
|
2018-05-16 20:41:12 +00:00
|
|
|
OBJS += GL/matrix.o
|
2014-09-29 02:40:41 +00:00
|
|
|
|
2003-10-13 00:41:10 +00:00
|
|
|
SUBDIRS =
|
|
|
|
|
2014-08-16 18:09:37 +00:00
|
|
|
KOS_CFLAGS += -ffast-math -O3 -Iinclude
|
|
|
|
|
2018-01-18 19:52:54 +00:00
|
|
|
link:
|
|
|
|
$(KOS_AR) rcs $(TARGET) $(OBJS)
|
|
|
|
|
|
|
|
build: $(OBJS) link
|
|
|
|
|
|
|
|
|
2018-05-16 20:41:12 +00:00
|
|
|
defaultall: build subdirs linklib create_kos_link
|
2003-10-13 00:41:10 +00:00
|
|
|
|
2012-07-06 14:01:41 +00:00
|
|
|
include $(KOS_BASE)/addons/Makefile.prefab
|
2003-10-13 00:41:10 +00:00
|
|
|
|
2012-07-06 14:01:41 +00:00
|
|
|
# creates the kos link to the headers
|
|
|
|
create_kos_link:
|
|
|
|
rm -f ../include/GL
|
|
|
|
ln -s ../libgl/include ../include/GL
|