|
|
@ -46,7 +46,6 @@ ifneq ($(arch), x86_64)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
biscuit:
|
|
|
|
biscuit:
|
|
|
|
ifeq ($(arch), $(filter $(arch), x86_64 aarch64 riscv64 mipsel))
|
|
|
|
|
|
|
|
ifneq ($(shell uname)-$(arch), Darwin-riscv64)
|
|
|
|
ifneq ($(shell uname)-$(arch), Darwin-riscv64)
|
|
|
|
@echo Building biscuit programs
|
|
|
|
@echo Building biscuit programs
|
|
|
|
@mkdir -p biscuit/build
|
|
|
|
@mkdir -p biscuit/build
|
|
|
@ -54,7 +53,6 @@ ifneq ($(shell uname)-$(arch), Darwin-riscv64)
|
|
|
|
@rm -rf $(out_dir)/biscuit && mkdir -p $(out_dir)/biscuit
|
|
|
|
@rm -rf $(out_dir)/biscuit && mkdir -p $(out_dir)/biscuit
|
|
|
|
@cp $(biscuit_bin_path)/* $(out_dir)/biscuit
|
|
|
|
@cp $(biscuit_bin_path)/* $(out_dir)/biscuit
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(busybox):
|
|
|
|
$(busybox):
|
|
|
|
ifeq ($(arch), x86_64)
|
|
|
|
ifeq ($(arch), x86_64)
|
|
|
@ -75,7 +73,6 @@ endif
|
|
|
|
busybox: $(busybox)
|
|
|
|
busybox: $(busybox)
|
|
|
|
|
|
|
|
|
|
|
|
nginx:
|
|
|
|
nginx:
|
|
|
|
ifneq ($(arch), riscv32)
|
|
|
|
|
|
|
|
ifneq ($(shell uname), Darwin)
|
|
|
|
ifneq ($(shell uname), Darwin)
|
|
|
|
@echo Building nginx
|
|
|
|
@echo Building nginx
|
|
|
|
mkdir -p $(out_dir)/usr/local/nginx/conf
|
|
|
|
mkdir -p $(out_dir)/usr/local/nginx/conf
|
|
|
@ -84,7 +81,6 @@ ifneq ($(shell uname), Darwin)
|
|
|
|
@cp nginx/build/$(arch)/nginx $(out_dir)
|
|
|
|
@cp nginx/build/$(arch)/nginx $(out_dir)
|
|
|
|
@cp nginx/nginx.conf $(out_dir)/usr/local/nginx/conf
|
|
|
|
@cp nginx/nginx.conf $(out_dir)/usr/local/nginx/conf
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
redis:
|
|
|
|
redis:
|
|
|
|
ifneq ($(shell uname), Darwin)
|
|
|
|
ifneq ($(shell uname), Darwin)
|
|
|
|