64 lines
1.5 KiB
Plaintext
64 lines
1.5 KiB
Plaintext
#include <Server.tmpl>
|
|
|
|
#define NeedAllMesaSrc
|
|
#define NeedToLinkMesaSrc
|
|
#define MesaXBuildDir /**/
|
|
#define MesaInXServer
|
|
#include "Imakefile.inc"
|
|
|
|
|
|
LinkSourceFile(compsize.c,$(MESASRCDIR)/src/glx/x11)
|
|
|
|
DRIVER_SRCS = $(XMESA_SRCS)
|
|
DRIVER_OBJS = $(XMESA_OBJS)
|
|
|
|
COMMON_SRCS = driverfuncs.c
|
|
COMMON_OBJS = driverfuncs.o
|
|
|
|
GLX_SRCS = xf86glx.c xf86glx_util.c compsize.c
|
|
GLX_OBJS = xf86glx.o xf86glx_util.o compsize.o
|
|
|
|
SRCS = $(DRIVER_SRCS) $(GLX_SRCS) $(COMMON_SRCS)
|
|
OBJS = $(DRIVER_OBJS) $(GLX_OBJS) $(COMMON_OBJS)
|
|
|
|
INCLUDES = -I$(SERVERSRC)/GL/mesa/X -I$(XINCLUDESRC) \
|
|
-I$(EXTINCSRC) \
|
|
-I$(MESASRCDIR)/src/mesa \
|
|
-I$(MESASRCDIR)/src/mesa/main \
|
|
-I$(MESASRCDIR)/src/mesa/glapi \
|
|
-I$(MESASRCDIR)/src/mesa/shader \
|
|
-I$(MESASRCDIR)/src -I$(MESASRCDIR)/src/mesa/drivers/x11 \
|
|
-I$(MESASRCDIR)/include \
|
|
-I$(LIBSRC)/GL/glx -I$(LIBSRC)/GL/include \
|
|
-I$(SERVERSRC)/include -I$(SERVERSRC)/GL/include \
|
|
-I$(SERVERSRC)/GL/glx \
|
|
-I$(XF86OSSRC) \
|
|
-I$(DRMSRCDIR)/shared-core \
|
|
`pkg-config --cflags-only-I pixman-1`
|
|
|
|
DEFINES = $(GLX_DEFINES) $(GLXSRV_DEFINES) -DNXAGENT_SERVER /*-DUSE_X86_ASM*/ /*-DUSE_SPARC_ASM*/
|
|
|
|
NormalLibraryObjectRule()
|
|
|
|
SubdirLibraryRule($(OBJS))
|
|
|
|
NormalLintTarget($(SRCS))
|
|
|
|
DependTarget()
|
|
|
|
#ifdef IHaveSubdirs
|
|
MakeSubdirs($(SUBDIRS))
|
|
DependSubdirs($(SUBDIRS))
|
|
#endif
|
|
|
|
|
|
#ifndef MesaDrvSrcDir
|
|
#define MesaDrvSrcDir $(MESASRCDIR)/src/mesa/drivers/dri
|
|
#endif
|
|
|
|
MESADRVSRCDIR = MesaDrvSrcDir
|
|
|
|
|
|
LinkSourceFile(driverfuncs.c, $(MESADRVSRCDIR)/../common)
|
|
LinkSourceFile(driverfuncs.h, $(MESADRVSRCDIR)/../common)
|