#
#	(C)1993 Institute for New Generation Computer Technology
#		Read COPYRIGHT for detailed information.
#
#	Imakefile for DCP-System
#


#	VOBJ specifies graphocal user interface part.
#
VSRC =	visual.c button.c callback.c mark.c draw1.c draw2.c draw3.c
VOBJ =	visual.o button.o callback.o mark.o draw1.o draw2.o draw3.o

#####	for `imake'	#####
#

#	YACC specifies compiler-compiler.
#	(Either `bison -y' or `yacc' will do.)
#
YACC =	bison -y

#	CC specifies c-compiler, used as a linker.
#	(Either `gcc' or `cc' will do.)
#
CC =	gcc

#	CDEBUGFLAGS specifies options for debugging.
#
CDEBUGFLAGS =	-g

#	DEFINES specifies definition options.
#
DEFINES =	-DUNIX

SRCS =	${VSRC}

#---	dependency-rules	---
#
all :: ${VOBJ}

DependTarget()
