mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Problems: Polygon outlines are not drawn. This was checked twice and no cause was found. Projections do not work in all circumstances Note that both the proj4 library and sqlite3 are now required. The build system has not been modified to test for these yet. Qt 3.3.x is required to build this source tree. Make sure to increment the EXTRA_VERSION in configure.in when committing changes. Make sure to update the Changelog with each commit git-svn-id: http://svn.osgeo.org/qgis/trunk@3112 c8812cc2-4d05-0410-92ff-de0c093fc19c
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
# Copyright (C) 2003 Gary Sherman <sherman at mrcc.com>
|
|
#
|
|
# This file is free software; as a special exception the author gives
|
|
# unlimited permission to copy and/or distribute it, with or without
|
|
# modifications, as long as this notice is preserved.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
EXTRA_DIST = \
|
|
AUTHORS \
|
|
BUGS \
|
|
ChangeLog \
|
|
COPYING \
|
|
create_qm_files.sh \
|
|
doc \
|
|
INSTALL \
|
|
$(man1_MANS) \
|
|
NEWS \
|
|
qgis.spec \
|
|
qgsconfig.h.in \
|
|
README \
|
|
TODO \
|
|
update_ts_files.sh
|
|
|
|
man1_MANS = qgis.man
|
|
|
|
docdatadir = $(datadir)/$(PACKAGE)/doc
|
|
|
|
docdata_DATA = AUTHORS
|
|
|
|
|
|
SUBDIRS = src widgets providers plugins doc tools i18n designer_plugins
|
|
pkginclude_HEADERS = qgsconfig.h
|
|
|
|
UIcheck:
|
|
@UIS=`find . -name *.ui` && \
|
|
if [ `grep "UI version" $$UIS | sed -e '/3.1/d' | wc -l` -ne 0 ]; then \
|
|
echo -e "\nWrong UI version:"; \
|
|
grep "UI version" $$UIS | sed -e '/3.1/d' -e 's/:.*version="\([0-9\.]*\)".*/ is version \1/g'; \
|
|
echo; \
|
|
exit 1; \
|
|
fi
|
|
|
|
release: UIcheck distdir
|
|
-chmod -R a+r $(distdir)
|
|
GZIP=$(GZIP_ENV) $(AMTAR)$(TAR) chozf $(distdir).tar.gz $(distdir)
|
|
rm -f $(distdir)/qgis.spec
|
|
sed '/^Source:/s/\.tar\.gz$$/\.tar\.bz2/' qgis.spec \
|
|
> $(distdir)/qgis.spec
|
|
BZIP2=$(BZIP2_ENV) $(AMTAR)$(TAR) --bzip2 -chof $(distdir).tar.bz2 $(distdir)
|
|
-rm -rf $(distdir)
|