Makefile.am 2.3 KB
Newer Older
1
2
3
4
5
6
7
8
9
#
#				Makefile.am
#
# Main Makefile. Process this file with automake to generate a Makefile
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#
#	This file part of:	SExtractor
#
10
#	Copyright:		(C) 2002-2017 IAP/CNRS/UPMC
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
#	License:		GNU General Public License
#
#	SExtractor is free software: you can redistribute it and/or modify
#	it under the terms of the GNU General Public License as published by
#	the Free Software Foundation, either version 3 of the License, or
# 	(at your option) any later version.
#	SExtractor is distributed in the hope that it will be useful,
#	but WITHOUT ANY WARRANTY; without even the implied warranty of
#	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#	GNU General Public License for more details.
#	You should have received a copy of the GNU General Public License
#	along with SExtractor. If not, see <http://www.gnu.org/licenses/>.
#
25
#	Last modified:		19/06/2017
26
27
28
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

29
ACLOCAL_AMFLAGS		= -I m4
Emmanuel Bertin's avatar
Emmanuel Bertin committed
30
AUTOMAKE_OPTIONS	= foreign no-dependencies
31
SUBDIRS			= src man doc tests debian
32
dist_pkgdata_DATA	= config/* xsl/sextractor.xsl
33
34
EXTRA_DIST		= autogen.sh AUTHORS BUGS ChangeLog COPYRIGHT \
			  HISTORY INSTALL LICENSE README THANKS
Emmanuel Bertin's avatar
Emmanuel Bertin committed
35
RPM_ROOTDIR		= `rpmbuild --nobuild -E %_topdir`
Emmanuel Bertin's avatar
Emmanuel Bertin committed
36
RPM_SRCDIR		= $(RPM_ROOTDIR)/SOURCES
37
38
DEB_SRCDIR		= ~/DEBIAN/SOURCES

Emmanuel Bertin's avatar
Emmanuel Bertin committed
39
dist-hook:
40
	rm -rf `find $(distdir) -type d \( -name .svn -o -name .git \)`
Emmanuel Bertin's avatar
Emmanuel Bertin committed
41

Emmanuel Bertin's avatar
Emmanuel Bertin committed
42
rpm:	dist
43
44
	cp -f $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz $(RPM_SRCDIR)
	rpmbuild -ba --clean --nodeps $(PACKAGE_TARNAME).spec
Emmanuel Bertin's avatar
Emmanuel Bertin committed
45
46

rpm-icc:	dist
47
48
	cp -f $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz $(RPM_SRCDIR)
	USE_ICC="1" rpmbuild -ba --clean --nodeps $(PACKAGE_TARNAME).spec
Emmanuel Bertin's avatar
Emmanuel Bertin committed
49

50
rpm-best:	dist
51
52
53
54
55
56
57
58
59
60
61
62
63
64
	cp -f $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz $(RPM_SRCDIR)
	USE_BEST="1" rpmbuild -ba --clean --nodeps $(PACKAGE_TARNAME).spec

deb:	dist
	mkdir -p $(DEB_SRCDIR)
	tar -xvf $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz -C $(DEB_SRCDIR) 
	cd $(DEB_SRCDIR)/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
	debuild -j4 -b -us -uc

deb-best:	dist
	mkdir -p $(DEB_SRCDIR)
	tar -xvf $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz -C $(DEB_SRCDIR) 
	cd $(DEB_SRCDIR)/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
	debuild --set-envvar=USE_BEST=1 --preserve-env --preserve-envvar=PATH -j4 -b -us -uc
65