| 1 |
233 |
bertin |
#
|
| 2 |
|
|
# Makefile.am
|
| 3 |
|
|
#
|
| 4 |
|
|
# src Makefile.am. Process this file with automake to generate a Makefile
|
| 5 |
|
|
#
|
| 6 |
|
|
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
| 7 |
|
|
#
|
| 8 |
|
|
# This file part of: SExtractor
|
| 9 |
|
|
#
|
| 10 |
252 |
bertin |
# Copyright: (C) 2002-2011 Emmanuel Bertin -- IAP/CNRS/UPMC
|
| 11 |
233 |
bertin |
#
|
| 12 |
|
|
# License: GNU General Public License
|
| 13 |
|
|
#
|
| 14 |
|
|
# SExtractor is free software: you can redistribute it and/or modify
|
| 15 |
|
|
# it under the terms of the GNU General Public License as published by
|
| 16 |
|
|
# the Free Software Foundation, either version 3 of the License, or
|
| 17 |
|
|
# (at your option) any later version.
|
| 18 |
|
|
# SExtractor is distributed in the hope that it will be useful,
|
| 19 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 20 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 21 |
|
|
# GNU General Public License for more details.
|
| 22 |
|
|
# You should have received a copy of the GNU General Public License
|
| 23 |
|
|
# along with SExtractor. If not, see .
|
| 24 |
|
|
#
|
| 25 |
267 |
bertin |
# Last modified: 06/10/2011
|
| 26 |
233 |
bertin |
#
|
| 27 |
|
|
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
| 28 |
|
|
|
| 29 |
227 |
bertin |
if USE_MODEL
|
| 30 |
|
|
FFTSOURCE = fft.c
|
| 31 |
|
|
PATTERNSOURCE = pattern.c
|
| 32 |
|
|
PROFITSOURCE = profit.c
|
| 33 |
|
|
LEVLIB = $(top_builddir)/src/levmar/liblevmar.a
|
| 34 |
|
|
LEVDIR = levmar
|
| 35 |
|
|
endif
|
| 36 |
|
|
SUBDIRS = fits $(LEVDIR) wcs
|
| 37 |
173 |
bertin |
bin_PROGRAMS = sex ldactoasc
|
| 38 |
|
|
check_PROGRAMS = sex
|
| 39 |
2 |
bertin |
sex_SOURCES = analyse.c assoc.c astrom.c back.c bpro.c catout.c \
|
| 40 |
227 |
bertin |
check.c clean.c extract.c $(FFTSOURCE) field.c \
|
| 41 |
|
|
filter.c fitswcs.c flag.c graph.c growth.c header.c \
|
| 42 |
|
|
image.c interpolate.c main.c makeit.c manobjlist.c \
|
| 43 |
267 |
bertin |
misc.c neurro.c $(PATTERNSOURCE) photom.c plist.c \
|
| 44 |
|
|
prefs.c $(PROFITSOURCE) psf.c readimage.c refine.c \
|
| 45 |
|
|
retina.c scan.c som.c weight.c winpos.c xml.c \
|
| 46 |
252 |
bertin |
analyse.h assoc.h astrom.h back.h bpro.h catout.h \
|
| 47 |
|
|
check.h clean.h define.h extract.h fft.h field.h \
|
| 48 |
|
|
filter.h fitswcs.h flag.h globals.h growth.h \
|
| 49 |
|
|
header.h image.h interpolate.h key.h neurro.h \
|
| 50 |
|
|
param.h paramprofit.h pattern.h photom.h plist.h \
|
| 51 |
|
|
prefs.h preflist.h profit.h psf.h retina.h \
|
| 52 |
|
|
sexhead1.h sexhead.h sexheadsc.h som.h threads.h \
|
| 53 |
|
|
types.h wcscelsys.h weight.h winpos.h xml.h
|
| 54 |
173 |
bertin |
ldactoasc_SOURCES = ldactoasc.c ldactoasc.h
|
| 55 |
|
|
sex_LDADD = $(top_builddir)/src/fits/libfits.a \
|
| 56 |
|
|
$(top_builddir)/src/wcs/libwcs_c.a \
|
| 57 |
227 |
bertin |
$(LEVLIB)
|
| 58 |
173 |
bertin |
ldactoasc_LDADD = $(top_builddir)/src/fits/libfits.a
|
| 59 |
2 |
bertin |
DATE=`date +"%Y-%m-%d"`
|
| 60 |
173 |
bertin |
|