diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-08-31 11:42:13 -0700 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-08-31 11:42:13 -0700 |
commit | ac7218e335f0393330cf3d1c791ccdfa5a04c423 (patch) | |
tree | 1e864fe75f90fbb2a3d5796deabfe056f6e0537d /auto/modules/php | |
parent | 6eb4a41364bedc461a58ebe486067ae3abc9aaa1 (diff) | |
download | unit-ac7218e335f0393330cf3d1c791ccdfa5a04c423.tar.gz unit-ac7218e335f0393330cf3d1c791ccdfa5a04c423.tar.bz2 |
Introducing install & uninstall Makefile targets.
Diffstat (limited to 'auto/modules/php')
-rw-r--r-- | auto/modules/php | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/auto/modules/php b/auto/modules/php index c8da3fe9..00a1015e 100644 --- a/auto/modules/php +++ b/auto/modules/php @@ -148,7 +148,9 @@ done cat << END >> $NXT_MAKEFILE -.PHONY: ${NXT_PHP_MODULE} +.PHONY: ${NXT_PHP_MODULE} +.PHONY: ${NXT_PHP_MODULE}-install +.PHONY: ${NXT_PHP_MODULE}-uninstall all: ${NXT_PHP_MODULE} @@ -158,4 +160,19 @@ $NXT_BUILD_DIR/${NXT_PHP_MODULE}.unit.so: $nxt_objs $NXT_MODULE_LINK -o $NXT_BUILD_DIR/${NXT_PHP_MODULE}.unit.so \\ $nxt_objs ${NXT_PHP_LIB} ${NXT_PHP_LDFLAGS} + +install: ${NXT_PHP_MODULE}-install + +${NXT_PHP_MODULE}-install: ${NXT_PHP_MODULE} + install -d \$(DESTDIR)$NXT_MODULES + install -p $NXT_BUILD_DIR/${NXT_PHP_MODULE}.unit.so \\ + \$(DESTDIR)$NXT_MODULES/ + + +uninstall: ${NXT_PHP_MODULE}-uninstall + +${NXT_PHP_MODULE}-uninstall: + rm -f \$(DESTDIR)$NXT_MODULES/${NXT_PHP_MODULE}.unit.so + @rmdir -p \$(DESTDIR)$NXT_MODULES 2>/dev/null || true + END |