diff options
Diffstat (limited to 'nx-X11/programs/Xserver/GL/Imakefile')
-rw-r--r-- | nx-X11/programs/Xserver/GL/Imakefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/nx-X11/programs/Xserver/GL/Imakefile b/nx-X11/programs/Xserver/GL/Imakefile new file mode 100644 index 000000000..19b5902a5 --- /dev/null +++ b/nx-X11/programs/Xserver/GL/Imakefile @@ -0,0 +1,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) |