#
#	(C)1993 Institute for New Generation Computer Technology
#	Read COPYRIGHT for detailed information.
#
#	Makefile for Dynamical Constraint Programming Prototype System
#

#	CC specifies c-compiler.
#	(Either 'cc' or 'gcc' will do.)
#
#	CFLAGS gets flags, and gets passed to lint.
#
CC	= gcc
CFLAGS	= -g -DUNIX

#	MAIN specifies location of main-routine files.
#
MAIN	=	../main/

#	Machine independent part.
#
SRCS =	visual.c button.c callback.c mark.c draw1.c draw2.c draw3.c
INCS =	${MAIN}define.h ${MAIN}typedef.h ${MAIN}global.h ${MAIN}debug.h \
		${MAIN}vnode.h visual.h proto.h
OBJS =	visual.o button.o callback.o mark.o draw1.o draw2.o draw3.o

all :: ${OBJS}
	echo 'Completed'

${OBJS} : ${INCS}

clean :
	rm *.o *~
