mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
4eb9dda8a7
separately specifying CPPFLAGS and LDFLAGS.
(This used to be commit 8c36f1a745
)
90 lines
2.1 KiB
Makefile
90 lines
2.1 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 -I../include -I@libreplacedir@
|
|
CFLAGS = $(CPPFLAGS) @CFLAGS@
|
|
LDFLAGS = @LDFLAGS@
|
|
EXEEXT = @EXEEXT@
|
|
|
|
.PHONY: test
|
|
|
|
PROGS = bin/tdbtool$(EXEEXT) bin/tdbtorture$(EXEEXT)
|
|
PROGS_NOINSTALL = bin/tdbtest$(EXEEXT) bin/tdbdump$(EXEEXT) bin/tdbbackup$(EXEEXT)
|
|
ALL_PROGS = $(PROGS) $(PROGS_NOINSTALL)
|
|
|
|
TDB_OBJ = @TDBOBJ@
|
|
|
|
DIRS = bin common tools
|
|
|
|
all: showflags dirs $(PROGS)
|
|
|
|
showflags:
|
|
@echo 'tdb will be compiled with flags:'
|
|
@echo ' CFLAGS = $(CFLAGS)'
|
|
@echo ' CPPFLAGS = $(CPPFLAGS)'
|
|
@echo ' LDFLAGS = $(LDFLAGS)'
|
|
@echo ' LIBS = $(LIBS)'
|
|
|
|
.c.o:
|
|
@echo Compiling $*.c
|
|
@mkdir -p `dirname $@`
|
|
@$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
dirs:
|
|
@mkdir -p $(DIRS)
|
|
|
|
install: all
|
|
mkdir -p $(bindir)
|
|
mkdir -p $(includedir)
|
|
mkdir -p $(libdir)
|
|
mkdir -p $(libdir)/pkgconfig
|
|
cp $(PROGS) $(bindir)
|
|
cp $(srcdir)/include/tdb.h $(includedir)
|
|
cp tdb.pc $(libdir)/pkgconfig
|
|
|
|
libtdb.a: $(TDB_OBJ)
|
|
ar -rv libtdb.a $(TDB_OBJ)
|
|
|
|
bin/tdbtest$(EXEEXT): tools/tdbtest.o libtdb.a
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbtest tools/tdbtest.o -L. -ltdb -lgdbm
|
|
|
|
bin/tdbtool$(EXEEXT): tools/tdbtool.o libtdb.a
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbtool tools/tdbtool.o -L. -ltdb
|
|
|
|
bin/tdbtorture$(EXEEXT): tools/tdbtorture.o libtdb.a
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbtorture tools/tdbtorture.o -L. -ltdb
|
|
|
|
bin/tdbdump$(EXEEXT): tools/tdbdump.o libtdb.a
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/tdbdump tools/tdbdump.o -L. -ltdb
|
|
|
|
bin/tdbbackup$(EXEEXT): tools/tdbbackup.o libtdb.a
|
|
$(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
|
|
|
|
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
|