mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-04 21:17:36 +08:00
55 lines
1.3 KiB
Makefile
55 lines
1.3 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 $(INST_LUADIR)/apisix/logs/
|
|
$(INSTALL) logs/placehold.txt $(INST_LUADIR)/apisix/logs/
|
|
cp -r lua $(INST_LUADIR)/apisix/
|
|
cp -r conf $(INST_LUADIR)/apisix/
|
|
cp -r lua $(INST_LUADIR)/apisix/
|
|
cp -r doc $(INST_LUADIR)/apisix/
|
|
cp -r cli $(INST_LUADIR)/apisix/cli
|
|
chmod 644 $(INST_LUADIR)/apisix/conf/config.yaml
|
|
$(INSTALL) COPYRIGHT $(INST_LUADIR)/apisix/
|
|
$(INSTALL) README.md $(INST_LUADIR)/apisix/
|
|
$(INSTALL) README_CN.md $(INST_LUADIR)/apisix/
|
|
$(INSTALL) cli/apisix.lua $(INST_BINDIR)/apisix
|