#--------------------------------------
# MAKEFILE for Program: GRABTEST
# using NMAKE (Microsoft C V7.0)
#
# By:    Michel Pelletier
#        Matrox Electronic Systems ltd.
#
# Date:  May 4, 1993.
#--------------------------------------

COMPILE  = cl /c /AL /W3 /G2 /Iinc\ /Foobj\ %s
LINKIT   = link /EXEPACK /SEG:512 /STACK:4000 /BATCH @link.rsp

grabtest.exe : obj\grabtest.obj obj\ovrmenu.obj obj\globals.obj \
               obj\init.obj     obj\message.obj obj\autocal.obj \
               obj\mouse.obj    obj\utils.obj   makefile
    $(LINKIT)

obj\grabtest.obj : src\grabtest.c inc\grabtest.h makefile
    $(COMPILE)

obj\ovrmenu.obj  : src\ovrmenu.c inc\grabtest.h makefile
    $(COMPILE)

obj\globals.obj  : src\globals.c inc\grabtest.h makefile
    $(COMPILE)

obj\init.obj     : src\init.c inc\grabtest.h makefile
    $(COMPILE)

obj\message.obj  : src\message.c inc\grabtest.h makefile
    $(COMPILE)

obj\autocal.obj  : src\autocal.c inc\grabtest.h makefile
    $(COMPILE)

obj\mouse.obj    : src\mouse.c inc\grabtest.h makefile
    $(COMPILE)

obj\utils.obj    : src\utils.c inc\grabtest.h makefile
    $(COMPILE)
