diff options
author | william <william@25tandclement.com> | 2014-03-22 22:02:22 -0700 |
---|---|---|
committer | william <william@25tandclement.com> | 2014-03-22 22:02:22 -0700 |
commit | 0779edda662fb82d619a9d1aa31999bbac03a98b (patch) | |
tree | 62118ae9a90089ab07fee21f2e3440e6becb9771 /GNUmakefile | |
parent | 4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f (diff) | |
download | luaossl-0779edda662fb82d619a9d1aa31999bbac03a98b.tar.gz luaossl-0779edda662fb82d619a9d1aa31999bbac03a98b.tar.bz2 luaossl-0779edda662fb82d619a9d1aa31999bbac03a98b.zip |
add Lua 5.3 support
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 33903f8..9c1fece 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -24,6 +24,8 @@ lua51cpath ?= $(libdir)/lua/5.1 lua51path ?= $(datadir)/lua/5.1 lua52cpath ?= $(libdir)/lua/5.2 lua52path ?= $(datadir)/lua/5.2 +lua53cpath ?= $(libdir)/lua/5.3 +lua53path ?= $(datadir)/lua/5.3 AR ?= ar RANLIB ?= ranlib @@ -48,6 +50,8 @@ $(d)/config: printf 'lua51path ?= $(value lua51path)'"\n" >> $(@D)/.config printf 'lua52cpath ?= $(value lua52cpath)'"\n" >> $(@D)/.config printf 'lua52path ?= $(value lua52path)'"\n" >> $(@D)/.config + printf 'lua53cpath ?= $(value lua53cpath)'"\n" >> $(@D)/.config + printf 'lua53path ?= $(value lua53path)'"\n" >> $(@D)/.config printf 'CC ?= $(CC)'"\n" >> $(@D)/.config printf 'CPPFLAGS ?= $(value CPPFLAGS)'"\n" >> $(@D)/.config printf 'CFLAGS ?= $(value CFLAGS)'"\n" >> $(@D)/.config |