blob: c43361f124dcb97fa927f189b0ac9b80a5f08445 (
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
46
|
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 $
#define DoNormalLib NormalLibXext
#define DoSharedLib SharedLibXext
#define DoExtraLib SharedLibXext
#define DoDebugLib DebugLibXext
#define DoProfileLib ProfileLibXext
#define LibName NX_Xext
#define SoRev SOXEXTREV
#define LibHeaders NO
#include <Threads.tmpl>
#ifdef SharedXextReqs
REQUIREDLIBS = SharedXextReqs
#endif
#if HasShm
SHMSRCS = XShm.c
SHMOBJS = XShm.o
#endif
#if Malloc0ReturnsNull
ALLOC_DEFINES = Malloc0ReturnsNullDefines
#endif
DEFINES = $(ALLOC_DEFINES)
INCLUDES = -I$(XLIBSRC)
SRCS = globals.c extutil.c XMultibuf.c XShape.c $(SHMSRCS) \
MITMisc.c XTestExt1.c XSync.c Xdbe.c XLbx.c \
XSecurity.c XAppgroup.c Xcup.c DPMS.c XEVI.c
OBJS = globals.o extutil.o XMultibuf.o XShape.o $(SHMOBJS) \
MITMisc.o XTestExt1.o XSync.o Xdbe.o XLbx.o \
XSecurity.o XAppgroup.o Xcup.o DPMS.o XEVI.o
LINTLIBS = $(LINTXLIB)
#include <Library.tmpl>
LinkFile(ImUtil.h,$(XLIBSRC)/ImUtil.h)
DependTarget()
|