summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorshmuz <shmuz>2006-11-18 13:44:22 +0000
committershmuz <shmuz>2006-11-18 13:44:22 +0000
commitbf776e4c3c28e082d364f78c64ac7a749b27e7fb (patch)
tree42cdf6dce8dce4038ac7712ca12283b95781c05e /windows
parent0c21ec9e39550b07b53bef67763d66430bfff1ad (diff)
downloadlrexlib-bf776e4c3c28e082d364f78c64ac7a749b27e7fb.tar.gz
line endings fixed
Diffstat (limited to 'windows')
-rwxr-xr-xwindows/bcc32/config.mak74
-rwxr-xr-xwindows/bcc32/makedef.lua16
-rwxr-xr-xwindows/bcc32/readme.txt42
3 files changed, 66 insertions, 66 deletions
diff --git a/windows/bcc32/config.mak b/windows/bcc32/config.mak
index 5d5c77d..94ff749 100755
--- a/windows/bcc32/config.mak
+++ b/windows/bcc32/config.mak
@@ -1,37 +1,37 @@
-# Configuration file.
-
-#==========================================================================
-# POSIX1 --> the library by: Henry Spencer
-# POSIX2 --> the library by: John Maddock
-# PCRE, PCRE_NR --> the library by: Philip Hazel
-#==========================================================================
-
-# Definitions common for all the targets
-#==========================================================================
-DIR_LUA = \progr\lib\lua\lua_5.1
-LIB_LUA = lua5.1.lib
-DIR_BCB = "C:\Program Files\Borland\CBuilder5"
-
-# 1. PCRE
-#==========================================================================
-DIR_PCRE = \progr\lib\pcre\pcre_6.7
-LIB_PCRE = pcre.lib
-TARG_PCRE = rex_pcre
-
-# 2. PCRE with recursion disabled
-#==========================================================================
-LIB_PCRE_NR = pcre_nr.lib
-TARG_PCRE_NR = rex_pcre_nr
-
-# 3. POSIX1
-#==========================================================================
-DIR_POSIX1 = \progr\lib\henry_spencer
-LIB_POSIX1 = libregex-bcc.lib
-TARG_POSIX1 = rex_posix1
-
-# 4. POSIX2
-#==========================================================================
-DIR_POSIX2 = E:\boost_1_31_0
-LIB_POSIX2 = libboost_regex-bcb-mt-s-1_31.lib
-TARG_POSIX2 = rex_posix2
-
+# Configuration file.
+
+#==========================================================================
+# POSIX1 --> the library by: Henry Spencer
+# POSIX2 --> the library by: John Maddock
+# PCRE, PCRE_NR --> the library by: Philip Hazel
+#==========================================================================
+
+# Definitions common for all the targets
+#==========================================================================
+DIR_LUA = \progr\lib\lua\lua_5.1
+LIB_LUA = lua5.1.lib
+DIR_BCB = "C:\Program Files\Borland\CBuilder5"
+
+# 1. PCRE
+#==========================================================================
+DIR_PCRE = \progr\lib\pcre\pcre_6.7
+LIB_PCRE = pcre.lib
+TARG_PCRE = rex_pcre
+
+# 2. PCRE with recursion disabled
+#==========================================================================
+LIB_PCRE_NR = pcre_nr.lib
+TARG_PCRE_NR = rex_pcre_nr
+
+# 3. POSIX1
+#==========================================================================
+DIR_POSIX1 = \progr\lib\henry_spencer
+LIB_POSIX1 = libregex-bcc.lib
+TARG_POSIX1 = rex_posix1
+
+# 4. POSIX2
+#==========================================================================
+DIR_POSIX2 = E:\boost_1_31_0
+LIB_POSIX2 = libboost_regex-bcb-mt-s-1_31.lib
+TARG_POSIX2 = rex_posix2
+
diff --git a/windows/bcc32/makedef.lua b/windows/bcc32/makedef.lua
index 1a06532..815c7e5 100755
--- a/windows/bcc32/makedef.lua
+++ b/windows/bcc32/makedef.lua
@@ -1,8 +1,8 @@
--- This script creates definition (.def) files.
--- arg[1] is target name w/o extension.
-
-local target = assert(arg[1])
-local f = assert(io.open(target .. ".def", "w"))
-f:write("EXPORTS\n")
-f:write(" luaopen_" .. target .. " = _luaopen_" .. target .. "\n")
-f:close()
+-- This script creates definition (.def) files.
+-- arg[1] is target name w/o extension.
+
+local target = assert(arg[1])
+local f = assert(io.open(target .. ".def", "w"))
+f:write("EXPORTS\n")
+f:write(" luaopen_" .. target .. " = _luaopen_" .. target .. "\n")
+f:close()
diff --git a/windows/bcc32/readme.txt b/windows/bcc32/readme.txt
index 73081a0..5b8aec6 100755
--- a/windows/bcc32/readme.txt
+++ b/windows/bcc32/readme.txt
@@ -1,21 +1,21 @@
-Introduction
-------------
- This directory contains files for building Lrexlib libraries for Windows
- using Borland development tools.
-
- The makefile was tested with:
- bcc32.exe - version 5.5.1
- ilink32.exe - version 5.00
- make.exe - version 5.2
-
-Build instructions
-------------------
- 1. Edit config.mak to adjust the directory names, library names
- and target names to your system configuration and personal preferences.
-
- 2. Run "make.exe -fmake_bcc.mak"
- -- to build all the available targets;
- Run "make.exe -fmake_bcc.mak <target_name> [<target_name> ...]",
- for example: make.exe -fmake_bcc.mak posix1 pcre
- -- to build only specified targets.
-
+Introduction
+------------
+ This directory contains files for building Lrexlib libraries for Windows
+ using Borland development tools.
+
+ The makefile was tested with:
+ bcc32.exe - version 5.5.1
+ ilink32.exe - version 5.00
+ make.exe - version 5.2
+
+Build instructions
+------------------
+ 1. Edit config.mak to adjust the directory names, library names
+ and target names to your system configuration and personal preferences.
+
+ 2. Run "make.exe -fmake_bcc.mak"
+ -- to build all the available targets;
+ Run "make.exe -fmake_bcc.mak <target_name> [<target_name> ...]",
+ for example: make.exe -fmake_bcc.mak posix1 pcre
+ -- to build only specified targets.
+