#
# Makefile for files in this directory.
#

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

all: cmpfncs.obj dircnt.obj

cmpfncs.obj: cmpfncs.c ../../engine\low\direct.h
       @$(compiler) $(options) cmpfncs.c

dircnt.obj: dircnt.c ..\..\engine\low\rdwrsect.h ..\..\engine\low\fat.h \
            ..\..\engine\low\direct.h ..\..\engine\low\fat.h            \
            ..\..\engine\low\subdir.h ..\..\misc\bool.h
       @$(compiler) $(options) dircnt.c

clean:
       @..\..\..\..\bin\delete cmpfncs.obj
       @..\..\..\..\bin\delete dircnt.obj
