CC=tcc

MODEL=s

#   If using Roy's Waffle support lib, uncomment this line
WAFLIB= -DUSE_WAFLIB

#   If linking with Ralf Brown's SPAWNO package, uncomment these lines
SPAWNO= -DUSE_SPAWNO
SPAWNLIB=c:\tc\lib\spawn$(MODEL).lib


CFLAGS= -w -m$(MODEL) $(WAFLIB) $(SPAWNO)

undigest : undigest.exe

undigest.exe : undigest.c
    tcc  $(CFLAGS) undigest waflib$(MODEL).lib $(SPAWNLIB)

install: undigest
    copy undigest.exe c:\waffle\bin




