Makefile.am 1.86 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-2012 Emmanuel Bertin -- 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:		09/07/2012
26
27
28
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

Emmanuel Bertin's avatar
Emmanuel Bertin committed
29
AUTOMAKE_OPTIONS	= foreign no-dependencies
Emmanuel Bertin's avatar
Emmanuel Bertin committed
30
SUBDIRS			= man src tests
31
32
33
dist_pkgdata_DATA	= config/* xsl/sextractor.xsl
EXTRA_DIST		= doc AUTHORS BUGS ChangeLog COPYRIGHT HISTORY \
			  INSTALL LICENSE README THANKS \
34
35
			  acx_atlas.m4 acx_fftw.m4 acx_mkl.m4 \
			  acx_prog_cc_optim.m4 acx_urbi_resolve_dir.m4
Emmanuel Bertin's avatar
Emmanuel Bertin committed
36
RPM_ROOTDIR		= `rpmbuild --nobuild -E %_topdir`
Emmanuel Bertin's avatar
Emmanuel Bertin committed
37
RPM_SRCDIR		= $(RPM_ROOTDIR)/SOURCES
Emmanuel Bertin's avatar
Emmanuel Bertin committed
38
39
40
dist-hook:
	rm -rf `find $(distdir) -name .svn`

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

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

49
50
51
52
rpm-best:	dist
	cp -f $(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.gz $(RPM_SRCDIR)
	USE_BEST="1" rpmbuild -ba --clean --nodeps $(PACKAGE_NAME).spec