summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorrrt <rrt>2006-01-21 03:17:49 +0000
committerrrt <rrt>2006-01-21 03:17:49 +0000
commit84c021e6b49df05e0ad4facd13d05e39f1a7536b (patch)
tree04cad16e0bd5378e3bc7e3d7f345329f8c2fb791 /windows
downloadlrexlib-84c021e6b49df05e0ad4facd13d05e39f1a7536b.tar.gz
Initial revision
Diffstat (limited to 'windows')
-rwxr-xr-xwindows/bcc32/config.mak42
-rwxr-xr-xwindows/bcc32/make_bcc.mak109
-rwxr-xr-xwindows/bcc32/makedef.lua8
-rwxr-xr-xwindows/bcc32/readme.txt25
-rwxr-xr-xwindows/dev-cpp/lua-5.0/rex_pcre.dev69
-rwxr-xr-xwindows/dev-cpp/lua-5.0/rex_pcre_nr.dev69
-rwxr-xr-xwindows/dev-cpp/lua-5.0/rex_posix1.dev69
-rwxr-xr-xwindows/dev-cpp/lua-5.1/rex_pcre.dev69
-rwxr-xr-xwindows/dev-cpp/lua-5.1/rex_pcre_nr.dev69
-rwxr-xr-xwindows/dev-cpp/lua-5.1/rex_posix1.dev69
10 files changed, 598 insertions, 0 deletions
diff --git a/windows/bcc32/config.mak b/windows/bcc32/config.mak
new file mode 100755
index 0000000..be491a9
--- /dev/null
+++ b/windows/bcc32/config.mak
@@ -0,0 +1,42 @@
+# 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
+#==========================================================================
+!ifdef LUA51
+ DIR_LUA = \progr\lib\lua\lua_5.1
+ LIB_LUA = lua51.lib
+!else
+ DIR_LUA = \progr\lib\lua\lua_5.0
+ LIB_LUA = lua50.lib
+!endif
+DIR_BCB = "E:\Program Files\Borland\CBuilder5"
+
+# 1. PCRE
+#==========================================================================
+DIR_PCRE = \progr\lib\pcre\pcre_6.4
+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/make_bcc.mak b/windows/bcc32/make_bcc.mak
new file mode 100755
index 0000000..13bcfdd
--- /dev/null
+++ b/windows/bcc32/make_bcc.mak
@@ -0,0 +1,109 @@
+# Makefile for LuaPcre.dll, LuaPcre_nr.dll, LuaPosix1.dll and LuaPosix2.dll -
+# using Borland tools under Windows (make.exe, bcc32.exe, ilink32.exe)
+#
+# author: Shmuel Zeigerman (shmuz@actcom.co.il)
+#
+
+#==========================================================================
+# 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
+#==========================================================================
+!include .\config.mak
+
+SRCDIR = ..\..\src
+SRCS_POSIX = $(SRCDIR)\lposix.c $(SRCDIR)\common.c
+OBJS_POSIX = lposix.obj common.obj
+SRCS_PCRE = $(SRCDIR)\lpcre.c $(SRCDIR)\common.c
+OBJS_PCRE = lpcre.obj common.obj
+STARTUP = c0d32.obj
+LFLAGS = -aa -Gi -Gn -Tpd -x
+
+# PCRE, multi-threaded build
+#==========================================================================
+DEF_PCRE = -DREX_OPENLIB=luaopen_$(TARG_PCRE) \
+ -DREX_LIBNAME=\"$(TARG_PCRE)\" -DCOMPAT51
+DEFFILE_PCRE = $(TARG_PCRE).def
+INC_PCRE = $(DIR_LUA);$(DIR_PCRE)
+LIBS_PCRE = $(LIB_LUA) $(LIB_PCRE) cw32mt.lib import32.lib
+LIBD_PCRE = $(DIR_BCB)\LIB;$(DIR_LUA);$(DIR_PCRE)
+FLAGS_PCRE = -A -tWD -tWM
+
+# PCRE with recursion disabled, multi-threaded build
+#==========================================================================
+DEF_PCRE_NR = -DREX_OPENLIB=luaopen_$(TARG_PCRE_NR) \
+ -DREX_LIBNAME=\"$(TARG_PCRE_NR)\" -DCOMPAT51
+DEFFILE_PCRE_NR = $(TARG_PCRE_NR).def
+LIBS_PCRE_NR = $(LIB_LUA) $(LIB_PCRE_NR) cw32mt.lib import32.lib
+
+# POSIX1, single-threaded build
+#==========================================================================
+DEF_POSIX1 = -DREX_OPENLIB=luaopen_$(TARG_POSIX1) \
+ -DREX_LIBNAME=\"$(TARG_POSIX1)\" -DCOMPAT51
+DEFFILE_POSIX1 = $(TARG_POSIX1).def
+INC_POSIX1 = $(DIR_LUA);$(DIR_POSIX1)
+LIBS_POSIX1 = $(LIB_LUA) $(LIB_POSIX1) cw32.lib import32.lib
+LIBD_POSIX1 = $(DIR_BCB)\LIB;$(DIR_LUA);$(DIR_POSIX1)
+FLAGS_POSIX1 = -A -tWD
+
+
+# POSIX2, multi-threaded build
+#==========================================================================
+#
+# File regex.hpp was copied from $(DIR_POSIX2)/boost to $(DIR_POSIX2)
+#
+DEF_POSIX2 = -DREX_OPENLIB=luaopen_$(TARG_POSIX2) \
+ -DREX_LIBNAME=\"$(TARG_POSIX2)\" -DCOMPAT51
+DEFFILE_POSIX2 = $(TARG_POSIX2).def
+INC_POSIX2 = $(DIR_LUA);$(DIR_POSIX2);$(DIR_POSIX2)/boost
+LIBS_POSIX2 = $(LIB_LUA) $(LIB_POSIX2) cw32mt.lib import32.lib
+LIBD_POSIX2 = $(DIR_BCB)\LIB;$(DIR_LUA);$(DIR_POSIX2)\libs\regex\build\bcb
+FLAGS_POSIX2 = -tWD -tWM -DLREXLIB_POSIX_EXT
+
+# -------------------------------------------------------------------------
+# TARGETS
+# -------------------------------------------------------------------------
+all : posix1 posix2 pcre pcre_nr
+posix1 : $(TARG_POSIX1).dll
+posix2 : $(TARG_POSIX2).dll
+pcre : $(TARG_PCRE).dll
+pcre_nr : $(TARG_PCRE_NR).dll
+
+$(TARG_PCRE).dll : $(SRCS_PCRE)
+ lua makedef.lua $(TARG_PCRE)
+ bcc32 -c $(FLAGS_PCRE) -I$(INC_PCRE) -L$(LIBD_PCRE) \
+ $(DEF_PCRE) $(SRCS_PCRE)
+ ilink32 -L$(LIBD_PCRE) $(LFLAGS) $(STARTUP) $(OBJS_PCRE), $(TARG_PCRE),, \
+ $(LIBS_PCRE), $(DEFFILE_PCRE),
+
+$(TARG_PCRE_NR).dll : $(SRCS_PCRE)
+ lua makedef.lua $(TARG_PCRE_NR)
+ bcc32 -c $(FLAGS_PCRE) -I$(INC_PCRE) -L$(LIBD_PCRE) \
+ $(DEF_PCRE_NR) $(SRCS_PCRE)
+ ilink32 -L$(LIBD_PCRE) $(LFLAGS) $(STARTUP) $(OBJS_PCRE), $(TARG_PCRE_NR),, \
+ $(LIBS_PCRE_NR), $(DEFFILE_PCRE_NR),
+
+$(TARG_POSIX1).dll : $(SRCS_POSIX)
+ lua makedef.lua $(TARG_POSIX1)
+ bcc32 -c $(FLAGS_POSIX1) -I$(INC_POSIX1) -L$(LIBD_POSIX1) \
+ $(DEF_POSIX1) $(SRCS_POSIX)
+ ilink32 -L$(LIBD_POSIX1) $(LFLAGS) $(STARTUP) $(OBJS_POSIX), \
+ $(TARG_POSIX1),, $(LIBS_POSIX1), $(DEFFILE_POSIX1),
+
+$(TARG_POSIX2).dll : $(SRCS_POSIX)
+ lua makedef.lua $(TARG_POSIX2)
+ bcc32 -c $(FLAGS_POSIX2) -I$(INC_POSIX2) -L$(LIBD_POSIX2) \
+ $(DEF_POSIX2) $(SRCS_POSIX)
+ ilink32 -L$(LIBD_POSIX2) $(LFLAGS) $(STARTUP) $(OBJS_POSIX), \
+ $(TARG_POSIX2),, $(LIBS_POSIX2), $(DEFFILE_POSIX2),
+
+
+clean :
+ del *.obj
+ del *.tds
+ del *.lib
+ del *.def
+
diff --git a/windows/bcc32/makedef.lua b/windows/bcc32/makedef.lua
new file mode 100755
index 0000000..1a06532
--- /dev/null
+++ b/windows/bcc32/makedef.lua
@@ -0,0 +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()
diff --git a/windows/bcc32/readme.txt b/windows/bcc32/readme.txt
new file mode 100755
index 0000000..3092214
--- /dev/null
+++ b/windows/bcc32/readme.txt
@@ -0,0 +1,25 @@
+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.
+
+ 3. By default, the targets are built for work with Lua 5.0.
+ To build them for Lua 5.1, add "-DLUA51" on the make command line.
+
+
diff --git a/windows/dev-cpp/lua-5.0/rex_pcre.dev b/windows/dev-cpp/lua-5.0/rex_pcre.dev
new file mode 100755
index 0000000..e1a64fa
--- /dev/null
+++ b/windows/dev-cpp/lua-5.0/rex_pcre.dev
@@ -0,0 +1,69 @@
+[Project]
+FileName=rex_pcre.dev
+Name=rex_pcre
+UnitCount=2
+Type=3
+Ver=1
+ObjFiles=
+Includes=/progr/lib/pcre/pcre_6.4;/progr/lib/lua/lua_5.0
+Libs=
+PrivateResource=
+ResourceIncludes=
+MakeIncludes=
+Compiler=-DREX_OPENLIB=luaopen_rex_pcre_@@_-DREX_LIBNAME=\"rex_pcre\"_@@_-DREX_LIB_API=__declspec(dllexport)_@@_-DCOMPAT51_@@_
+CppCompiler=
+Linker=--no-export-all-symbols --add-stdcall-alias_@@_/progr/lib/lua/lua_5.0/liblua50.a_@@_/progr/lib/pcre/pcre_6.4/libpcre.a_@@_
+IsCpp=0
+Icon=
+ExeOutput=
+ObjectOutput=.
+OverrideOutput=0
+OverrideOutputName=rex_pcre.dll
+HostApplication=
+Folders=
+CommandLine=
+UseCustomMakefile=0
+CustomMakefile=
+IncludeVersionInfo=0
+SupportXPThemes=0
+CompilerSet=0
+CompilerSettings=0000000000000000000000
+
+[Unit1]
+FileName=..\..\..\src\lpcre.c
+CompileCpp=0
+Folder=rex_pcre
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[Unit2]
+FileName=..\..\..\src\common.c
+CompileCpp=0
+Folder=rex_pcre
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[VersionInfo]
+Major=0
+Minor=1
+Release=1
+Build=1
+LanguageID=1033
+CharsetID=1252
+CompanyName=
+FileVersion=
+FileDescription=Developed using the Dev-C++ IDE
+InternalName=
+LegalCopyright=
+LegalTrademarks=
+OriginalFilename=
+ProductName=
+ProductVersion=
+AutoIncBuildNr=0
+
diff --git a/windows/dev-cpp/lua-5.0/rex_pcre_nr.dev b/windows/dev-cpp/lua-5.0/rex_pcre_nr.dev
new file mode 100755
index 0000000..d575d19
--- /dev/null
+++ b/windows/dev-cpp/lua-5.0/rex_pcre_nr.dev
@@ -0,0 +1,69 @@
+[Project]
+FileName=rex_pcre_nr.dev
+Name=rex_pcre_nr
+UnitCount=2
+Type=3
+Ver=1
+ObjFiles=
+Includes=/progr/lib/pcre/pcre_6.4;/progr/lib/lua/lua_5.0
+Libs=
+PrivateResource=
+ResourceIncludes=
+MakeIncludes=
+Compiler=-DREX_OPENLIB=luaopen_rex_pcre_nr_@@_-DREX_LIBNAME=\"rex_pcre_nr\"_@@_-DREX_LIB_API=__declspec(dllexport)_@@_-DCOMPAT51_@@_
+CppCompiler=
+Linker=--no-export-all-symbols --add-stdcall-alias_@@_/progr/lib/lua/lua_5.0/liblua50.a_@@_/progr/lib/pcre/pcre_6.4/libpcre_nr.a_@@_
+IsCpp=0
+Icon=
+ExeOutput=
+ObjectOutput=.
+OverrideOutput=0
+OverrideOutputName=rex_pcre_nr.dll
+HostApplication=
+Folders=
+CommandLine=
+UseCustomMakefile=0
+CustomMakefile=
+IncludeVersionInfo=0
+SupportXPThemes=0
+CompilerSet=0
+CompilerSettings=0000000000000000000000
+
+[Unit1]
+FileName=..\..\..\src\lpcre.c
+CompileCpp=0
+Folder=rex_pcre_nr
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[Unit2]
+FileName=..\..\..\src\common.c
+CompileCpp=0
+Folder=rex_pcre_nr
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[VersionInfo]
+Major=0
+Minor=1
+Release=1
+Build=1
+LanguageID=1033
+CharsetID=1252
+CompanyName=
+FileVersion=
+FileDescription=Developed using the Dev-C++ IDE
+InternalName=
+LegalCopyright=
+LegalTrademarks=
+OriginalFilename=
+ProductName=
+ProductVersion=
+AutoIncBuildNr=0
+
diff --git a/windows/dev-cpp/lua-5.0/rex_posix1.dev b/windows/dev-cpp/lua-5.0/rex_posix1.dev
new file mode 100755
index 0000000..5e5fa15
--- /dev/null
+++ b/windows/dev-cpp/lua-5.0/rex_posix1.dev
@@ -0,0 +1,69 @@
+[Project]
+FileName=rex_posix1.dev
+Name=rex_posix1
+UnitCount=2
+Type=3
+Ver=1
+ObjFiles=
+Includes=\Progr\lib\lua\lua_5.0;\Progr\lib\henry_spencer
+Libs=
+PrivateResource=
+ResourceIncludes=
+MakeIncludes=
+Compiler=-DREX_OPENLIB=luaopen_rex_posix1_@@_-DREX_LIBNAME=\"rex_posix1\"_@@_-DREX_LIB_API=__declspec(dllexport)_@@_-DCOMPAT51_@@_
+CppCompiler=
+Linker=--no-export-all-symbols --add-stdcall-alias_@@_/Progr/lib/henry_spencer/libregex.lib_@@_/Progr/lib/lua/lua_5.0/liblua50.a_@@_
+IsCpp=0
+Icon=
+ExeOutput=
+ObjectOutput=.
+OverrideOutput=0
+OverrideOutputName=rex_posix1.dll
+HostApplication=
+Folders=
+CommandLine=
+UseCustomMakefile=0
+CustomMakefile=
+IncludeVersionInfo=0
+SupportXPThemes=0
+CompilerSet=0
+CompilerSettings=0000000000000000000000
+
+[Unit1]
+FileName=..\..\..\src\lposix.c
+CompileCpp=0
+Folder=rex_posix1
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[Unit2]
+FileName=..\..\..\src\common.c
+CompileCpp=0
+Folder=rex_posix1
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[VersionInfo]
+Major=0
+Minor=1
+Release=1
+Build=1
+LanguageID=1033
+CharsetID=1252
+CompanyName=
+FileVersion=
+FileDescription=Developed using the Dev-C++ IDE
+InternalName=
+LegalCopyright=
+LegalTrademarks=
+OriginalFilename=
+ProductName=
+ProductVersion=
+AutoIncBuildNr=0
+
diff --git a/windows/dev-cpp/lua-5.1/rex_pcre.dev b/windows/dev-cpp/lua-5.1/rex_pcre.dev
new file mode 100755
index 0000000..dbe9fc0
--- /dev/null
+++ b/windows/dev-cpp/lua-5.1/rex_pcre.dev
@@ -0,0 +1,69 @@
+[Project]
+FileName=rex_pcre.dev
+Name=rex_pcre
+UnitCount=2
+Type=3
+Ver=1
+ObjFiles=
+Includes=/progr/lib/pcre/pcre_6.4;/progr/lib/lua/lua_5.1
+Libs=
+PrivateResource=
+ResourceIncludes=
+MakeIncludes=
+Compiler=-DREX_OPENLIB=luaopen_rex_pcre_@@_-DREX_LIBNAME=\"rex_pcre\"_@@_-DREX_LIB_API=__declspec(dllexport)_@@_
+CppCompiler=
+Linker=--no-export-all-symbols --add-stdcall-alias_@@_/progr/lib/lua/lua_5.1/liblua51.a_@@_/progr/lib/pcre/pcre_6.4/libpcre.a_@@_
+IsCpp=0
+Icon=
+ExeOutput=
+ObjectOutput=.
+OverrideOutput=0
+OverrideOutputName=rex_pcre.dll
+HostApplication=
+Folders=
+CommandLine=
+UseCustomMakefile=0
+CustomMakefile=
+IncludeVersionInfo=0
+SupportXPThemes=0
+CompilerSet=0
+CompilerSettings=0000000000000000000000
+
+[Unit1]
+FileName=..\..\..\src\lpcre.c
+CompileCpp=0
+Folder=rex_pcre
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[Unit2]
+FileName=..\..\..\src\common.c
+CompileCpp=0
+Folder=rex_pcre
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[VersionInfo]
+Major=0
+Minor=1
+Release=1
+Build=1
+LanguageID=1033
+CharsetID=1252
+CompanyName=
+FileVersion=
+FileDescription=Developed using the Dev-C++ IDE
+InternalName=
+LegalCopyright=
+LegalTrademarks=
+OriginalFilename=
+ProductName=
+ProductVersion=
+AutoIncBuildNr=0
+
diff --git a/windows/dev-cpp/lua-5.1/rex_pcre_nr.dev b/windows/dev-cpp/lua-5.1/rex_pcre_nr.dev
new file mode 100755
index 0000000..3ada6a3
--- /dev/null
+++ b/windows/dev-cpp/lua-5.1/rex_pcre_nr.dev
@@ -0,0 +1,69 @@
+[Project]
+FileName=rex_pcre_nr.dev
+Name=rex_pcre_nr
+UnitCount=2
+Type=3
+Ver=1
+ObjFiles=
+Includes=/progr/lib/pcre/pcre_6.4;/progr/lib/lua/lua_5.1
+Libs=
+PrivateResource=
+ResourceIncludes=
+MakeIncludes=
+Compiler=-DREX_OPENLIB=luaopen_rex_pcre_nr_@@_-DREX_LIBNAME=\"rex_pcre_nr\"_@@_-DREX_LIB_API=__declspec(dllexport)_@@_
+CppCompiler=
+Linker=--no-export-all-symbols --add-stdcall-alias_@@_/progr/lib/lua/lua_5.1/liblua51.a_@@_/progr/lib/pcre/pcre_6.4/libpcre_nr.a_@@_
+IsCpp=0
+Icon=
+ExeOutput=
+ObjectOutput=.
+OverrideOutput=0
+OverrideOutputName=rex_pcre_nr.dll
+HostApplication=
+Folders=
+CommandLine=
+UseCustomMakefile=0
+CustomMakefile=
+IncludeVersionInfo=0
+SupportXPThemes=0
+CompilerSet=0
+CompilerSettings=0000000000000000000000
+
+[Unit1]
+FileName=..\..\..\src\lpcre.c
+CompileCpp=0
+Folder=rex_pcre_nr
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[Unit2]
+FileName=..\..\..\src\common.c
+CompileCpp=0
+Folder=rex_pcre_nr
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[VersionInfo]
+Major=0
+Minor=1
+Release=1
+Build=1
+LanguageID=1033
+CharsetID=1252
+CompanyName=
+FileVersion=
+FileDescription=Developed using the Dev-C++ IDE
+InternalName=
+LegalCopyright=
+LegalTrademarks=
+OriginalFilename=
+ProductName=
+ProductVersion=
+AutoIncBuildNr=0
+
diff --git a/windows/dev-cpp/lua-5.1/rex_posix1.dev b/windows/dev-cpp/lua-5.1/rex_posix1.dev
new file mode 100755
index 0000000..ba23b6c
--- /dev/null
+++ b/windows/dev-cpp/lua-5.1/rex_posix1.dev
@@ -0,0 +1,69 @@
+[Project]
+FileName=rex_posix1.dev
+Name=rex_posix1
+UnitCount=2
+Type=3
+Ver=1
+ObjFiles=
+Includes=\Progr\lib\lua\lua_5.1;\Progr\lib\henry_spencer
+Libs=
+PrivateResource=
+ResourceIncludes=
+MakeIncludes=
+Compiler=-DREX_OPENLIB=luaopen_rex_posix1_@@_-DREX_LIBNAME=\"rex_posix1\"_@@_-DREX_LIB_API=__declspec(dllexport)_@@_
+CppCompiler=
+Linker=--no-export-all-symbols --add-stdcall-alias_@@_/Progr/lib/henry_spencer/libregex.lib_@@_/Progr/lib/lua/lua_5.1/liblua51.a_@@_
+IsCpp=0
+Icon=
+ExeOutput=
+ObjectOutput=.
+OverrideOutput=0
+OverrideOutputName=rex_posix1.dll
+HostApplication=
+Folders=
+CommandLine=
+UseCustomMakefile=0
+CustomMakefile=
+IncludeVersionInfo=0
+SupportXPThemes=0
+CompilerSet=0
+CompilerSettings=0000000000000000000000
+
+[Unit1]
+FileName=..\..\..\src\lposix.c
+CompileCpp=0
+Folder=rex_posix1
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[Unit2]
+FileName=..\..\..\src\common.c
+CompileCpp=0
+Folder=rex_posix1
+Compile=1
+Link=1
+Priority=1000
+OverrideBuildCmd=0
+BuildCmd=
+
+[VersionInfo]
+Major=0
+Minor=1
+Release=1
+Build=1
+LanguageID=1033
+CharsetID=1252
+CompanyName=
+FileVersion=
+FileDescription=Developed using the Dev-C++ IDE
+InternalName=
+LegalCopyright=
+LegalTrademarks=
+OriginalFilename=
+ProductName=
+ProductVersion=
+AutoIncBuildNr=0
+