Makefile.am 1.85 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
#				Makefile.am
#
# Main Makefile. Process this file with automake to generate a Makefile
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
#
#	This file part of:	SExtractor
#
#	Copyright:		(C) 2002-2010 IAP/CNRS/UPMC
#
#	Author:			Emmanuel Bertin (IAP)
#
#	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/>.
#
#	Last modified:		11/10/2010
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

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

Emmanuel Bertin's avatar
Emmanuel Bertin committed
43
44
rpm:	dist
	cp -f $(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.gz $(RPM_SRCDIR)
Emmanuel Bertin's avatar
Emmanuel Bertin committed
45
46
47
48
49
	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
50

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