/**/#	Copyright 1988 Massachusetts Institute of Technology.
/**/#
/**/#	For copying and distribution information, see the file
/**/#	"mit-copyright.h". 
/**/#
/**/#	$Source: /mit/zephyr/src/ss/make_commands/RCS/Imakefile,v $
/**/#	$Author: jtkohl $
/**/#	$Header: Imakefile,v 1.4 89/05/31 10:16:49 jtkohl Exp $
/**/#

LIBS= -ll
LINCLUDES= -I../lib -I..
SRCS= 	mk_cmds.c utils.c options.c
OTHERSRCS= ct.y cmd_tbl.l
OBJS=	mk_cmds.o utils.o options.o ct.tab.o cmd_tbl.o

SRCDIR= ${SRCTOP}/ss/make_commands
CODE= ${SRCS} ${OTHERSRCS} Imakefile

normal_obj_rule()

program(mk_cmds,$(OBJS),,$(LIBS),$(CLIENTDIR))

depend:: ct.tab.c ct.tab.h
ct.tab.c ct.tab.h: ct.y
	rm -f ct.tab.* y.*
	yacc -d ct.y
	mv -f y.tab.c ct.tab.c
	mv -f y.tab.h ct.tab.h
