Files
harbour-core/harbour/contrib/libnf/make_b32.bat
Viktor Szakats 5f2f20dc8d 2007-08-08 15:44 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/libnf/make_b32.bat
   - contrib/libnf/nanfor.bc
   + contrib/libnf/makefile.bc
     * BC makefile name made uniform.
2007-08-08 13:44:23 +00:00

30 lines
331 B
Batchfile

@echo off
rem
rem $Id$
rem
if "%1" == "clean" goto CLEAN
if "%1" == "CLEAN" goto CLEAN
:BUILD
make -fmakefile.bc %1 %2 %3 > make_b32.log
if errorlevel 1 goto BUILD_ERR
:BUILD_OK
copy ..\..\lib\b32\nf.lib ..\..\lib\*.* > nul
goto EXIT
:BUILD_ERR
notepad make_b32.log
goto EXIT
:CLEAN
goto EXIT
:EXIT