diff options
author | Asbjørn Sloth Tønnesen <ast@fiberby.net> | 2017-03-06 10:25:03 +0000 |
---|---|---|
committer | Asbjørn Sloth Tønnesen <ast@2e8.dk> | 2017-03-06 10:25:03 +0000 |
commit | 6799183a66dd850f53ef66af123c82f86abd7602 (patch) | |
tree | 37ff57bec22b4bd8548b3ef8abe2ae9b63738484 /Makefile | |
parent | 380f291a8a30666cd57d80cf4467982e2510e42d (diff) | |
download | lua-inet-6799183a66dd850f53ef66af123c82f86abd7602.tar.gz lua-inet-6799183a66dd850f53ef66af123c82f86abd7602.tar.xz lua-inet-6799183a66dd850f53ef66af123c82f86abd7602.zip |
Cleanup Makefile
Only keeping the test target, as the rest is unmaintained, since it's
not used when installing through the Debian packaging.
Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -1,9 +1,5 @@ -DEST_LUA = $(DESTDIR)/usr/share/lua/5.3/inet - -.PHONY: install build test +.PHONY: build test build: -install: - install -d $(DEST_LUA) - install -m644 lua/inet/*.lua $(DEST_LUA) test: - ./test.lua + lua5.2 ./test.lua + lua5.3 ./test.lua |