mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
379522c93e
The spec file gets processed by configure, the version will be filled in automatically. To generate an rpm make sure to install rpm-build, then "configure" as you would usually do, run "make dist", then process the generated tarball with rpmbuild: rpmbuild -tb tox-0.0.0.tar.gz Tested on Fedora 22.
38 lines
853 B
Makefile
38 lines
853 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 \
|
|
dist-build/android-arm.sh \
|
|
dist-build/android-armv7.sh \
|
|
dist-build/android-x86.sh \
|
|
dist-build/android-mips.sh \
|
|
dist-build/android-build.sh \
|
|
$(top_srcdir)/docs/updates/Crypto.md \
|
|
$(top_srcdir)/docs/updates/Spam-Prevention.md \
|
|
$(top_srcdir)/docs/updates/Symmetric-NAT-Transversal.md \
|
|
$(top_srcdir)/tools/README \
|
|
$(top_srcdir)/tools/astylerc \
|
|
$(top_srcdir)/tools/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
|