blob: 6a341741fe5ac0ade77ca61fbba30cb281dfd0d3 (
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
|
XCOMM $Id: Imakefile,v 1.1 2000/02/22 15:40:07 kem Exp $
#define DoNormalLib NormalLibXfontcache
#define DoSharedLib SharedLibXfontcache
#define DoExtraLib SharedLibXfontcache
#define DoDebugLib DebugLibXfontcache
#define DoProfileLib ProfileLibXfontcache
#define LibName Xfontcache
#define SoRev SOXFONTCACHEREV
#define LibHeaders NO
#include <Threads.tmpl>
#ifdef SharedXfontcacheReqs
REQUIREDLIBS = SharedXfontcacheReqs
#endif
FONTCACHESRCS = FontCache.c
FONTCACHEOBJS = FontCache.o
#if Malloc0ReturnsNull
ALLOC_DEFINES = -DMALLOC_0_RETURNS_NULL
#endif
DEFINES = $(ALLOC_DEFINES)
INCLUDES = -I$(XLIBSRC) -I$(EXTINCSRC)
SRCS = $(FONTCACHESRCS)
OBJS = $(FONTCACHEOBJS)
LINTLIBS = $(LINTXLIB)
#include <Library.tmpl>
DependTarget()
|