# borland s/w is on drive...

BDRV=C:

DEFAULT: phase.exe

!ifdef BCC

phase.exe: phase.c
    bcc -I$(BDRV)\borlandc\include -c phase.c
    tlink  $(BDRV)\borlandc\lib\C0s phase,phase,,..\..\inc\bvhslib+..\..\inc\bvslib+$(BDRV)\borlandc\lib\cs.lib;

!else

phase.exe: phase.c
    cl /Zi /c phase.c
    link /Co /Ma phase,,,..\..\inc\mvhslib;

!endif

