diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-04-21 10:57:56 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-04-28 04:49:19 +0200 |
commit | c189f6efce2fe1b84c7792875b2805fa331ee84f (patch) | |
tree | bbe2a36b359318459c53970da038445db8a00c2c /nx-X11/lib/GL/Imakefile | |
parent | cbf4e4dbebaca561ff2ff98521e249b9eac046ab (diff) | |
download | nx-libs-c189f6efce2fe1b84c7792875b2805fa331ee84f.tar.gz nx-libs-c189f6efce2fe1b84c7792875b2805fa331ee84f.tar.bz2 nx-libs-c189f6efce2fe1b84c7792875b2805fa331ee84f.zip |
imake cleanup: Break up multiple vars into invidual lines to ease further work on patches / pull requests.
Diffstat (limited to 'nx-X11/lib/GL/Imakefile')
-rw-r--r-- | nx-X11/lib/GL/Imakefile | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/nx-X11/lib/GL/Imakefile b/nx-X11/lib/GL/Imakefile index b53a71f4c..6b350203c 100644 --- a/nx-X11/lib/GL/Imakefile +++ b/nx-X11/lib/GL/Imakefile @@ -50,7 +50,7 @@ XCOMM Server-side tokens: XCOMM BuildGlxExt XCOMM GlxUseSGISI - +NULL = #include <Threads.tmpl> @@ -108,9 +108,23 @@ LIBGLBUILDDIR = GL * the drivers, and in the latter case, it needs to be built after the driver. */ #if BuildXF86DRI && GlxUseBuiltInDRIDriver -SUBDIRS = $(MESADIRS) $(DRIDIRS) $(DRIVERDIRS) $(GLXDIRS) $(LIBGLBUILDDIR) $(OSMESADIRS) +SUBDIRS = \ + $(MESADIRS) \ + $(DRIDIRS) \ + $(DRIVERDIRS) \ + $(GLXDIRS) \ + $(LIBGLBUILDDIR) \ + $(OSMESADIRS) \ + $(NULL) #else -SUBDIRS = $(MESADIRS) $(GLXDIRS) $(DRIDIRS) $(LIBGLBUILDDIR) $(OSMESADIRS) $(DRIVERDIRS) +SUBDIRS = \ + $(MESADIRS) \ + $(GLXDIRS) \ + $(DRIDIRS) \ + $(LIBGLBUILDDIR) \ + $(OSMESADIRS) \ + $(DRIVERDIRS) \ + $(NULL) #endif MakeSubdirs($(SUBDIRS)) |