diff --git a/include/crm/Makefile.am b/include/crm/Makefile.am index 38a6456fc2..0d65a3d7ee 100644 --- a/include/crm/Makefile.am +++ b/include/crm/Makefile.am @@ -1,25 +1,25 @@ # # Copyright (C) 2004 Andrew Beekhof # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # MAINTAINERCLEANFILES = Makefile.in headerdir=$(pkgincludedir)/crm -noinst_HEADERS = stonith-ng-internal.h -header_HEADERS = crm.h cib.h attrd.h msg_xml.h transition.h ais.h cib_util.h cib_ops.h stonith-ng.h cluster.h lrmd.h +noinst_HEADERS = stonith-ng-internal.h services.h +header_HEADERS = crm.h cib.h attrd.h msg_xml.h transition.h ais.h cib_util.h cib_ops.h stonith-ng.h cluster.h lrmd.h SUBDIRS = common pengine diff --git a/lib/services/Makefile.am b/lib/services/Makefile.am index 7c818e980c..3ee334727d 100644 --- a/lib/services/Makefile.am +++ b/lib/services/Makefile.am @@ -1,39 +1,39 @@ # Copyright (c) 2012 David Vossel # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # MAINTAINERCLEANFILES = Makefile.in INCLUDES = -I$(top_builddir)/include lib_LTLIBRARIES = libcrmservice.la -noinst_HEADERS = upstart.h services_private.h +noinst_HEADERS = upstart.h systemd.h services_private.h libcrmservice_la_SOURCES = services.c services_linux.c libcrmservice_la_LDFLAGS = -version-info 1:0:0 libcrmservice_la_CFLAGS = $(GIO_CFLAGS) libcrmservice_la_LIBADD = $(GIO_LIBS) if BUILD_UPSTART libcrmservice_la_SOURCES += upstart.c endif if BUILD_SYSTEMD libcrmservice_la_SOURCES += systemd.c endif AM_CFLAGS = $(INCLUDES)