diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-06-28 12:13:27 +0000 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-06-28 16:21:22 +0200 |
commit | e9857d5ea394255f5e1f38678447fa855c821b57 (patch) | |
tree | ba4ab012feb553fdc73a960288bf9e214276c41f /nx-X11/lib/Xext | |
parent | d595125a10f886064fafc28ae8cd93dfed08cabe (diff) | |
download | nx-libs-e9857d5ea394255f5e1f38678447fa855c821b57.tar.gz nx-libs-e9857d5ea394255f5e1f38678447fa855c821b57.tar.bz2 nx-libs-e9857d5ea394255f5e1f38678447fa855c821b57.zip |
nx-X11/lib/Xext/Imakefile: Serialize parameters and make Imakefile changes more trackable.
Diffstat (limited to 'nx-X11/lib/Xext')
-rw-r--r-- | nx-X11/lib/Xext/Imakefile | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/nx-X11/lib/Xext/Imakefile b/nx-X11/lib/Xext/Imakefile index 065667123..0111500c5 100644 --- a/nx-X11/lib/Xext/Imakefile +++ b/nx-X11/lib/Xext/Imakefile @@ -1,10 +1,8 @@ XCOMM $Xorg: Imakefile,v 1.3 2000/08/17 19:45:50 cpqbld Exp $ - - - - XCOMM $XFree86: xc/lib/Xext/Imakefile,v 1.12 2002/10/16 00:37:27 dawes Exp $ + NULL = + #define DoNormalLib NormalLibXext #define DoSharedLib SharedLibXext #define DoExtraLib SharedLibXext @@ -31,12 +29,26 @@ ALLOC_DEFINES = Malloc0ReturnsNullDefines DEFINES = $(ALLOC_DEFINES) INCLUDES = -I$(XLIBSRC) - SRCS = globals.c extutil.c XShape.c $(SHMSRCS) \ - XTestExt1.c XSync.c \ - XSecurity.c DPMS.c - OBJS = globals.o extutil.o XShape.o $(SHMOBJS) \ - XTestExt1.o XSync.o \ - XSecurity.o DPMS.o + SRCS = globals.c \ + extutil.c \ + XShape.c \ + $(SHMSRCS) \ + XTestExt1.c \ + XSync.c \ + XSecurity.c \ + DPMS.c \ + $(NULL) + + OBJS = globals.o \ + extutil.o \ + XShape.o \ + $(SHMOBJS) \ + XTestExt1.o \ + XSync.o \ + XSecurity.o \ + DPMS.o \ + $(NULL) + LINTLIBS = $(LINTXLIB) #include <Library.tmpl> |