summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 539d8ff..368dc12 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
1prefix = /usr/local/lua52 1prefix = /usr/local/lua52
2bindir = $(prefix)/bin
2libdir = $(prefix)/lib 3libdir = $(prefix)/lib
3datadir = $(prefix)/share 4datadir = $(prefix)/share
4includedir = $(prefix)/include 5includedir = $(prefix)/include
@@ -6,7 +7,7 @@ luainclude = $(includedir)/lua/5.2
6luapath = $(datadir)/lua/5.2 7luapath = $(datadir)/lua/5.2
7luacpath = $(libdir)/lua/5.2 8luacpath = $(libdir)/lua/5.2
8 9
9LUAC = $(prefix)/bin/luac 10LUAC = $(bindir)/luac
10 11
11# backwards compatibile install paths 12# backwards compatibile install paths
12ifneq ($(origin lua52include), undefined) 13ifneq ($(origin lua52include), undefined)
@@ -140,6 +141,9 @@ help:
140 @echo 'luainclude - path to Lua headers ($$(prefix)/include/lua/5.2)' 141 @echo 'luainclude - path to Lua headers ($$(prefix)/include/lua/5.2)'
141 @echo ' luapath - install path for Lua modules ($$(prefix)/share/lua/5.2)' 142 @echo ' luapath - install path for Lua modules ($$(prefix)/share/lua/5.2)'
142 @echo ' luacpath - install path for Lua C modules ($$(prefix)/lib/lua/5.2)' 143 @echo ' luacpath - install path for Lua C modules ($$(prefix)/lib/lua/5.2)'
143 @echo ' LUAC - path to luac utility ($$(prefix)/bin/luac)' 144 @echo ' LUAC - path to luac utility ($$(bindir)/luac)'
145 @echo ""
146 @echo "(NOTE: all the common GNU-style paths are supported, including"
147 @echo "prefix, bindir, libdir, datadir, includedir, and DESTDIR.)"
144 @echo "" 148 @echo ""
145 @echo "Report bugs to <william@25thandClement.com>" 149 @echo "Report bugs to <william@25thandClement.com>"