summaryrefslogtreecommitdiff
path: root/lib/talloc/talloc.mk
diff options
context:
space:
mode:
Diffstat (limited to 'lib/talloc/talloc.mk')
-rw-r--r--lib/talloc/talloc.mk52
1 files changed, 0 insertions, 52 deletions
diff --git a/lib/talloc/talloc.mk b/lib/talloc/talloc.mk
deleted file mode 100644
index fc90f4d41e..0000000000
--- a/lib/talloc/talloc.mk
+++ /dev/null
@@ -1,52 +0,0 @@
-TALLOC_OBJ = $(tallocdir)/talloc.o
-
-TALLOC_SHLIB = libtalloc.$(SHLIBEXT)
-TALLOC_SOLIB = libtalloc.$(SHLIBEXT).$(TALLOC_VERSION)
-TALLOC_SONAME = libtalloc.$(SHLIBEXT).$(TALLOC_VERSION_MAJOR)
-TALLOC_STLIB = libtalloc.a
-
-all:: $(TALLOC_STLIB) $(TALLOC_SOLIB) testsuite
-
-testsuite:: $(LIBOBJ) testsuite.o testsuite_main.o
- $(CC) $(CFLAGS) -o testsuite testsuite.o testsuite_main.o $(LIBOBJ) $(LIBS)
-
-$(TALLOC_STLIB): $(LIBOBJ)
- ar -rv $@ $(LIBOBJ)
- @-ranlib $@
-
-install:: all
- ${INSTALLCMD} -d $(DESTDIR)$(libdir)
- ${INSTALLCMD} -d $(DESTDIR)$(libdir)/pkgconfig
- ${INSTALLCMD} -m 755 $(TALLOC_STLIB) $(DESTDIR)$(libdir)
- ${INSTALLCMD} -m 755 $(TALLOC_SOLIB) $(DESTDIR)$(libdir)
- ${INSTALLCMD} -d $(DESTDIR)${includedir}
- ${INSTALLCMD} -m 644 $(srcdir)/talloc.h $(DESTDIR)$(includedir)
- ${INSTALLCMD} -m 644 talloc.pc $(DESTDIR)$(libdir)/pkgconfig
- if [ -f talloc.3 ];then ${INSTALLCMD} -d $(DESTDIR)$(mandir)/man3; fi
- if [ -f talloc.3 ];then ${INSTALLCMD} -m 644 talloc.3 $(DESTDIR)$(mandir)/man3; fi
- which swig >/dev/null 2>&1 && ${INSTALLCMD} -d $(DESTDIR)`swig -swiglib` || true
- which swig >/dev/null 2>&1 && ${INSTALLCMD} -m 644 talloc.i $(DESTDIR)`swig -swiglib` || true
- rm -f $(DESTDIR)$(libdir)/$(TALLOC_SONAME)
- ln -s $(TALLOC_SOLIB) $(DESTDIR)$(libdir)/$(TALLOC_SONAME)
- rm -f $(DESTDIR)$(libdir)/$(TALLOC_SHLIB)
- ln -s $(TALLOC_SOLIB) $(DESTDIR)$(libdir)/$(TALLOC_SHLIB)
-
-doc:: talloc.3 talloc.3.html
-
-clean::
- rm -f *~ $(LIBOBJ) $(TALLOC_SOLIB) $(TALLOC_STLIB) testsuite testsuite.o testsuite_main.o *.gc?? talloc.3 talloc.3.html
- rm -fr abi
- rm -f talloc.exports.sort talloc.exports.check talloc.exports.check.sort
- rm -f talloc.signatures.sort talloc.signatures.check talloc.signatures.check.sort
-
-test:: testsuite
- ./testsuite
-
-abi_checks::
- @echo ABI checks:
- @./script/abi_checks.sh talloc talloc.h
-
-test:: abi_checks
-
-gcov::
- gcov talloc.c