/*
 * @(#)Imakefile	7.2 02/05/13
 *
 * Imakefile for LabelH
 *
 *   Written by Ti Kan
 *   E-mail: xmcd@amb.org
 *
 *   See the COPYRIGHT file for information about the LabelH widget.
 */


/*
 * If your local X configuration is broken, you may need to muck with
 * the following RANLIB= lines.
 * On most System V platforms RANLIB should be set to /bin/true.
 * On BSD-derived systems RANLIB should be set to ranlib.
 */
#if defined(DoRanlibCmd) && (DoRanlibCmd == NO)
RANLIB= /bin/true
#endif

/*
 * C Source files
 */
SRCS=	LabelH.c

/*
 * Objects files
 */
OBJS=	LabelH.o

/*
 * The use of LabelH widget seems to cause a crash with some X11R5 systems.
 * Add -DNO_LABELH to the DEFINES= line to disable the LabelH widget.
 */
DEFINES=

/*
 * Build rule for the LabelH widget
 */
NormalLibraryTarget(LabelH,$(OBJS))
DependTarget()


