diff options
Diffstat (limited to 'lib/tevent/tevent.mk')
-rw-r--r-- | lib/tevent/tevent.mk | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/lib/tevent/tevent.mk b/lib/tevent/tevent.mk deleted file mode 100644 index 57bfd81222..0000000000 --- a/lib/tevent/tevent.mk +++ /dev/null @@ -1,46 +0,0 @@ -TEVENT_SOBASE = libtevent.$(SHLIBEXT) -TEVENT_SONAME = $(TEVENT_SOBASE).0 -TEVENT_SOLIB = $(TEVENT_SOBASE).$(PACKAGE_VERSION) -TEVENT_STLIB = libtevent.a - -$(TEVENT_STLIB): $(TEVENT_OBJ) - ar -rv $(TEVENT_STLIB) $(TEVENT_OBJ) - -$(TEVENT_SOBASE): $(TEVENT_SOLIB) - ln -fs $< $@ - -$(TEVENT_SONAME): $(TEVENT_SOLIB) - ln -fs $< $@ - -dirs:: - @mkdir -p lib - -installdirs:: - mkdir -p $(DESTDIR)$(includedir) - mkdir -p $(DESTDIR)$(libdir) - mkdir -p $(DESTDIR)$(libdir)/pkgconfig - -installheaders:: installdirs - cp $(srcdir)/tevent.h $(DESTDIR)$(includedir) - -installlibs:: installdirs - cp tevent.pc $(DESTDIR)$(libdir)/pkgconfig - cp $(TEVENT_STLIB) $(TEVENT_SOLIB) $(DESTDIR)$(libdir) - rm -f $(DESTDIR)$(libdir)/$(TEVENT_SONAME) - ln -s $(TEVENT_SOLIB) $(DESTDIR)$(libdir)/$(TEVENT_SONAME) - rm -f $(DESTDIR)$(libdir)/$(TEVENT_SOBASE) - ln -s $(TEVENT_SOLIB) $(DESTDIR)$(libdir)/$(TEVENT_SOBASE) - -install:: all installdirs installheaders installlibs $(PYTHON_INSTALL_TARGET) - -abi_checks:: - @echo ABI checks: - @./script/abi_checks.sh tevent tevent.h - -test:: abi_checks - -clean:: - rm -f $(TEVENT_SOBASE) $(TEVENT_SONAME) $(TEVENT_SOLIB) $(TEVENT_STLIB) - rm -f tevent.pc - rm -f tevent.exports.sort tevent.exports.check tevent.exports.check.sort - rm -f tevent.signatures.sort tevent.signatures.check tevent.signatures.check.sort |