Files
harbour-core/harbour/b32_slex.bat
Ron Pinkas 0f6294e523 - include\harbour.slx
- source\compiler\harbourl.c

  + b32_slex.bat
  + hb_slex.bc

  + source\compiler\hbslex.c
  + source\compiler\simplex.c
  + source\compiler\harbour.slx
2000-07-08 00:27:47 +00:00

40 lines
744 B
Batchfile

@echo off
rem
rem $Id$
rem
if "%1" == "clean" goto CLEAN
if "%1" == "CLEAN" goto CLEAN
:BUILD
make -fhb_slex.bc %1 %2 %3 > make_b32.log
if errorlevel 1 goto BUILD_ERR
:BUILD_OK
copy bin\b32\*.exe bin\*.* > nul
copy lib\b32\*.lib lib\*.* > nul
goto EXIT
:BUILD_ERR
notepad make_b32.log
goto EXIT
:CLEAN
if exist bin\b32\*.exe del bin\b32\*.exe
if exist bin\b32\*.tds del bin\b32\*.tds
if exist bin\b32\*.map del bin\b32\*.map
if exist lib\b32\*.lib del lib\b32\*.lib
if exist lib\b32\*.bak del lib\b32\*.bak
if exist obj\b32\*.obj del obj\b32\*.obj
if exist obj\b32\*.c del obj\b32\*.c
if exist obj\b32\*.h del obj\b32\*.h
if exist make_b32.log del make_b32.log
goto EXIT
:EXIT