# This makefile uses cc.exe, available on the code disk, or
# in file cc.zip, Library 7 (R&D Publications) of forum CLMFORUM
# on CompuServe.

OBJS    = test.obj checklst.obj
DEBUG   =-d

.c.obj  :
    cc -c $(DEBUG) -DSTRICT $*.c

.rc.res :
    rc -r $*.rc

test.exe    : $(OBJS) test.res
    cc $(DEBUG) $(OBJS) test.res
