diff options
author | William Ahern <william@server.local> | 2013-02-27 15:33:17 -0800 |
---|---|---|
committer | William Ahern <william@server.local> | 2013-02-27 15:33:17 -0800 |
commit | cb2880129545b7af565d59bc0a3bae4fc17e2384 (patch) | |
tree | bd3a4ee10dbf4cdfc3e10dcf49f328c967c42286 | |
parent | f9c6bc791e165cf0695e707633e022aa76b8310a (diff) | |
download | luaossl-cb2880129545b7af565d59bc0a3bae4fc17e2384.tar.gz luaossl-cb2880129545b7af565d59bc0a3bae4fc17e2384.tar.bz2 luaossl-cb2880129545b7af565d59bc0a3bae4fc17e2384.zip |
-n
update help
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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>" |