Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
cae394b4
You need to sign in or sign up before continuing.
Commit
cae394b4
authored
Nov 03, 2016
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Xserver/hw/nxagent/Imakefile: Introduce the NULL variable.
parent
b1d3f2ca
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
27 deletions
+76
-27
Imakefile
nx-X11/programs/Xserver/hw/nxagent/Imakefile
+76
-27
No files found.
nx-X11/programs/Xserver/hw/nxagent/Imakefile
View file @
cae394b4
#include <Server.tmpl>
#include <Server.tmpl>
NULL =
#ifdef OS2Architecture
#ifdef OS2Architecture
SRCS1 = os2Stub.c
SRCS1 = os2Stub.c
OBJS1 = os2Stub.o
OBJS1 = os2Stub.o
#endif
#endif
SRCS = NXwindow.c \
SRCS = \
NXwindow.c \
NXevents.c \
NXevents.c \
NXproperty.c \
NXproperty.c \
NXdixfonts.c \
NXdixfonts.c \
...
@@ -64,9 +67,11 @@ SRCS = NXwindow.c \
...
@@ -64,9 +67,11 @@ SRCS = NXwindow.c \
stubs.c \
stubs.c \
xpstubs.c \
xpstubs.c \
miinitext.c \
miinitext.c \
$(SRCS1)
$(SRCS1) \
$(NULL)
OBJS = NXwindow.o \
OBJS = \
NXwindow.o \
NXevents.o \
NXevents.o \
NXproperty.o \
NXproperty.o \
NXdixfonts.o \
NXdixfonts.o \
...
@@ -125,44 +130,84 @@ OBJS = NXwindow.o \
...
@@ -125,44 +130,84 @@ OBJS = NXwindow.o \
stubs.o \
stubs.o \
xpstubs.o \
xpstubs.o \
miinitext.o \
miinitext.o \
$(OBJS1)
$(OBJS1) \
$(NULL)
VFBINCLUDES = -I../../fb -I../../mfb -I../../render
VFBINCLUDES = \
-I../../fb \
-I../../mfb \
-I../../render \
$(NULL)
INCLUDES = -I. \
INCLUDES = \
-I. \
-I../../../../extras/Mesa/include \
-I../../../../extras/Mesa/include \
-I$(XBUILDINCDIR) \
-I$(XBUILDINCDIR) \
-I../../mi -I../../include -I../../os \
-I../../mi \
-I../../miext/damage -I../../miext/cw \
-I../../include \
-I../../GL/glx -I../../GL/include -I../../../../lib/GL/include -I../../Xext \
-I../../os \
-I../../miext/damage \
-I../../miext/cw \
-I../../GL/glx \
-I../../GL/include \
-I../../../../lib/GL/include \
-I../../Xext \
-I$(EXTINCSRC) -I$(XINCLUDESRC) \
-I$(EXTINCSRC) -I$(XINCLUDESRC) \
$(VFBINCLUDES) \
$(VFBINCLUDES) \
`pkg-config --cflags-only-I libxml-2.0` \
`pkg-config --cflags-only-I libxml-2.0` \
`pkg-config --cflags-only-I pixman-1`
`pkg-config --cflags-only-I pixman-1` \
`pkg-config --cflags-only-I zlib` \
`pkg-config --cflags-only-I libjpeg` \
`pkg-config --cflags-only-I libpng` \
$(NULL)
#ifdef SunArchitecture
#ifdef SunArchitecture
INCLUDES = -I. \
INCLUDES = \
-I. \
-I../../../../extras/Mesa/include \
-I../../../../extras/Mesa/include \
-I$(XBUILDINCDIR) \
-I$(XBUILDINCDIR) \
-I/usr/sfw/include \
-I/usr/sfw/include \
-I../../mi -I../../include -I../../os \
-I../../mi \
-I../../GL/glx -I../../GL/include -I../../../../lib/GL/include -I../../Xext \
-I../../include \
-I../../miext/damage -I../../miext/cw \
-I../../os \
-I../../GL/glx \
-I../../GL/include \
-I../../../../lib/GL/include \
-I../../Xext \
-I../../miext/damage \
-I../../miext/cw \
-I$(EXTINCSRC) -I$(XINCLUDESRC) \
-I$(EXTINCSRC) -I$(XINCLUDESRC) \
$(VFBINCLUDES) \
$(VFBINCLUDES) \
`pkg-config --cflags-only-I libxml-2.0`
`pkg-config --cflags-only-I libxml-2.0` \
`pkg-config --cflags-only-I pixman-1`
`pkg-config --cflags-only-I pixman-1` \
`pkg-config --cflags-only-I zlib` \
`pkg-config --cflags-only-I libjpeg` \
`pkg-config --cflags-only-I libpng` \
$(NULL)
#else
#else
#ifdef cygwinArchitecture
#ifdef cygwinArchitecture
INCLUDES = -I. -I$(XBUILDINCDIR) \
INCLUDES = \
-I../../mi -I../../include -I../../os \
-I. -I$(XBUILDINCDIR) \
-I../../GL/glx -I../../GL/include -I../../../../lib/GL/include -I../../Xext \
-I../../mi \
-I../../miext/damage -I../../miext/cw \
-I../../include \
-I../../../../../nxcomp -I../../../../../nxcompext -I../../../../../nxcompshad \
-I../../os \
-I../../GL/glx \
-I../../GL/include \
-I../../../../lib/GL/include \
-I../../Xext \
-I../../miext/damage \
-I../../miext/cw \
-I../../../../../nxcomp \
-I../../../../../nxcompext \
-I../../../../../nxcompshad \
-I../../../../extras/Mesa/include \
-I../../../../extras/Mesa/include \
-I$(EXTINCSRC) -I$(XINCLUDESRC) \
-I$(EXTINCSRC) -I$(XINCLUDESRC) \
$(VFBINCLUDES) \
$(VFBINCLUDES) \
`pkg-config --cflags-only-I libxml-2.0`
`pkg-config --cflags-only-I libxml-2.0` \
`pkg-config --cflags-only-I pixman-1`
`pkg-config --cflags-only-I pixman-1` \
`pkg-config --cflags-only-I zlib` \
`pkg-config --cflags-only-I libjpeg` \
`pkg-config --cflags-only-I libpng` \
$(NULL)
#endif
#endif
#endif
#endif
...
@@ -182,11 +227,14 @@ INCLUDES = -I. -I$(XBUILDINCDIR) \
...
@@ -182,11 +227,14 @@ INCLUDES = -I. -I$(XBUILDINCDIR) \
# NXAGENT_RANDR_XINERAMA_CLIPPING cut off invisible window parts in xinerama mode (you probably do not want this)
# NXAGENT_RANDR_XINERAMA_CLIPPING cut off invisible window parts in xinerama mode (you probably do not want this)
#if nxVersion
#if nxVersion
NX_DEFINES=-DNX_VERSION_CURRENT="$(NX_VERSION_CURRENT)" \
NX_DEFINES = \
-DNX_VERSION_CURRENT_STRING="\"$(NX_VERSION_CURRENT_STRING)\""
-DNX_VERSION_CURRENT="$(NX_VERSION_CURRENT)" \
-DNX_VERSION_CURRENT_STRING="\"$(NX_VERSION_CURRENT_STRING)\"" \
$(NULL)
#endif
#endif
DEFINES = -g $(OS_DEFINES) $(EXT_DEFINES) $(NX_DEFINES) \
DEFINES = \
-g $(OS_DEFINES) $(EXT_DEFINES) $(NX_DEFINES) \
-UXF86VIDMODE -UXFreeXDGA -UXF86MISC -UXF86DRI -UXFree86LOADER \
-UXF86VIDMODE -UXFreeXDGA -UXF86MISC -UXF86DRI -UXFree86LOADER \
-DNXAGENT_SERVER \
-DNXAGENT_SERVER \
-DNXAGENT_CONSTRAINCURSOR \
-DNXAGENT_CONSTRAINCURSOR \
...
@@ -211,7 +259,8 @@ DEFINES = -g $(OS_DEFINES) $(EXT_DEFINES) $(NX_DEFINES) \
...
@@ -211,7 +259,8 @@ DEFINES = -g $(OS_DEFINES) $(EXT_DEFINES) $(NX_DEFINES) \
-DRANDR_14_INTERFACE=1 \
-DRANDR_14_INTERFACE=1 \
-DRANDR_15_INTERFACE=1 \
-DRANDR_15_INTERFACE=1 \
-DPANORAMIX \
-DPANORAMIX \
-UDEBUG_TREE
-UDEBUG_TREE \
$(NULL)
all:: $(OBJS)
all:: $(OBJS)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment