mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
108 lines
2.6 KiB
Makefile
108 lines
2.6 KiB
Makefile
#
|
|
# Copyright (C) 2004 Red Hat, Inc. All rights reserved.
|
|
#
|
|
# This file is part of LVM2.
|
|
#
|
|
# This copyrighted material is made available to anyone wishing to use,
|
|
# modify, copy, or redistribute it subject to the terms and conditions
|
|
# of the GNU General Public License v.2.
|
|
#
|
|
# 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
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = @top_builddir@
|
|
|
|
CMAN_LIBS = @CMAN_LIBS@
|
|
CMAN_CFLAGS = @CMAN_CFLAGS@
|
|
CMAP_LIBS = @CMAP_LIBS@
|
|
CMAP_CFLAGS = @CMAP_CFLAGS@
|
|
CONFDB_LIBS = @CONFDB_LIBS@
|
|
CONFDB_CFLAGS = @CONFDB_CFLAGS@
|
|
CPG_LIBS = @CPG_LIBS@
|
|
CPG_CFLAGS = @CPG_CFLAGS@
|
|
DLM_LIBS = @DLM_LIBS@
|
|
DLM_CFLAGS = @DLM_CFLAGS@
|
|
QUORUM_LIBS = @QUORUM_LIBS@
|
|
QUORUM_CFLAGS = @QUORUM_CFLAGS@
|
|
SALCK_LIBS = @SALCK_LIBS@
|
|
SALCK_CFLAGS = @SALCK_CFLAGS@
|
|
|
|
SOURCES = \
|
|
clvmd-command.c \
|
|
clvmd.c \
|
|
lvm-functions.c \
|
|
refresh_clvmd.c
|
|
|
|
ifeq ("@DEBUG@", "yes")
|
|
DEFS += -DDEBUG
|
|
endif
|
|
|
|
ifneq (,$(findstring cman,, "@CLVMD@,"))
|
|
SOURCES += clvmd-cman.c
|
|
LMLIBS += $(CMAN_LIBS) $(CONFDB_LIBS) $(DLM_LIBS)
|
|
CFLAGS += $(CMAN_CFLAGS) $(CONFDB_CFLAGS) $(DLM_CFLAGS)
|
|
DEFS += -DUSE_CMAN
|
|
endif
|
|
|
|
ifneq (,$(findstring openais,, "@CLVMD@,"))
|
|
SOURCES += clvmd-openais.c
|
|
LMLIBS += $(CONFDB_LIBS) $(CPG_LIBS) $(SALCK_LIBS)
|
|
CFLAGS += $(CONFDB_CFLAGS) $(CPG_CFLAGS) $(SALCK_CFLAGS)
|
|
DEFS += -DUSE_OPENAIS
|
|
endif
|
|
|
|
ifneq (,$(findstring corosync,, "@CLVMD@,"))
|
|
SOURCES += clvmd-corosync.c
|
|
LMLIBS += $(CMAP_LIBS) $(CONFDB_LIBS) $(CPG_LIBS) $(DLM_LIBS) $(QUORUM_LIBS)
|
|
CFLAGS += $(CMAP_CFLAGS) $(CONFDB_CFLAGS) $(CPG_CFLAGS) $(DLM_CFLAGS) $(QUORUM_CFLAGS)
|
|
DEFS += -DUSE_COROSYNC
|
|
endif
|
|
|
|
ifneq (,$(findstring singlenode,, "@CLVMD@,"))
|
|
SOURCES += clvmd-singlenode.c
|
|
DEFS += -DUSE_SINGLENODE
|
|
endif
|
|
|
|
ifeq ($(MAKECMDGOALS),distclean)
|
|
SOURCES += clvmd-cman.c
|
|
SOURCES += clvmd-openais.c
|
|
SOURCES += clvmd-corosync.c
|
|
SOURCES += clvmd-singlenode.c
|
|
endif
|
|
|
|
TARGETS = \
|
|
clvmd
|
|
|
|
LVMLIBS = $(LVMINTERNAL_LIBS)
|
|
|
|
ifeq ("@DMEVENTD@", "yes")
|
|
LVMLIBS += -ldevmapper-event
|
|
endif
|
|
|
|
include $(top_builddir)/make.tmpl
|
|
|
|
LVMLIBS += -ldevmapper
|
|
LIBS += $(PTHREAD_LIBS)
|
|
|
|
DEFS += -D_REENTRANT
|
|
CFLAGS += -fno-strict-aliasing
|
|
|
|
INSTALL_TARGETS = \
|
|
install_clvmd
|
|
|
|
clvmd: $(OBJECTS) $(top_builddir)/lib/liblvm-internal.a
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o clvmd $(OBJECTS) \
|
|
$(LVMLIBS) $(LMLIBS) $(LIBS)
|
|
|
|
.PHONY: install_clvmd
|
|
|
|
install_clvmd: $(TARGETS)
|
|
$(INSTALL_PROGRAM) -D clvmd $(usrsbindir)/clvmd
|
|
|
|
install: $(INSTALL_TARGETS)
|
|
|
|
install_cluster: $(INSTALL_TARGETS)
|