diff options
author | Rogério Carvalho Schneider <stockrt@gmail.com> | 2015-07-15 23:11:53 -0300 |
---|---|---|
committer | Rogério Carvalho Schneider <stockrt@gmail.com> | 2015-07-15 23:12:01 -0300 |
commit | bb0b28cbdf41881b2b1afeadf2038d036485427b (patch) | |
tree | 95d0fa3d3586dfa27c5f25016749ea179211a02b /Makefile | |
parent | bfadf076d1231796d9e694f13d7a90f86038b89d (diff) | |
download | lua-resty-cookie-bb0b28cbdf41881b2b1afeadf2038d036485427b.tar.gz lua-resty-cookie-bb0b28cbdf41881b2b1afeadf2038d036485427b.tar.bz2 lua-resty-cookie-bb0b28cbdf41881b2b1afeadf2038d036485427b.zip |
Add Makefile
Features make install
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1b7e6b5 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +OPENRESTY_PREFIX=/usr/local/openresty + +PREFIX ?= /usr/local +LUA_INCLUDE_DIR ?= $(PREFIX)/include +LUA_LIB_DIR ?= $(PREFIX)/lib/lua/$(LUA_VERSION) +INSTALL ?= install + +.PHONY: all test install + +all: ; + +install: all + $(INSTALL) -d $(DESTDIR)/$(LUA_LIB_DIR)/resty/ + $(INSTALL) lib/resty/*.lua $(DESTDIR)/$(LUA_LIB_DIR)/resty/ + +test: all + PATH=$(OPENRESTY_PREFIX)/nginx/sbin:$$PATH prove -I../test-nginx/lib -r t + |