diff --git a/daemons/based/Makefile.am b/daemons/based/Makefile.am index 7ae0eacc0f..c9e0f2f48d 100644 --- a/daemons/based/Makefile.am +++ b/daemons/based/Makefile.am @@ -1,41 +1,46 @@ # # Copyright 2004-2018 Andrew Beekhof # # This source code is licensed under the GNU General Public License version 2 # or later (GPLv2+) WITHOUT ANY WARRANTY. # include $(top_srcdir)/Makefile.common EXTRA_DIST = cib.pam halibdir = $(CRM_DAEMON_DIR) COMMONLIBS = $(top_builddir)/lib/common/libcrmcommon.la \ $(top_builddir)/lib/cib/libcib.la ## binary progs halib_PROGRAMS = pacemaker-based cibmon ## SOURCES noinst_HEADERS = pacemaker-based.h pacemaker_based_CFLAGS = $(CFLAGS_HARDENED_EXE) pacemaker_based_LDFLAGS = $(LDFLAGS_HARDENED_EXE) pacemaker_based_LDADD = $(top_builddir)/lib/cluster/libcrmcluster.la \ $(COMMONLIBS) $(CLUSTERLIBS) -pacemaker_based_SOURCES = io.c messages.c notify.c \ - callbacks.c main.c remote.c common.c +pacemaker_based_SOURCES = pacemaker-based.c \ + based_callbacks.c \ + based_common.c \ + based_io.c \ + based_messages.c \ + based_notify.c \ + based_remote.c cibmon_LDADD = $(COMMONLIBS) cibmon_SOURCES = cibmon.c clean-generic: rm -f *.log *.debug *.xml *~ install-exec-local: # cp -f $(top_srcdir)/crm/cib/cib.pam $(DESTDIR)/etc/pam.d/cib uninstall-local: diff --git a/daemons/based/callbacks.c b/daemons/based/based_callbacks.c similarity index 100% rename from daemons/based/callbacks.c rename to daemons/based/based_callbacks.c diff --git a/daemons/based/common.c b/daemons/based/based_common.c similarity index 100% rename from daemons/based/common.c rename to daemons/based/based_common.c diff --git a/daemons/based/io.c b/daemons/based/based_io.c similarity index 100% rename from daemons/based/io.c rename to daemons/based/based_io.c diff --git a/daemons/based/messages.c b/daemons/based/based_messages.c similarity index 100% rename from daemons/based/messages.c rename to daemons/based/based_messages.c diff --git a/daemons/based/notify.c b/daemons/based/based_notify.c similarity index 100% rename from daemons/based/notify.c rename to daemons/based/based_notify.c diff --git a/daemons/based/remote.c b/daemons/based/based_remote.c similarity index 100% rename from daemons/based/remote.c rename to daemons/based/based_remote.c diff --git a/daemons/based/main.c b/daemons/based/pacemaker-based.c similarity index 100% rename from daemons/based/main.c rename to daemons/based/pacemaker-based.c