Makefile.am 1.16 KB
Newer Older
Emmanuel Bertin's avatar
Emmanuel Bertin committed
1
# Program Makefile for SEx
Emmanuel Bertin's avatar
Emmanuel Bertin committed
2
3
4
5
# Copyright (C) 2004-2008 Emmanuel Bertin.
SUBDIRS			= fits levmar wcs
bin_PROGRAMS		= sex ldactoasc
check_PROGRAMS		= sex
Emmanuel Bertin's avatar
Emmanuel Bertin committed
6
sex_SOURCES		= analyse.c assoc.c astrom.c back.c bpro.c catout.c \
Emmanuel Bertin's avatar
Emmanuel Bertin committed
7
8
9
10
11
12
			  check.c clean.c extract.c fft.c field.c filter.c \
			  fitswcs.c flag.c graph.c growth.c image.c \
			  interpolate.c main.c makeit.c manobjlist.c misc.c \
			  neurro.c pattern.c pc.c photom.c plist.c prefs.c \
			  profit.c 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
13
			  assoc.h astrom.h back.h bpro.h check.h clean.h \
Emmanuel Bertin's avatar
Emmanuel Bertin committed
14
15
16
17
18
19
20
21
22
23
24
			  define.h extract.h fft.h field.h filter.h fitswcs.h \
			  flag.h globals.h growth.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
ldactoasc_SOURCES 	= ldactoasc.c ldactoasc.h
sex_LDADD		= $(top_builddir)/src/fits/libfits.a \
			  $(top_builddir)/src/wcs/libwcs_c.a \
			  $(top_builddir)/src/levmar/liblevmar.a 
ldactoasc_LDADD		= $(top_builddir)/src/fits/libfits.a
Emmanuel Bertin's avatar
Emmanuel Bertin committed
25
DATE=`date +"%Y-%m-%d"`
Emmanuel Bertin's avatar
Emmanuel Bertin committed
26