mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
841a04924c
(This used to be ctdb commit 9aed7a1d065272c2e5b54872228a73f37664b526)
134 lines
3.2 KiB
Makefile
134 lines
3.2 KiB
Makefile
#!gmake
|
|
#
|
|
# Makefile for tdb directory
|
|
#
|
|
|
|
CC = @CC@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
VPATH = @srcdir@:@libreplacedir@
|
|
srcdir = @srcdir@
|
|
builddir = @builddir@
|
|
CPPFLAGS = @CPPFLAGS@ -I$(srcdir)/include -Iinclude
|
|
CFLAGS = $(CPPFLAGS) @CFLAGS@
|
|
LDFLAGS = @LDFLAGS@
|
|
EXEEXT = @EXEEXT@
|
|
SHLD = @SHLD@
|
|
SHLD_FLAGS = @SHLD_FLAGS@
|
|
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
PICFLAG = @PICFLAG@
|
|
SHLIBEXT = @SHLIBEXT@
|
|
SWIG = swig
|
|
|
|
.PHONY: test
|
|
|
|
PROGS = bin/tdbtool$(EXEEXT) bin/tdbdump$(EXEEXT) bin/tdbbackup$(EXEEXT)
|
|
PROGS_NOINSTALL = bin/tdbtest$(EXEEXT) bin/tdbtorture$(EXEEXT)
|
|
ALL_PROGS = $(PROGS) $(PROGS_NOINSTALL)
|
|
|
|
TDB_OBJ = @TDB_OBJ@ @LIBREPLACEOBJ@
|
|
|
|
DIRS = bin common tools
|
|
|
|
SONAME = libtdb.$(SHLIBEXT).1
|
|
SOLIB = libtdb.$(SHLIBEXT).$(PACKAGE_VERSION)
|
|
|
|
all: showflags dirs $(PROGS) $(SOLIB) libtdb.a
|
|
|
|
showflags:
|
|
@echo 'tdb will be compiled with flags:'
|
|
@echo ' CFLAGS = $(CFLAGS)'
|
|
@echo ' CPPFLAGS = $(CPPFLAGS)'
|
|
@echo ' LDFLAGS = $(LDFLAGS)'
|
|
@echo ' LIBS = $(LIBS)'
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
.c.o:
|
|
@echo Compiling $*.c
|
|
@mkdir -p `dirname $@`
|
|
@$(CC) $(PICFLAG) $(CFLAGS) -c $< -o $@
|
|
|
|
dirs:
|
|
@mkdir -p $(DIRS)
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(bindir)
|
|
mkdir -p $(DESTDIR)$(includedir)
|
|
mkdir -p $(DESTDIR)$(libdir)
|
|
mkdir -p $(DESTDIR)$(libdir)/pkgconfig
|
|
cp $(PROGS) $(DESTDIR)$(bindir)
|
|
cp $(srcdir)/include/tdb.h $(DESTDIR)$(includedir)
|
|
cp tdb.pc $(DESTDIR)$(libdir)/pkgconfig
|
|
cp libtdb.a $(SOLIB) $(DESTDIR)$(libdir)
|
|
|
|
libtdb.a: $(TDB_OBJ)
|
|
ar -rv libtdb.a $(TDB_OBJ)
|
|
|
|
libtdb.$(SHLIBEXT): $(SOLIB)
|
|
ln -fs $< $@
|
|
|
|
$(SONAME): $(SOLIB)
|
|
ln -fs $< $@
|
|
|
|
$(SOLIB): $(TDB_OBJ)
|
|
$(SHLD) $(SHLD_FLAGS) -o $@ $(TDB_OBJ) @SONAMEFLAG@$(SONAME)
|
|
|
|
TDB_LIB = libtdb.a
|
|
|
|
bin/tdbtest$(EXEEXT): tools/tdbtest.o $(TDB_LIB)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbtest tools/tdbtest.o -L. -ltdb -lgdbm
|
|
|
|
bin/tdbtool$(EXEEXT): tools/tdbtool.o $(TDB_LIB)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbtool tools/tdbtool.o -L. -ltdb
|
|
|
|
bin/tdbtorture$(EXEEXT): tools/tdbtorture.o $(TDB_LIB)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbtorture tools/tdbtorture.o -L. -ltdb
|
|
|
|
bin/tdbdump$(EXEEXT): tools/tdbdump.o $(TDB_LIB)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbdump tools/tdbdump.o -L. -ltdb
|
|
|
|
bin/tdbbackup$(EXEEXT): tools/tdbbackup.o $(TDB_LIB)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbbackup tools/tdbbackup.o -L. -ltdb
|
|
|
|
test: bin/tdbtorture$(EXEEXT)
|
|
bin/tdbtorture$(EXEEXT)
|
|
|
|
installcheck: test install
|
|
|
|
clean:
|
|
rm -f $(ALL_PROGS) *.o *.a common/*.o tools/*.o tdb.pc
|
|
rm -f test.db test.tdb torture.tdb test.gdbm
|
|
rm -f $(SONAME) $(SOLIB) libtdb.a libtdb.$(SHLIBEXT)
|
|
|
|
distclean: clean
|
|
rm -f *~ */*~
|
|
rm -f config.log config.status include/config.h config.cache
|
|
rm -f Makefile
|
|
|
|
realdistclean: distclean
|
|
rm -f configure include/config.h.in
|
|
|
|
tdb_wrap.c tdb.py: tdb.i
|
|
$(SWIG) -O -Wall -python -keyword tdb.i
|
|
|
|
build-python: libtdb.$(SHLIBEXT) tdb_wrap.c tdb.py
|
|
./setup.py build
|
|
|
|
install-python:
|
|
./setup.py install --prefix=$(prefix)
|
|
|
|
check-python: build-python
|
|
# FIXME: Should be more portable:
|
|
LD_LIBRARY_PATH=. PYTHONPATH=.:build/lib.linux-i686-2.4 trial python/tests/simple.py
|
|
|
|
install-swig:
|
|
mkdir -p $(DESTDIR)`$(SWIG) -swiglib`
|
|
cp tdb.i $(DESTDIR)`$(SWIG) -swiglib`
|
|
|
|
clean-python:
|
|
./setup.py clean
|