aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatarLibravatar William Ahern <william@server.local> 2013-02-27 15:33:17 -0800
committerLibravatarLibravatar William Ahern <william@server.local> 2013-02-27 15:33:17 -0800
commitcb2880129545b7af565d59bc0a3bae4fc17e2384 (patch)
treebd3a4ee10dbf4cdfc3e10dcf49f328c967c42286 /Makefile
parentf9c6bc791e165cf0695e707633e022aa76b8310a (diff)
downloadluaossl-cb2880129545b7af565d59bc0a3bae4fc17e2384.tar.gz
luaossl-cb2880129545b7af565d59bc0a3bae4fc17e2384.tar.bz2
luaossl-cb2880129545b7af565d59bc0a3bae4fc17e2384.zip
-n
update help
Diffstat (limited to 'Makefile')
-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 @@
prefix = /usr/local/lua52
+bindir = $(prefix)/bin
libdir = $(prefix)/lib
datadir = $(prefix)/share
includedir = $(prefix)/include
@@ -6,7 +7,7 @@ luainclude = $(includedir)/lua/5.2
luapath = $(datadir)/lua/5.2
luacpath = $(libdir)/lua/5.2
-LUAC = $(prefix)/bin/luac
+LUAC = $(bindir)/luac
# backwards compatibile install paths
ifneq ($(origin lua52include), undefined)
@@ -140,6 +141,9 @@ help:
@echo 'luainclude - path to Lua headers ($$(prefix)/include/lua/5.2)'
@echo ' luapath - install path for Lua modules ($$(prefix)/share/lua/5.2)'
@echo ' luacpath - install path for Lua C modules ($$(prefix)/lib/lua/5.2)'
- @echo ' LUAC - path to luac utility ($$(prefix)/bin/luac)'
+ @echo ' LUAC - path to luac utility ($$(bindir)/luac)'
+ @echo ""
+ @echo "(NOTE: all the common GNU-style paths are supported, including"
+ @echo "prefix, bindir, libdir, datadir, includedir, and DESTDIR.)"
@echo ""
@echo "Report bugs to <william@25thandClement.com>"