blob: 19b5902a5596493da6607aff77606ebb43e4e699 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#define IHaveModules
#include <Server.tmpl>
#define IHaveSubdirs
CORE_SUBDIR = mesa
SUBDIRS = glx $(CORE_SUBDIR)
#if BuildModuleInSubdir
SRCS = glx/module/?*.c $(MSRCS)
OBJS = glx/module/?*.o $(MOBJS)
#else
SRCS = glx/?*.c $(MSRCS)
OBJS = glx/?*.o $(MOBJS)
#endif
DONES = glx/DONE
INCLUDES = -Iinclude -I$(SERVERSRC)/include -I$(SERVERSRC)/mi \
-I$(XINCLUDESRC) -I$(EXTINCSRC) -I$(XF86OSSRC)
DEPEND_DEFINES = $(EXT_DEFINES) DependDefines
DEFINES = $(GLX_DEFINES)
#if HasParallelMake
MakeMutex($(SUBDIRS) $(OBJS) $(DONES))
#endif
#if HasGnuMake || HasBsdMake
$(DONES): $(SUBDIRS)
#endif
ModuleObjectRule()
DepLibraryModuleTarget(glx,$(SUBDIRS) $(DONES) $(MOBJS),$(OBJS))
InstallLibraryModule(glx,$(MODULEDIR),extensions)
ForceSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))
MakeLintLibSubdirs($(SUBDIRS))
LintSubdirs($(SUBDIRS))
InstallDriverSDKLibraryModule(glx,$(DRIVERSDKMODULEDIR),extensions)
|