summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README4
-rw-r--r--etc/README4
-rw-r--r--etc/luavs.bat4
3 files changed, 4 insertions, 8 deletions
diff --git a/README b/README
index f082d404..11b4dff7 100644
--- a/README
+++ b/README
@@ -24,8 +24,8 @@ See HISTORY for a summary of changes since the last released version.
* Installation
------------
Lua is implemented in pure ANSI C, and compiles unmodified in all known
- platforms that have an ANSI C compiler. Under Unix, simply typing "make"
- should work. See INSTALL for detailed instructions.
+ platforms that have an ANSI C compiler. In most Unix-like platforms, simply
+ do "make" with a suitable target. See INSTALL for detailed instructions.
* Origin
------
diff --git a/etc/README b/etc/README
index dc29a45e..5149fc91 100644
--- a/etc/README
+++ b/etc/README
@@ -19,8 +19,8 @@ lua.pc
pkg-config data for Lua
luavs.bat
- Script to build Lua under "Visual Studio .NET Command Prompt",
- contributed by Mike Pall. Run it from the toplevel as etc\luavs.bat.
+ Script to build Lua under "Visual Studio .NET Command Prompt".
+ Run it from the toplevel as etc\luavs.bat.
min.c
A minimal Lua interpreter.
diff --git a/etc/luavs.bat b/etc/luavs.bat
index 1b870de8..6b1120b8 100644
--- a/etc/luavs.bat
+++ b/etc/luavs.bat
@@ -1,6 +1,4 @@
rem script to build Lua under "Visual Studio .NET Command Prompt".
-rem contributed by Mike Pall.
-
rem do not run it from this directory, run it from the toplevel: etc\luavs.bat
rem it creates lua51.dll, lua51.lib, lua.exe, and luac.exe in src.
@@ -15,5 +13,3 @@ del lua.obj linit.obj lbaselib.obj ldblib.obj liolib.obj lmathlib.obj loslib.obj
link /out:luac.exe *.obj
del *.obj
cd ..
-
-lauxlib.o