diff options
author | Asbjørn Sloth Tønnesen <ast@fiberby.net> | 2017-02-13 16:04:41 +0000 |
---|---|---|
committer | Asbjørn Sloth Tønnesen <ast@2e8.dk> | 2017-02-13 16:04:41 +0000 |
commit | 907f610040e3dfb54a83155c36527a65b7f08e78 (patch) | |
tree | fa85c2deeef755ffd4d8c123f9cb68bd5ab337e2 /Makefile | |
parent | 1e3d5d977d2d647453c3d0b4e01cf6f375422d9c (diff) | |
download | lua-inet-907f610040e3dfb54a83155c36527a65b7f08e78.tar.gz lua-inet-907f610040e3dfb54a83155c36527a65b7f08e78.tar.xz lua-inet-907f610040e3dfb54a83155c36527a65b7f08e78.zip |
initial commit
Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6efd638 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +DEST_LUA = $(DESTDIR)/usr/share/lua/5.3/inet + +.PHONY: install build test +build: +install: + install -d $(DEST_LUA) + install -m644 lua/inet/*.lua $(DEST_LUA) +test: + ./test.lua |