#
# Makefile for files in this directory.
#

compiler = tcc -c
options  = -w -d -Z -O

walktree.obj: walktree.c ..\header\fte.h ..\header\bool.h
        @$(compiler) $(options) -I..\header walktree.c

clean:
        @..\delete walktree.obj
