Hey look, GLcore links

This commit is contained in:
Adam Jackson 2005-07-16 04:13:33 +00:00
parent 5f81eb1d89
commit 2f9a7c6ee1
10 changed files with 111 additions and 1 deletions

View File

@ -3,3 +3,11 @@ SUBDIRS = main math array_cache swrast swrast_setup tnl shader X
noinst_LTLIBRARIES = libGLcore.la
libGLcore_la_SOURCES = dummy.c
libGLcore_la_LIBADD = main/libmain.la \
math/libmath.la \
array_cache/libac.la \
swrast/libswrast.la \
swrast_setup/libss.la \
tnl/libtnl.la \
shader/libshader.la \
X/libX.la

View File

@ -1,5 +1,22 @@
noinst_LTLIBRARIES = libX.la
INCLUDES = -I@mesadir@/include \
-I$(srcdir)/../X \
-I$(srcdir)/../array_cache \
-I$(srcdir)/../glapi \
-I$(srcdir)/../main \
-I$(srcdir)/../math \
-I$(srcdir)/../shader \
-I$(srcdir)/../swrast \
-I$(srcdir)/../swrast_setup \
-I$(srcdir)/../tnl \
-I$(srcdir)/.. \
-I$(top_srcdir)/GL/glx \
-I$(top_srcdir)/GL/include
# terribly gross hack. i need a shower now.
AM_CFLAGS = $(DIX_CFLAGS) -DXFree86Server
libX_la_SOURCES = xf86glx.c \
xf86glx_util.c \
xm_api.c \

View File

@ -1,3 +1,15 @@
noinst_LTLIBRARIES = libac.la
INCLUDES = -I@mesadir@/include \
-I$(srcdir)/../X \
-I$(srcdir)/../array_cache \
-I$(srcdir)/../glapi \
-I$(srcdir)/../main \
-I$(srcdir)/../math \
-I$(srcdir)/../shader \
-I$(srcdir)/../swrast \
-I$(srcdir)/../swrast_setup \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libac_la_SOURCES = ac_context.c ac_import.c

0
GL/mesa/dummy.c Normal file
View File

View File

@ -1,5 +1,17 @@
noinst_LTLIBRARIES = libmain.la
INCLUDES = -I@mesadir@/include \
-I$(srcdir)/../X \
-I$(srcdir)/../array_cache \
-I$(srcdir)/../glapi \
-I$(srcdir)/../main \
-I$(srcdir)/../math \
-I$(srcdir)/../shader \
-I$(srcdir)/../swrast \
-I$(srcdir)/../swrast_setup \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libmain_la_SOURCES = accum.c \
api_arrayelt.c \
api_loopback.c \

View File

@ -1,5 +1,17 @@
noinst_LTLIBRARIES = libmath.la
INCLUDES = -I@mesadir@/include \
-I$(srcdir)/../X \
-I$(srcdir)/../array_cache \
-I$(srcdir)/../glapi \
-I$(srcdir)/../main \
-I$(srcdir)/../math \
-I$(srcdir)/../shader \
-I$(srcdir)/../swrast \
-I$(srcdir)/../swrast_setup \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libmath_la_SOURCES = m_debug_clip.c \
m_debug_norm.c \
m_debug_xform.c \

View File

@ -1,5 +1,17 @@
noinst_LTLIBRARIES = libshader.la
INCLUDES = -I@mesadir@/include \
-I$(srcdir)/../X \
-I$(srcdir)/../array_cache \
-I$(srcdir)/../glapi \
-I$(srcdir)/../main \
-I$(srcdir)/../math \
-I$(srcdir)/../shader \
-I$(srcdir)/../swrast \
-I$(srcdir)/../swrast_setup \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libshader_la_SOURCES = arbfragparse.c \
arbprogparse.c \
arbprogram.c \
@ -11,4 +23,5 @@ libshader_la_SOURCES = arbfragparse.c \
nvvertparse.c \
program.c \
shaderobjects.c \
shaderobjects_3dlabs.c
shaderobjects_3dlabs.c \
grammar_mesa.c

View File

@ -1,5 +1,17 @@
noinst_LTLIBRARIES = libswrast.la
INCLUDES = -I@mesadir@/include \
-I$(srcdir)/../X \
-I$(srcdir)/../array_cache \
-I$(srcdir)/../glapi \
-I$(srcdir)/../main \
-I$(srcdir)/../math \
-I$(srcdir)/../shader \
-I$(srcdir)/../swrast \
-I$(srcdir)/../swrast_setup \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libswrast_la_SOURCES = s_aaline.c \
s_aatriangle.c \
s_accum.c \

View File

@ -1,3 +1,15 @@
noinst_LTLIBRARIES = libss.la
INCLUDES = -I@mesadir@/include \
-I$(srcdir)/../X \
-I$(srcdir)/../array_cache \
-I$(srcdir)/../glapi \
-I$(srcdir)/../main \
-I$(srcdir)/../math \
-I$(srcdir)/../shader \
-I$(srcdir)/../swrast \
-I$(srcdir)/../swrast_setup \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libss_la_SOURCES = ss_context.c ss_triangle.c

View File

@ -1,5 +1,17 @@
noinst_LTLIBRARIES = libtnl.la
INCLUDES = -I@mesadir@/include \
-I$(srcdir)/../X \
-I$(srcdir)/../array_cache \
-I$(srcdir)/../glapi \
-I$(srcdir)/../main \
-I$(srcdir)/../math \
-I$(srcdir)/../shader \
-I$(srcdir)/../swrast \
-I$(srcdir)/../swrast_setup \
-I$(srcdir)/../tnl \
-I$(srcdir)/..
libtnl_la_SOURCES = t_array_api.c \
t_array_import.c \
t_context.c \