.SUFFIXES:
.SUFFIXES: .sc .c

.sc.c:
	scc -C $*.sc

cdecl:	cdecl.c const.c extern.c typedef.c
	scc -o cdecl cdecl.c const.c extern.c typedef.c

install-src:
	for x in *.c *.sc makefile README document; \
	   do install -c $$x /wrl/Gen/src/schemetoc/cdecl; \
	done
