# Copyright (C) 2000, Kazuhide Hatsuyama, All rights reserved.
#
# makefile for tokei

all: tokei.fx

tokei.fx: tokei.bin
	mkfent tokei.cf

tokei.bin: tokei.obj objman.obj
	lcc86 -k-M -o tokei.bin tokei.obj objman.obj 

tokei.obj: tokei.c
	lcc86 -c -o tokei.obj tokei.c

objman.obj: objman.c
	lcc86 -c -o objman.obj objman.c

clean:
	del objman.obj
	del tokei.obj
	del tokei.bin
	del tokei.fx
