File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / sapi / fpm / Makefile.frag
Revision 1.1.1.3 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Jul 22 01:32:13 2013 UTC (10 years, 11 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_29, v5_4_20p0, v5_4_20, v5_4_17, HEAD
5.4.17

    1: fpm: $(SAPI_FPM_PATH)
    2: 
    3: $(SAPI_FPM_PATH): $(PHP_GLOBAL_OBJS) $(PHP_BINARY_OBJS) $(PHP_FPM_OBJS)
    4: 	$(BUILD_FPM)
    5: 
    6: install-fpm: $(SAPI_FPM_PATH)
    7: 	@echo "Installing PHP FPM binary:        $(INSTALL_ROOT)$(sbindir)/"
    8: 	@$(mkinstalldirs) $(INSTALL_ROOT)$(sbindir)
    9: 	@$(mkinstalldirs) $(INSTALL_ROOT)$(localstatedir)/log
   10: 	@$(mkinstalldirs) $(INSTALL_ROOT)$(localstatedir)/run
   11: 	@$(INSTALL) -m 0755 $(SAPI_FPM_PATH) $(INSTALL_ROOT)$(sbindir)/$(program_prefix)php-fpm$(program_suffix)$(EXEEXT)
   12: 
   13: 	@echo "Installing PHP FPM config:        $(INSTALL_ROOT)$(sysconfdir)/" && \
   14: 	$(mkinstalldirs) $(INSTALL_ROOT)$(sysconfdir) || :
   15: 	@$(INSTALL_DATA) sapi/fpm/php-fpm.conf $(INSTALL_ROOT)$(sysconfdir)/php-fpm.conf.default || :
   16: 
   17: 	@echo "Installing PHP FPM man page:      $(INSTALL_ROOT)$(mandir)/man8/"
   18: 	@$(mkinstalldirs) $(INSTALL_ROOT)$(mandir)/man8
   19: 	@$(INSTALL_DATA) sapi/fpm/php-fpm.8 $(INSTALL_ROOT)$(mandir)/man8/php-fpm$(program_suffix).8
   20: 
   21: 	@echo "Installing PHP FPM status page:      $(INSTALL_ROOT)$(datadir)/fpm/"
   22: 	@$(mkinstalldirs) $(INSTALL_ROOT)$(datadir)/fpm
   23: 	@$(INSTALL_DATA) sapi/fpm/status.html $(INSTALL_ROOT)$(datadir)/fpm/status.html

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>