mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 13:08:08 +00:00
git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@75 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
# let make re-run automake upon need
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
if EXTERNAL_ORTP
|
|
ORTP_DIR =
|
|
else
|
|
ORTP_DIR = oRTP
|
|
endif
|
|
|
|
SUBDIRS = m4 pixmaps po ipkg $(ORTP_DIR) mediastreamer2\
|
|
coreapi console gtk-glade share
|
|
|
|
|
|
EXTRA_DIST = config.rpath BUGS linphone.kdevprj \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in \
|
|
README.arm \
|
|
README.win32 \
|
|
autogen.sh \
|
|
linphone.spec.in linphone.spec
|
|
ACLOCAL_FLAGS=-I$(top_srcdir)/m4
|
|
|
|
DISTCLEANFILES= intltool-extract intltool-merge intltool-update po/stamp-it po/.intltool-merge-cache
|
|
|
|
# `make rpm'
|
|
|
|
all-local: linphone.spec
|
|
linphone.spec: linphone.spec.in
|
|
|
|
.phony: rpm
|
|
rpm:
|
|
$(MAKE) dist
|
|
# Create "Specfile" at the same level as the tarball content
|
|
-rm -f $(PACKAGE)-$(VERSION).tar
|
|
gunzip $(PACKAGE)-$(VERSION).tar.gz
|
|
cp $(PACKAGE).spec Specfile
|
|
tar --append --file=$(PACKAGE)-$(VERSION).tar Specfile
|
|
gzip $(PACKAGE)-$(VERSION).tar
|
|
# <https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=2068410>
|
|
TAR_OPTIONS=--wildcards rpmbuild -ta --clean --rmsource --rmspec $(PACKAGE)-$(VERSION).tar.gz
|