mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
fcae7fb9ca
- started adding ctdb_call() code - added ctdb_call_local() implementation (This used to be ctdb commit 97b1fdf7fa0e230f36add3f1770ecb3a9faee0a1)
67 lines
1.5 KiB
Makefile
67 lines
1.5 KiB
Makefile
#!gmake
|
|
#
|
|
CC = @CC@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
datarootdir = @datarootdir@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
bindir = @bindir@
|
|
VPATH = @srcdir@:@tdbdir@:@tallocdir@:@libreplacedir@
|
|
srcdir = @srcdir@
|
|
builddir = @builddir@
|
|
EXTRA_OBJ=@EXTRA_OBJ@
|
|
|
|
CFLAGS=-g -I$(srcdir)/include -Iinclude -I$(srcdir) \
|
|
-I@tallocdir@ -I@tdbdir@/include -I@libreplacedir@ \
|
|
-DLIBDIR=\"$(libdir)\" -DSHLIBEXT=\"@SHLIBEXT@\" -DUSE_MMAP=1 @CFLAGS@
|
|
|
|
LIB_FLAGS=@LDFLAGS@ -Llib @LIBS@ -lpopt
|
|
|
|
EVENTS_OBJ = lib/events/events.o lib/events/events_standard.o
|
|
|
|
CTDB_COMMON_OBJ = common/ctdb.o common/util.o common/ctdb_util.o \
|
|
common/ctdb_call.o common/ctdb_ltdb.o lib/util/idtree.o
|
|
|
|
CTDB_TCP_OBJ = tcp/tcp_connect.o tcp/tcp_io.o tcp/tcp_init.o
|
|
|
|
CTDB_OBJ = $(CTDB_COMMON_OBJ) $(CTDB_TCP_OBJ)
|
|
|
|
OBJS = @TDBOBJ@ @TALLOCOBJ@ @LIBREPLACEOBJ@ $(EXTRA_OBJ) $(EVENTS_OBJ) $(CTDB_OBJ)
|
|
|
|
BINS = bin/ctdb_test
|
|
|
|
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) ctdb_test.o
|
|
@echo Linking $@
|
|
@$(CC) $(CFLAGS) -o $@ ctdb_test.o $(OBJS) $(LIB_FLAGS)
|
|
|
|
clean:
|
|
rm -f *.o */*.o
|
|
rm -f $(BINS)
|
|
|
|
distclean: clean
|
|
rm -f *~ */*~
|
|
rm -rf bin lib
|
|
rm -f config.log config.status config.cache include/config.h
|
|
rm -f Makefile
|
|
|
|
realdistclean: distclean
|
|
rm -f configure.in include/config.h.in
|