about summary refs log tree commit diff stats
path: root/arc/mu.arc
Commit message (Collapse)AuthorAgeFilesLines
* 1310Kartik K. Agaram2015-05-081-11/+11
|
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+3259
I've tried to update the Readme, but there are at least a couple of issues.
2012-07-06 21:20:56 -0400 committer Thomas E. Dickey <dickey@invisible-island.net> 2012-07-06 21:20:56 -0400 snapshot of project "lynx", label v2-8-8dev_12d' href='/ingrix/lynx-snapshots/commit/makew32.bat?id=299c41fc25868e0eb82e46ca8e4188c70db57363'>299c41fc ^
82473218 ^
bc0fa578 ^





82473218 ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
          
                                                             












                                                                        


                                                                             
 





                                                                       


         
@echo off
rem $LynxId: makew32.bat,v 1.5 2012/07/05 23:34:52 tom Exp $
setlocal

rem Check if GW32_ROOT is defined, and if not, fill in a default value.

	if not "x%GW32_ROOT%"=="x" goto exists
	set GW32_ROOT=c:\app\gnuwin32
:exists

	if exist "%GW32_ROOT%" goto doit
	echo ? %GW32_ROOT% does not exist
	goto finish

:doit
rem	if     exist %GW32_ROOT%\bcblibs set PATH=%PATH%;%GW32_ROOT%\bcblibs
rem	if not exist %GW32_ROOT%\bcblibs set PATH=%PATH%;%GW32_ROOT%\bin
	set PATH=%PATH%;%GW32_ROOT%\bin

rem Borland C
rem    -m                Displays the date and time stamp of each file
rem    -c                Caches auto-dependency information
make.exe -m -c -f makefile.bcb %1 %2
REM make.exe -m -c -f makefile.deb
REM make.exe -f makefile.win

:finish
endlocal