Add interface for Nginx build system.

This commit is contained in:
Pavel Pautov 2023-03-23 00:37:31 -07:00 committed by dplotnikov-f5
parent a7fbfc0573
commit 38e48ff778
2 changed files with 20 additions and 0 deletions

10
config.make Normal file
View file

@ -0,0 +1,10 @@
cat << END >> $NGX_MAKEFILE
modules: ngx_otel_module
ngx_otel_module:
make -C $NGX_OBJS/otel
.PHONY: ngx_otel_module
END