mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
e83f4b868b
This is a first attempt at exporting symbols only for public functions We also provide a rudimentary ABI checker that tries to check that function signatures are not changed by mistake. Given our use of macros this is not an API checker. It's all based on talloc.h contents and the gcc -aux-info option
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
TALLOC_OBJ = $(tallocdir)/talloc.o
|
|
|
|
TALLOC_SOLIB = libtalloc.$(SHLIBEXT).$(PACKAGE_VERSION)
|
|
TALLOC_SONAME = libtalloc.$(SHLIBEXT).1
|
|
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
|
|
|
|
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
|
|
|
|
test:: testsuite
|
|
./testsuite
|
|
|
|
gcov::
|
|
gcov talloc.c
|