Some checks failed
ContinuousDelivery / linux-ubuntu (push) Has been cancelled
ContinuousDelivery / linux-debian12 (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousDelivery / windows (windows-2022, ) (push) Has been cancelled
ContinuousDelivery / windows (windows-2022, asan) (push) Has been cancelled
ContinuousIntegration / on ubuntu-24.04-arm (push) Has been cancelled
ContinuousIntegration / asan on ubuntu-24.04-arm (push) Has been cancelled
ContinuousIntegration / on ubuntu-latest (push) Has been cancelled
ContinuousIntegration / asan on ubuntu-latest (push) Has been cancelled
ContinuousIntegration / linux-debian12 (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android-23]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android-23]) (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / dumpsyms (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
35 lines
780 B
Makefile
35 lines
780 B
Makefile
SUBDIRS = build
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
|
|
pkgconfig_DATA = $(top_builddir)/libtoxcore.pc
|
|
BUILT_SOURCES = $(top_builddir)/libtoxcore.pc
|
|
CLEANFILES = $(top_builddir)/libtoxcore.pc
|
|
|
|
|
|
EXTRA_DIST = \
|
|
README.md \
|
|
libtoxcore.pc.in \
|
|
tox.spec \
|
|
so.version \
|
|
$(top_srcdir)/tools/test-wrapper.sh \
|
|
$(top_srcdir)/docs/updates/Crypto.md \
|
|
$(top_srcdir)/docs/updates/Spam-Prevention.md \
|
|
$(top_srcdir)/docs/updates/Symmetric-NAT-Transversal.md \
|
|
$(top_srcdir)/other/astyle/README.md \
|
|
$(top_srcdir)/other/astyle/astylerc \
|
|
$(top_srcdir)/other/astyle/pre-commit
|
|
|
|
if BUILD_AV
|
|
|
|
pkgconfig_DATA += $(top_builddir)/libtoxav.pc
|
|
BUILT_SOURCES += $(top_builddir)/libtoxav.pc
|
|
CLEANFILES += $(top_builddir)/libtoxav.pc
|
|
|
|
EXTRA_DIST += libtoxav.pc.in
|
|
|
|
endif
|