#
# Makefile for files in this directory.
#

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

libman   = tlib

all: ovlimpl.lib
     @echo host implementation compiled.

ovlimpl.lib: ovlimpl.obj
     @..\..\..\..\bin\delete ovlimpl.lib
     @$(libman) ovlimpl.lib + ovlimpl.obj
     @..\..\..\..\bin\delete ovlimpl.bak

ovlimpl.obj: ovlimpl.c ..\..\overlays\expected.h ..\dosio\dosio.h \
             ..\main\chkargs.h
     @$(compiler) $(options) ovlimpl.c

clean: 
     @..\..\..\..\bin\delete ovlimpl.obj
     @..\..\..\..\bin\delete ovlimpl.lib
