diff options
author | Benoit Germain <bnt.germain@gmail.com> | 2012-08-22 21:36:37 +0200 |
---|---|---|
committer | Benoit Germain <bnt.germain@gmail.com> | 2012-08-22 21:36:37 +0200 |
commit | f0b1c6d629464c0a59ac78382d86f434e74c2162 (patch) | |
tree | e6788f8e7c0e859cd5f8d9254a922e187d9e7938 /Makefile | |
parent | a9075ff6cf43e99cee994f5e77d0e1e54cb8dbac (diff) | |
download | lanes-f0b1c6d629464c0a59ac78382d86f434e74c2162.tar.gz lanes-f0b1c6d629464c0a59ac78382d86f434e74c2162.tar.bz2 lanes-f0b1c6d629464c0a59ac78382d86f434e74c2162.zip |
lanes version 3.2.0v3.2.0
* keeper internals implemented in C instead of Lua for better performances
* fixed arguments checks in linda:limit() and linda:set()
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -197,11 +197,10 @@ LUA_SHAREDIR=$(DESTDIR)/share/lua/5.1 | |||
197 | # | 197 | # |
198 | # AKa 17-Oct: changed to use 'install -m 644' and 'cp -p' | 198 | # AKa 17-Oct: changed to use 'install -m 644' and 'cp -p' |
199 | # | 199 | # |
200 | install: $(_TARGET_SO) src/lanes.lua src/lanes-keeper.lua | 200 | install: $(_TARGET_SO) src/lanes.lua |
201 | mkdir -p $(LUA_LIBDIR) $(LUA_LIBDIR)/lanes $(LUA_SHAREDIR) | 201 | mkdir -p $(LUA_LIBDIR) $(LUA_LIBDIR)/lanes $(LUA_SHAREDIR) |
202 | install -m 644 $(_TARGET_SO) $(LUA_LIBDIR)/lanes | 202 | install -m 644 $(_TARGET_SO) $(LUA_LIBDIR)/lanes |
203 | cp -p src/lanes.lua $(LUA_SHAREDIR) | 203 | cp -p src/lanes.lua $(LUA_SHAREDIR) |
204 | cp -p src/lanes-keeper.lua $(LUA_SHAREDIR) | ||
205 | 204 | ||
206 | 205 | ||
207 | #--- Packaging --- | 206 | #--- Packaging --- |