This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
csc3410/makethree.bat

12 lines
299 B
Batchfile
Executable File

@echo off
set MASM=C:\Masm615
set PATH=%PATH%;%MASM%
set INCLUDE=%MASM%\include
set LIB=%MASM%\lib
ml -Zi -c -Fl -coff three.asm threecalc.asm threefile.asm
if errorLevel 1 goto endp
link32 three.obj threecalc.obj threefile.obj irvine32.lib kernel32.lib /subsystem:console /debug
:endp