Makefile.in
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:2k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. #
  2. # Makefile for installing Squid startup files on systems
  3. # using a SVR4-based startup mechanism/file system layout
  4. #
  5. INSTALL         = @INSTALL@
  6. INSTALL_BIN     = @INSTALL_PROGRAM@
  7. INSTALL_FILE    = @INSTALL_DATA@
  8. LN_S            = @LN_S@
  9. RM = @RM@
  10. SQUID_RC        = squid.rc
  11. SQUID_OPTIONS   = squid.options
  12. all:
  13. install: install-@host_os@
  14. install-hpux10.10 install-hpux10.20:
  15. $(INSTALL_BIN) $(SQUID_RC) /sbin/init.d/squid
  16. $(INSTALL_FILE) $(SQUID_OPTIONS) /etc/rc.config.d/squid
  17. -$(LN_S) ../init.d/squid /sbin/rc2.d/S900squid
  18. -$(LN_S) ../init.d/squid /sbin/rc1.d/K100squid
  19. /usr/sbin/ch_rc -ap SQUID=1
  20. @echo "use 'ch_rc -ap SQUID=0' to disable squid at startup"
  21. @echo "edit /etc/rc.config.d/squid to change options"
  22. install-solaris2.4 install-solaris2.5:
  23. $(INSTALL_BIN) $(SQUID_RC) /etc/init.d/squid
  24. -$(LN_S) ../init.d/squid /etc/rc2.d/S90squid
  25. -$(LN_S) ../init.d/squid /etc/rc1.d/K10squid
  26. -$(LN_S) ../init.d/squid /etc/rc0.d/K10squid
  27. @echo "set SQUID=0 in /etc/init.d/squid to disable squid at startup"
  28. @echo "edit /etc/init.d/squid to change options"
  29. install-irix6.2:
  30. $(INSTALL_BIN) $(SQUID_RC) /etc/init.d/squid
  31. $(INSTALL_FILE) $(SQUID_OPTIONS) /var/config/squid.options
  32. -$(LN_S) ../init.d/squid /etc/rc2.d/S99squid
  33. -$(LN_S) ../init.d/squid /etc/rc0.d/K01squid
  34. /sbin/chkconfig -f squid on
  35. @echo "use 'chkconfig squid off' to disable squid at startup"
  36. @echo "edit /var/config/squid.options to change options"
  37. install-osf3.2:
  38. $(INSTALL_BIN) $(SQUID_RC) /sbin/init.d/squid
  39. -$(LN_S) ../init.d/squid /sbin/rc2.d/S99squid
  40. -$(LN_S) ../init.d/squid /sbin/rc0.d/K01squid
  41. /usr/sbin/rcmgr set SQUID 1
  42. @echo "use 'rcmgr set SQUID 0' to disable squid at startup"
  43. @echo "use 'rcmgr set SQUID_OPTIONS ...' to change options"
  44. @echo "use 'rcmgr set SQUID_RESPAWN 0' to change option"
  45. install-linux:
  46. $(INSTALL_BIN) $(SQUID_RC) /sbin/init.d/squid
  47. -$(LN_S) ../squid /sbin/init.d/rc3.d/S90squid
  48. -$(LN_S) ../squid /sbin/init.d/rc3.d/K10squid
  49. grep '^SQUID=' /etc/rc.config || echo SQUID=1 >>/etc/rc.config
  50. @echo "set SQUID=0 in /etc/rc.config to disable squid at startup"
  51. @echo "edit /sbin/init.d/squid to change options"
  52. clean: 
  53. distclean: clean
  54. $(RM) Makefile