#
# example programs Imakefile
#
#

#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

CC=g++
CDEBUGFLAGS = -Wall -g -O2

SRCS1=	colorlib.c updates.c dialog.c init.c xrgb.c 
OBJS1=	colorlib.o updates.o dialog.o init.o xrgb.o 

PROG1 = xrgb

PROGRAMS = xrgb

all::  $(PROGRAMS)

LOCAL_LIBRARIES = $(XAWLIB) $(XMULIB) $(XTOOLLIB) $(XLIB)

NormalProgramTarget(xrgb, $(OBJS1),,$(LOCAL_LIBRARIES),)

