mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-04 21:17:36 +08:00
79 lines
3.4 KiB
Makefile
79 lines
3.4 KiB
Makefile
INST_PREFIX ?= /usr
|
|
INST_LIBDIR ?= $(INST_PREFIX)/lib64/lua/5.1
|
|
INST_LUADIR ?= $(INST_PREFIX)/share/lua/5.1
|
|
INST_BINDIR ?= /usr/bin
|
|
INSTALL ?= install
|
|
|
|
### help: Show Makefile rules.
|
|
.PHONY: help
|
|
help:
|
|
@echo Makefile rules:
|
|
@echo
|
|
@grep -E '^### [-A-Za-z0-9_]+:' Makefile | sed 's/###/ /'
|
|
|
|
|
|
### run: Start the apisix server
|
|
.PHONY: run
|
|
run:
|
|
mkdir -p logs
|
|
sudo $$(which openresty) -p $$PWD/
|
|
|
|
|
|
### stop: Stop the apisix server
|
|
.PHONY: stop
|
|
stop:
|
|
sudo $$(which openresty) -p $$PWD/ -s stop
|
|
|
|
|
|
### clean: Remove generated files
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf logs/
|
|
|
|
|
|
### reload: Reload the apisix server
|
|
.PHONY: reload
|
|
reload:
|
|
sudo $$(which openresty) -p $$PWD/ -s reload
|
|
|
|
|
|
### install: Install the apisix
|
|
.PHONY: install
|
|
install:
|
|
$(INSTALL) -D logs/placehold.txt $(INST_LUADIR)/apisix/logs/placehold.txt
|
|
$(INSTALL) -D conf/mime.types $(INST_LUADIR)/apisix/conf/mime.types
|
|
$(INSTALL) -D conf/nginx.conf $(INST_LUADIR)/apisix/conf/nginx.conf
|
|
|
|
$(INSTALL) -D lua/apisix.lua $(INST_LUADIR)/apisix/lua/apisix.lua
|
|
$(INSTALL) -D lua/apisix/core/response.lua $(INST_LUADIR)/apisix/lua/apisix/core/response.lua
|
|
$(INSTALL) -D lua/apisix/core/config_etcd.lua $(INST_LUADIR)/apisix/lua/apisix/core/config_etcd.lua
|
|
$(INSTALL) -D lua/apisix/core/table.lua $(INST_LUADIR)/apisix/lua/apisix/core/table.lua
|
|
$(INSTALL) -D lua/apisix/core/request.lua $(INST_LUADIR)/apisix/lua/apisix/core/request.lua
|
|
$(INSTALL) -D lua/apisix/core/config_local.lua $(INST_LUADIR)/apisix/lua/apisix/core/config_local.lua
|
|
$(INSTALL) -D lua/apisix/core/schema.lua $(INST_LUADIR)/apisix/lua/apisix/core/schema.lua
|
|
$(INSTALL) -D lua/apisix/core/yaml.lua $(INST_LUADIR)/apisix/lua/apisix/core/yaml.lua
|
|
$(INSTALL) -D lua/apisix/core/lrucache.lua $(INST_LUADIR)/apisix/lua/apisix/core/lrucache.lua
|
|
$(INSTALL) -D lua/apisix/core/ctx.lua $(INST_LUADIR)/apisix/lua/apisix/core/ctx.lua
|
|
$(INSTALL) -D lua/apisix/core/typeof.lua $(INST_LUADIR)/apisix/lua/apisix/core/typeof.lua
|
|
$(INSTALL) -D lua/apisix/core/log.lua $(INST_LUADIR)/apisix/lua/apisix/core/log.lua
|
|
$(INSTALL) -D lua/apisix/route.lua $(INST_LUADIR)/apisix/lua/apisix/route.lua
|
|
$(INSTALL) -D lua/apisix/balancer.lua $(INST_LUADIR)/apisix/lua/apisix/balancer.lua
|
|
$(INSTALL) -D lua/apisix/plugin.lua $(INST_LUADIR)/apisix/lua/apisix/plugin.lua
|
|
$(INSTALL) -D lua/apisix/core.lua $(INST_LUADIR)/apisix/lua/apisix/core.lua
|
|
$(INSTALL) -D lua/apisix/service.lua $(INST_LUADIR)/apisix/lua/apisix/service.lua
|
|
|
|
$(INSTALL) -D lua/apisix/plugins/prometheus/base_prometheus.lua $(INST_LUADIR)/apisix/lua/apisix/plugins/prometheus/base_prometheus.lua
|
|
$(INSTALL) -D lua/apisix/plugins/prometheus/exporter.lua $(INST_LUADIR)/apisix/lua/apisix/plugins/prometheus/exporter.lua
|
|
$(INSTALL) -D lua/apisix/plugins/example-plugin.lua $(INST_LUADIR)/apisix/lua/apisix/plugins/example-plugin.lua
|
|
$(INSTALL) -D lua/apisix/plugins/prometheus.lua $(INST_LUADIR)/apisix/lua/apisix/plugins/prometheus.lua
|
|
$(INSTALL) -D lua/apisix/plugins/limit-count.lua $(INST_LUADIR)/apisix/lua/apisix/plugins/limit-count.lua
|
|
$(INSTALL) -D lua/apisix/plugins/limit-req.lua $(INST_LUADIR)/apisix/lua/apisix/plugins/limit-req.lua
|
|
$(INSTALL) -D lua/apisix/plugins/key-auth.lua $(INST_LUADIR)/apisix/lua/apisix/plugins/key-auth.lua
|
|
|
|
$(INSTALL) COPYRIGHT $(INST_CONFDIR)/COPYRIGHT
|
|
$(INSTALL) README.md $(INST_CONFDIR)/README.md
|
|
$(INSTALL) bin/apisix $(INST_BINDIR)/apisix
|
|
|
|
test:
|
|
prove -I../test-nginx/lib -r -s t/
|