mirror of
https://github.com/samba-team/samba.git
synced 2025-12-07 20:23:50 +03:00
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
prefix = @prefix@
|
|
datarootdir = @datarootdir@
|
|
exec_prefix = @exec_prefix@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
mandir = @mandir@
|
|
XSLTPROC = @XSLTPROC@
|
|
INSTALLCMD = @INSTALL@
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@ -DHAVE_CONFIG_H=
|
|
EXTRA_TARGETS = @DOC_TARGET@
|
|
|
|
.SUFFIXES: .c .o .3 .3.xml .xml .html
|
|
|
|
LIBOBJ = talloc.o
|
|
|
|
all: libtalloc.a testsuite $(EXTRA_TARGETS)
|
|
|
|
testsuite: $(LIBOBJ) testsuite.o
|
|
$(CC) $(CFLAGS) -o testsuite testsuite.o $(LIBOBJ) $(LIBS)
|
|
|
|
libtalloc.a: libtalloc.a($(LIBOBJ))
|
|
|
|
install: all
|
|
${INSTALLCMD} -d ${libdir}
|
|
${INSTALLCMD} -m 755 libtalloc.a $(libdir)
|
|
${INSTALLCMD} -d ${includedir}
|
|
${INSTALLCMD} -m 644 talloc.h $(includedir)
|
|
${INSTALLCMD} -m 644 talloc.pc $(libdir)/pkgconfig
|
|
${INSTALLCMD} -d ${mandir}/man3
|
|
test -z "$(XSLTPROC)" || ${INSTALLCMD} -m 644 talloc.3 $(mandir)/man3
|
|
|
|
doc: talloc.3
|
|
|
|
.3.xml.3:
|
|
test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
|
|
|
|
.xml.html:
|
|
test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $<
|
|
|
|
clean:
|
|
rm -f *~ *.o testsuite *.gc??
|
|
|
|
test: testsuite
|
|
./testsuite
|
|
|
|
gcov:
|
|
gcov talloc.c
|
|
|
|
installcheck:
|
|
$(MAKE) test
|