mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
23b059e7b7
Patch is inspired by Debian's extra patch. - removes OWNER & GROUP make vars they are parts of INSTALL command. - adds INSTALL_PROGRAM for executable, uses $(INSTALL) - adds INSTALL_DATA for non-executable data, uses ($INSTALL) - adds INSTALL_WDATA for writable non-executable data, uses ($INSTALL) - adds configure option --enable-write_install - to support installatin of writable files used by distribution - replaces usage of ifeq @LIB_SUFFIX@ with $(LIB_SUFFIX) - installs .a files from static builds without executable flag - installs .a files to $(usrlibdir) instead of $(libdir) - installs all static binaries to $(staticdir) - create .so links for devel package in $(usrlibdir) instead of $(libdir) - makes .so and .so.LIB_VERSION files within builddir - removes VERSIONED_SHLIB and created versioned LIB_SHARED automagicaly - install LIB_SHARED via install_lib_shared target - install plugins via install_lib_shared_plugin target - prints whole 'install' command during installation instead of less informative "Installing $(something) $(somewhere)" - install multiple man pages with one INSTALL command - use DISTCLEAN_TARGETS instead of creating multiple distclean targets
118 lines
2.8 KiB
Makefile
118 lines
2.8 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@
|
|
|
|
CCS_LIBS = @CCS_LIBS@
|
|
CCS_CFLAGS = @CCS_CFLAGS@
|
|
CMAN_LIBS = @CMAN_LIBS@
|
|
CMAN_CFLAGS = @CMAN_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@
|
|
GULM_LIBS = @GULM_LIBS@
|
|
GULM_CFLAGS = @GULM_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 gulm,, "@CLVMD@,"))
|
|
SOURCES += clvmd-gulm.c tcp-comms.c
|
|
LMLIBS += $(CCS_LIBS) $(GULM_LIBS)
|
|
CFLAGS += $(CCS_CFLAGS) $(GULM_CFLAGS)
|
|
DEFS += -DUSE_GULM
|
|
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 += $(CONFDB_LIBS) $(CPG_LIBS) $(DLM_LIBS) $(QUORUM_LIBS)
|
|
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-gulm.c tcp-comms.c
|
|
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)
|