| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| EXTRA_DIST = CONTRIBUTING.md \ |
| GNUmakefile \ |
| INSTALL.md \ |
| README.markdown \ |
| autogen.sh \ |
| m4/glibtests.m4 \ |
| m4/gnulib-cache.m4 \ |
| m4/gnulib-tool.m4 \ |
| rpm/rpmlintrc \ |
| rpm/pacemaker.spec.in |
| |
| DISTCLEANFILES = config.status |
| |
| MAINTAINERCLEANFILES = Makefile.in \ |
| aclocal.m4 \ |
| config.guess \ |
| config.sub \ |
| configure \ |
| depcomp \ |
| install-sh \ |
| ltmain.sh \ |
| missing \ |
| py-compile \ |
| test-driver |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| AM_DISTCHECK_CONFIGURE_FLAGS = --with-brand="" \ |
| --prefix="$$dc_install_base/usr" \ |
| --sysconfdir="$$dc_install_base/etc" \ |
| --with-initdir="$$dc_install_base/etc/init.d" \ |
| --with-ocfdir="$$dc_install_base/usr/lib/ocf" \ |
| --with-systemdsystemunitdir="$$dc_install_base$(systemdsystemunitdir)" |
| |
| |
| CORE_INSTALL = replace include lib daemons tools xml |
| |
| |
| CORE = $(CORE_INSTALL) cts |
| |
| SUBDIRS = $(CORE) devel doc extra maint tests |
| |
| AM_CPPFLAGS = -I$(top_srcdir)/include |
| |
| doc_DATA = README.markdown COPYING |
| |
| licensedir = $(docdir)/licenses/ |
| dist_license_DATA = $(wildcard licenses/*) |
| |
| |
| EXTRA_PROGRAMS = scratch |
| nodist_scratch_SOURCES = scratch.c |
| scratch_LDADD = $(top_builddir)/lib/common/libcrmcommon.la |
| |
| core: |
| @echo "Building only core components and tests: $(CORE)" |
| @for subdir in $(CORE); do \ |
| echo "Building $$subdir"; \ |
| $(MAKE) $(AM_MAKEFLAGS) -C $$subdir all || exit 1; \ |
| done |
| |
| core-install: |
| @echo "Installing only core components: $(CORE_INSTALL)" |
| @for subdir in $(CORE_INSTALL); do \ |
| echo "Installing $$subdir"; \ |
| $(MAKE) $(AM_MAKEFLAGS) -C $$subdir install || exit 1; \ |
| done |
| |
| core-clean: |
| @echo "Cleaning only core components and tests: $(CORE)" |
| @for subdir in $(CORE); do \ |
| echo "Cleaning $$subdir"; \ |
| $(MAKE) $(AM_MAKEFLAGS) -C $$subdir clean || exit 1; \ |
| done |
| |
| install-exec-local: |
| $(INSTALL) -d -m 750 $(DESTDIR)/$(PACEMAKER_CONFIG_DIR) |
| $(INSTALL) -d -m 750 $(DESTDIR)/$(CRM_CONFIG_DIR) |
| $(INSTALL) -d -m 750 $(DESTDIR)/$(CRM_CORE_DIR) |
| $(INSTALL) -d -m 750 $(DESTDIR)/$(CRM_BLACKBOX_DIR) |
| $(INSTALL) -d -m 770 $(DESTDIR)/$(CRM_LOG_DIR) |
| $(INSTALL) -d -m 770 $(DESTDIR)/$(CRM_BUNDLE_DIR) |
| -chgrp $(CRM_DAEMON_GROUP) $(DESTDIR)/$(PACEMAKER_CONFIG_DIR) |
| -chown $(CRM_DAEMON_USER):$(CRM_DAEMON_GROUP) $(DESTDIR)/$(CRM_CONFIG_DIR) |
| -chown $(CRM_DAEMON_USER):$(CRM_DAEMON_GROUP) $(DESTDIR)/$(CRM_CORE_DIR) |
| -chown $(CRM_DAEMON_USER):$(CRM_DAEMON_GROUP) $(DESTDIR)/$(CRM_BLACKBOX_DIR) |
| -chown $(CRM_DAEMON_USER):$(CRM_DAEMON_GROUP) $(DESTDIR)/$(CRM_LOG_DIR) |
| -chown $(CRM_DAEMON_USER):$(CRM_DAEMON_GROUP) $(DESTDIR)/$(CRM_BUNDLE_DIR) |
| |
| |
| clean-generic: |
| -rm -f *.tar.bz2 *.sed |
| |
| PACKAGE ?= pacemaker |
| |
| |
| |
| |
| |
| |
| |
| clean-local: $(EXTRA_CLEAN_TARGETS) |
| -rm -f scratch $(builddir)/$(PACKAGE)-*.tar.gz |
| |
| distclean-local: |
| -rm -rf libltdl autom4te.cache |