# Steuerdatei fr MAKE
# erzeugt die optimierten MSC-Programme
# Aufruf:
#       MAKE SPEED="-DSPEED" TIMERO fr handoptimierten Code
#       MAKE TIMERO fr den Standardcode

SPEED=

always:
        cl /c /W3 /Lr /Ozax /Grs /Fa $(SPEED) testfunc.c

timer.obj: timer.c timer
        cl /c /W3 /Lr /Ozax /Grs timer.c

timer.exe: timer.obj testfunc.obj timer
        link timer + testfunc,, NUL, /NOD slibce;

