summaryrefslogtreecommitdiffstats
path: root/makew32.bat
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 20:21:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 20:21:21 +0000
commit510ed32cfbffa6148018869f5ade416505a450b3 (patch)
tree0aafabcf3dfaab7685fa0fcbaa683dafe287807e /makew32.bat
parentInitial commit. (diff)
downloadlynx-510ed32cfbffa6148018869f5ade416505a450b3.tar.xz
lynx-510ed32cfbffa6148018869f5ade416505a450b3.zip
Adding upstream version 2.9.0rel.0.upstream/2.9.0rel.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'makew32.bat')
-rw-r--r--makew32.bat28
1 files changed, 28 insertions, 0 deletions
diff --git a/makew32.bat b/makew32.bat
new file mode 100644
index 0000000..86fdd8a
--- /dev/null
+++ b/makew32.bat
@@ -0,0 +1,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