aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRenato Maia <maia.renato@gmail.com>2025-04-22 23:33:05 -0300
committerHisham Muhammad <hisham@gobolinux.org>2025-05-19 11:30:51 -0300
commit9b4ab564387e925a830e24b35dee46621a842f39 (patch)
treec8f5a7d0248bb7eb5aee6fe9543adef665ef786b
parentb1717345d3e814829f6591751994bfedcdf876b9 (diff)
downloadluarocks-9b4ab564387e925a830e24b35dee46621a842f39.tar.gz
luarocks-9b4ab564387e925a830e24b35dee46621a842f39.tar.bz2
luarocks-9b4ab564387e925a830e24b35dee46621a842f39.zip
docs: ajust case of the programming language name
-rw-r--r--docs/creating_a_makefile_that_plays_nice_with_luarocks.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/creating_a_makefile_that_plays_nice_with_luarocks.md b/docs/creating_a_makefile_that_plays_nice_with_luarocks.md
index d6d43a6b..6d9ff2af 100644
--- a/docs/creating_a_makefile_that_plays_nice_with_luarocks.md
+++ b/docs/creating_a_makefile_that_plays_nice_with_luarocks.md
@@ -16,18 +16,18 @@ For building:
16 16
17* `CFLAGS` - flags for the C compiler 17* `CFLAGS` - flags for the C compiler
18* `LIBFLAG` - the flags needed for the linker to create shared libraries 18* `LIBFLAG` - the flags needed for the linker to create shared libraries
19* `LUA_LIBDIR` - where to find the lua libraries 19* `LUA_LIBDIR` - where to find the Lua libraries
20* `LUA_BINDIR` - where to find the lua binary 20* `LUA_BINDIR` - where to find the Lua binary
21* `LUA_INCDIR` - where to find the lua headers 21* `LUA_INCDIR` - where to find the Lua headers
22* `LUALIB` - the name of the lua library. This is not available nor needed on all platforms. 22* `LUALIB` - the name of the Lua library. This is not available nor needed on all platforms.
23* `LUA` - the name of the lua interpreter 23* `LUA` - the name of the Lua interpreter
24 24
25For installing: 25For installing:
26 26
27* `PREFIX` - basic installation prefix for the module 27* `PREFIX` - basic installation prefix for the module
28* `BINDIR` - where to put user callable programs or scripts 28* `BINDIR` - where to put user callable programs or scripts
29* `LIBDIR` - where to put the shared libraries 29* `LIBDIR` - where to put the shared libraries implementing modules
30* `LUADIR` - where to put the lua files 30* `LUADIR` - where to put the Lua scripts implementing modules
31* `CONFDIR` - where to put your modules configuration 31* `CONFDIR` - where to put your modules configuration
32 32
33Most of these variables point immediately where you'd expect them to, but 33Most of these variables point immediately where you'd expect them to, but