XCOMM
XCOMM  This Imakefile makes the programs cpicker and pixedit.  They
XCOMM  are used to select colors
XCOMM
XCOMM  This Imakefile was produced by Dana Chee (dana@bellcore.com)
XCOMM  Motif variant experimentally produced by Mike Yang (mikey@sgi.com)
XCOMM	

CSRCS = color.c Cpick.c
COBJS = color.o Cpick.o
	
SRCS1 = cpicker.c $(CSRCS)
OBJS1 = cpicker.o $(COBJS)

SRCS2 = pixedit.c $(CSRCS)
OBJS2 = pixedit.o $(COBJS)

PROGRAMS = cpicker pixedit

SYS_LIBRARIES = -lm
DEFINES = -DRGBFILE='"'DefaultRGBDatabase'.txt"'

#ifdef UseInstalled
LOCAL_LIBRARIES = XmClientLibs
DEPLIBS = 
#else	
LOCAL_LIBRARIES = XmClientDepLibs
DEPLIBS = $(LOCAL_LIBRARIES)
#endif

ComplexProgramTarget_1(cpicker,$(LOCAL_LIBRARIES),$(SYSLIBS))
ComplexProgramTarget_2(pixedit,$(LOCAL_LIBRARIES),$(SYSLIBS))

InstallAppDefaults(Cpicker)
InstallAppDefaults(Pixedit)
