This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
@echo off
|
| 2 |
|
| 3 |
rem ************************************************************
|
| 4 |
rem * $Id: clean-win32.bat,v 1.1 2003/06/12 22:44:08 claudiuc Exp $
|
| 5 |
rem *
|
| 6 |
rem * Description: Clean after compile Quax for WIN32
|
| 7 |
rem *
|
| 8 |
rem ************************************************************
|
| 9 |
|
| 10 |
|
| 11 |
set MVSPATH=C:\Program Files\Microsoft Visual Studio\VC98\Bin
|
| 12 |
set PATH=%PATH%;%MVSPATH%;
|
| 13 |
|
| 14 |
cd src
|
| 15 |
nmake /f "quax.mak" CFG="quax - Win32 Release"
clean |
| 16 |
cd ..
|
| 17 |
|
| 18 |
|