mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
ccf4d78e04
- use -n to specify node number in ctdb utility - change 'ctdb status' to 'ctdb statistics' - added 'ctdb status' which shows status - added netmask to public IPs, so you don't try a takeover on a foreign network - cleaned up tools/ctdb_control.c a lot - generate usage message at runtime (This used to be ctdb commit 28de71c03ace7d32a9fd9882fabbd5d668b97656)
128 lines
3.6 KiB
Makefile
128 lines
3.6 KiB
Makefile
#!gmake
|
|
#
|
|
CC = @CC@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
datarootdir = @datarootdir@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
bindir = @bindir@
|
|
localstatedir = @localstatedir@
|
|
VPATH = @srcdir@:@tdbdir@:@tallocdir@:@libreplacedir@:@poptdir@
|
|
srcdir = @srcdir@
|
|
builddir = @builddir@
|
|
DESTDIR = /
|
|
EXTRA_OBJ=@EXTRA_OBJ@
|
|
|
|
POPT_LIBS = @POPT_LIBS@
|
|
POPT_CFLAGS = @POPT_CFLAGS@
|
|
POPT_OBJ = @POPT_OBJ@
|
|
|
|
CFLAGS=-g -I$(srcdir)/include -Iinclude -Ilib -Ilib/util -I$(srcdir) \
|
|
-I@tallocdir@ -I@tdbdir@/include -I@libreplacedir@ \
|
|
-DVARDIR=\"$(localstatedir)\" -DUSE_MMAP=1 @CFLAGS@ $(POPT_CFLAGS)
|
|
|
|
LIB_FLAGS=@LDFLAGS@ -Llib @LIBS@ $(POPT_LIBS) @INFINIBAND_LIBS@
|
|
|
|
UTIL_OBJ = lib/util/idtree.o lib/util/db_wrap.o lib/util/strlist.o lib/util/util.o
|
|
|
|
CTDB_COMMON_OBJ = common/ctdb.o common/ctdb_daemon.o common/ctdb_client.o \
|
|
common/ctdb_io.o common/util.o common/ctdb_util.o \
|
|
common/ctdb_call.o common/ctdb_ltdb.o common/ctdb_lockwait.o \
|
|
common/ctdb_message.o common/cmdline.o common/ctdb_control.o \
|
|
lib/util/debug.o common/ctdb_recover.o common/ctdb_recoverd.o \
|
|
common/ctdb_freeze.o common/ctdb_traverse.o common/ctdb_monitor.o
|
|
|
|
CTDB_TAKEOVER_OBJ = takeover/system.o takeover/ctdb_takeover.o
|
|
|
|
CTDB_TCP_OBJ = tcp/tcp_connect.o tcp/tcp_io.o tcp/tcp_init.o
|
|
|
|
CTDB_OBJ = $(CTDB_COMMON_OBJ) $(CTDB_TAKEOVER_OBJ) $(CTDB_TCP_OBJ) $(POPT_OBJ)
|
|
|
|
OBJS = @TDB_OBJ@ @TALLOC_OBJ@ @LIBREPLACEOBJ@ @INFINIBAND_WRAPPER_OBJ@ $(EXTRA_OBJ) @EVENTS_OBJ@ $(CTDB_OBJ) $(UTIL_OBJ)
|
|
|
|
BINS = bin/ctdbd bin/ctdbd_test bin/ctdb_test bin/ctdb_bench bin/ctdb_messaging bin/ctdb_fetch bin/ctdb_fetch1 bin/lockwait bin/ctdb @INFINIBAND_BINS@
|
|
|
|
DIRS = lib bin
|
|
|
|
all: showflags dirs $(OBJS) $(BINS)
|
|
|
|
showflags:
|
|
@echo 'ctdb will be compiled with flags:'
|
|
@echo ' CFLAGS = $(CFLAGS)'
|
|
@echo ' LIBS = $(LIBS)'
|
|
|
|
.c.o:
|
|
@echo Compiling $*.c
|
|
@mkdir -p `dirname $@`
|
|
@$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
dirs:
|
|
@mkdir -p $(DIRS)
|
|
|
|
bin/ctdb_test: $(OBJS) tests/ctdb_test.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ tests/ctdb_test.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
bin/ctdbd: $(OBJS) direct/ctdbd.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ direct/ctdbd.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
bin/ctdb: $(OBJS) tools/ctdb_control.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ tools/ctdb_control.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
bin/ctdbd_test: $(OBJS) direct/ctdbd_test.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ direct/ctdbd_test.o
|
|
|
|
bin/ctdb_bench: $(OBJS) tests/ctdb_bench.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ tests/ctdb_bench.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
bin/ctdb_fetch: $(OBJS) tests/ctdb_fetch.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ tests/ctdb_fetch.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
bin/ctdb_fetch1: $(OBJS) tests/ctdb_fetch1.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ tests/ctdb_fetch1.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
bin/ctdb_messaging: $(OBJS) tests/ctdb_messaging.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ tests/ctdb_messaging.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
bin/ibwrapper_test: $(OBJS) ib/ibwrapper_test.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ ib/ibwrapper_test.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
bin/lockwait: $(OBJS) tests/lockwait.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ tests/lockwait.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
clean:
|
|
rm -f *.o */*.o */*/*.o
|
|
rm -f $(BINS)
|
|
|
|
distclean: clean
|
|
rm -f *~ */*~
|
|
rm -rf bin
|
|
rm -f config.log config.status config.cache config.h
|
|
rm -f Makefile
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(bindir)
|
|
mkdir -p $(DESTDIR)$(includedir)
|
|
rsync $(BINS) $(DESTDIR)$(bindir)
|
|
rsync $(srcdir)/include/ctdb.h $(DESTDIR)$(includedir)
|
|
|
|
test: all
|
|
tests/run_tests.sh
|
|
|
|
valgrindtest: all
|
|
VALGRIND="valgrind -q --trace-children=yes" tests/run_tests.sh
|
|
|
|
|
|
realdistclean: distclean
|
|
rm -f configure config.h.in
|