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

29
30
31
32
33
34
35
36
if USE_MODEL
  FFTSOURCE		= fft.c
  PATTERNSOURCE		= pattern.c
  PROFITSOURCE		= profit.c
  LEVLIB		= $(top_builddir)/src/levmar/liblevmar.a
  LEVDIR		= levmar
endif
SUBDIRS			= fits $(LEVDIR) wcs
Emmanuel Bertin's avatar
Emmanuel Bertin committed
37
38
bin_PROGRAMS		= sex ldactoasc
check_PROGRAMS		= sex
Emmanuel Bertin's avatar
Emmanuel Bertin committed
39
sex_SOURCES		= analyse.c assoc.c astrom.c back.c bpro.c catout.c \
40
41
42
43
44
45
46
			  check.c clean.c extract.c $(FFTSOURCE) field.c \
			  filter.c fitswcs.c flag.c graph.c growth.c header.c \
			  image.c interpolate.c main.c makeit.c manobjlist.c \
			  misc.c neurro.c $(PATTERNSOURCE) pc.c photom.c \
			  plist.c prefs.c $(PROFITSOURCE) psf.c readimage.c \
			  refine.c retina.c scan.c som.c weight.c winpos.c \
			  xml.c \
Emmanuel Bertin's avatar
Emmanuel Bertin committed
47
			  assoc.h astrom.h back.h bpro.h check.h clean.h \
Emmanuel Bertin's avatar
Emmanuel Bertin committed
48
			  define.h extract.h fft.h field.h filter.h fitswcs.h \
49
50
51
52
53
54
			  flag.h globals.h growth.h header.h image.h \
			  interpolate.h key.h neurro.h param.h paramprofit.h \
			  pattern.h photom.h plist.h prefs.h preflist.h \
			  profit.h psf.h retina.h sexhead1.h sexhead.h \
			  sexheadsc.h som.h threads.h types.h wcscelsys.h \
			  weight.h winpos.h xml.h
Emmanuel Bertin's avatar
Emmanuel Bertin committed
55
56
57
ldactoasc_SOURCES 	= ldactoasc.c ldactoasc.h
sex_LDADD		= $(top_builddir)/src/fits/libfits.a \
			  $(top_builddir)/src/wcs/libwcs_c.a \
58
			  $(LEVLIB) 
Emmanuel Bertin's avatar
Emmanuel Bertin committed
59
ldactoasc_LDADD		= $(top_builddir)/src/fits/libfits.a
Emmanuel Bertin's avatar
Emmanuel Bertin committed
60
DATE=`date +"%Y-%m-%d"`
Emmanuel Bertin's avatar
Emmanuel Bertin committed
61