OBJS    =test.obj spopup.obj
CFLAGS  =-d
LFLAGS  =-d

.c.obj  :
    cc -c $(CFLAGS) $*.c

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

test.exe    : $(OBJS) test.def test.res
    cc $(LFLAGS) $(OBJS) test.def test.res
