############################ -*- Mode: Makefile -*- ###########################
## Imakefile -- 
## ITIID           : $ITI$ $Header $__Header$
## Author          : Ulrich Pfeifer
## Created On      : Wed Mar 23 09:48:45 1994
## Last Modified By: Ulrich Pfeifer
## Last Modified On: Fri Jul 22 14:33:50 1994
## Update Count    : 15
## Status          : Unknown, Use with caution!
###############################################################################

#include "../Install.tmpl"

             SRCS = ctest.c ctype.c 

all:: ctype.o

test: ctest
	./ctest

NormalProgramTarget(mkctype,mkctype.o,,,)
NormalProgramTarget(ctest,ctest.o ctype.o,,,)

includes:: ctype.c
	
ctype.c: mkctype ctype.tmpl
	./mkctype > ctype.c
	cat ctype.tmpl >> ctype.c

DependTarget()


veryclean:: clean
	$(RM) ctype.c
