SRC   = tree.c   treesub.c   treemake.c   treeput.c   treeopt.c
OBJ   = tree.obj treesub.obj treemake.obj treeput.obj treeopt.obj
LIBOPT = -ltinymain.obj

tree : $(OBJ)
	lcc -o tree.exe $(OBJ) -k'-s 5000' $(LIBOPT)

clean:
	rm $(OBJ)

funclist:
	sed -f mkh.sed $(SRC) > treefunc.h
tags:
	etags -m $(SRC)



cdt:	cdt.obj cdt_call.obj cdt_buf.obj cdt_dir.obj
	lcc -o cdt.exe	cdt.obj cdt_call.obj cdt_buf.obj cdt_dir.obj
