File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / sapi / fpm / Makefile.frag
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:35 2012 UTC (12 years, 2 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_17p0, HEAD
php 5.4.3+patches

    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)/php/fpm/"
   22: 	@$(mkinstalldirs) $(INSTALL_ROOT)$(datadir)/php/fpm
   23: 	@$(INSTALL_DATA) sapi/fpm/status.html $(INSTALL_ROOT)$(datadir)/php/fpm/status.html

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