Makefile.am 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Copyright (c) 2004 MontaVista Software, Inc.
  2. # Copyright (c) 2009 Red Hat, Inc.
  3. #
  4. # Authors: Steven Dake (sdake@redhat.com)
  5. # Fabio M. Di Nitto (fdinitto@redhat.com)
  6. #
  7. # All rights reserved.
  8. #
  9. # This software licensed under BSD license, the text of which follows:
  10. #
  11. # Redistribution and use in source and binary forms, with or without
  12. # modification, are permitted provided that the following conditions are met:
  13. #
  14. # - Redistributions of source code must retain the above copyright notice,
  15. # this list of conditions and the following disclaimer.
  16. # - Redistributions in binary form must reproduce the above copyright notice,
  17. # this list of conditions and the following disclaimer in the documentation
  18. # and/or other materials provided with the distribution.
  19. # - Neither the name of the MontaVista Software, Inc. nor the names of its
  20. # contributors may be used to endorse or promote products derived from this
  21. # software without specific prior written permission.
  22. #
  23. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  24. # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  27. # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  28. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  29. # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30. # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  31. # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  33. # THE POSSIBILITY OF SUCH DAMAGE.
  34. MAINTAINERCLEANFILES = Makefile.in
  35. EXTRA_DIST = other/corosync.in other/corosync-notifyd.in \
  36. systemd/corosync.service.in \
  37. systemd/corosync-notifyd.service.in \
  38. openrc/corosync.in openrc/corosync-notifyd.in \
  39. corosync.sysconfig.example
  40. if INSTALL_SYSTEMD
  41. systemdconfdir = $(SYSTEMDDIR)
  42. scriptdirpath = systemd
  43. systemdconf_DATA = systemd/corosync.service systemd/corosync-notifyd.service
  44. else
  45. initscriptdir = $(INITDDIR)
  46. if INSTALL_OPENRC
  47. scriptdirpath = openrc
  48. initscript_SCRIPTS = openrc/corosync openrc/corosync-notifyd
  49. else
  50. scriptdirpath = other
  51. initscript_SCRIPTS = other/corosync other/corosync-notifyd
  52. endif
  53. endif
  54. %: %.in Makefile
  55. rm -f $@-t $@
  56. $(MKDIR_P) $(scriptdirpath)
  57. cat $< | $(SED) \
  58. -e 's#@''SBINDIR@#$(sbindir)#g' \
  59. -e 's#@''BINDIR@#$(bindir)#g' \
  60. -e 's#@''SYSCONFDIR@#$(sysconfdir)#g' \
  61. -e 's#@''INITCONFIGDIR@#$(INITCONFIGDIR)#g' \
  62. -e 's#@''INITDDIR@#$(INITDDIR)#g' \
  63. -e 's#@''LOCALSTATEDIR@#$(localstatedir)#g' \
  64. -e 's#@''BASHPATH@#${BASHPATH}#g' \
  65. > $@-t
  66. mv $@-t $@
  67. all-local: $(initscript_SCRIPTS) $(systemdconf_DATA)
  68. clean-local:
  69. rm -rf $(initscript_SCRIPTS) $(systemdconf_DATA)