diff options
Diffstat (limited to 'xc/lib/Xfontcache/Imakefile')
-rw-r--r-- | xc/lib/Xfontcache/Imakefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/xc/lib/Xfontcache/Imakefile b/xc/lib/Xfontcache/Imakefile new file mode 100644 index 000000000..f3aaa07be --- /dev/null +++ b/xc/lib/Xfontcache/Imakefile @@ -0,0 +1,33 @@ +XCOMM $Id: Imakefile,v 1.1.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() |