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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
## Process this file with automake to produce Makefile.in
## This file is part of the HDRL Pipeline
## Copyright (C) 2012,2013 European Southern Observatory
## This library 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 2 of the License, or
## (at your option) any later version.
## This program 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 this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
AUTOMAKE_OPTIONS = 1.8 foreign
DISTCLEANFILES = *~
SUBDIRS = catalogue . catalogue/tests tests
EXTRA_DIST = m4macros/eso.m4 m4macros/cpl-pipeline.m4
if MAINTAINER_MODE
MAINTAINERCLEANFILES = Makefile.in
endif
ACLOCAL_AMFLAGS = -I m4macros
AM_CPPFLAGS = -DCX_LOG_DOMAIN=\"HdrlLib\" -DHDRL_USE_PRIVATE $(CPL_INCLUDES) $(GSL_INCLUDES)
hdrlHEADERS = hdrl_overscan.h \
hdrl_sigclip.h \
hdrl_utils.h \
hdrl_combine.h \
hdrl_bpm_2d.h \
hdrl_bpm_3d.h \
hdrl_bpm_fit.h \
hdrl_bpm_utils.h \
hdrl_iter.h \
hdrl_frameiter.h \
hdrl_multiiter.h \
hdrl_collapse.h \
hdrl_elemop.h \
hdrl_flat.h \
hdrl_prototyping.h \
hdrl_image.h \
hdrl_image_math.h \
hdrl_imagelist.h \
hdrl_imagelist_io.h \
hdrl_imagelist_basic.h \
hdrl_imagelist_view.h \
hdrl_parameter.h \
hdrl_parameter_defs.h \
hdrl_strehl.h \
hdrl_types.h \
hdrl_test.h \
hdrl_buffer.h \
hdrl_overscan_defs.h \
hdrl_image_defs.h \
hdrl_imagelist_defs.h \
hdrl_spectrum_defs.h \
hdrl_lacosmics.h \
hdrl_fit.h \
hdrl_fringe.h \
hdrl_catalogue.h \
hdrl_random.h \
hdrl_spectrum.h \
hdrl_spectrumlist.h \
hdrl_spectrum_resample.h \
hdrl_spectrum_shift.h \
hdrl_DER_SNR.h \
hdrl_correlation.h \
hdrl_efficiency.h \
hdrl_response.h \
hdrl_dar.h \
hdrl_fpn.h \
hdrl.h
libhdrl_la_SOURCES = hdrl_overscan.c \
hdrl_sigclip.c \
hdrl_utils.c \
hdrl_combine.c \
hdrl_bpm_2d.c \
hdrl_bpm_3d.c \
hdrl_bpm_fit.c \
hdrl_bpm_utils.c \
hdrl_iter.c \
hdrl_frameiter.c \
hdrl_multiiter.c \
hdrl_collapse.c \
hdrl_elemop.c \
hdrl_flat.c \
hdrl_fit.c \
hdrl_strehl.c \
hdrl_prototyping.c \
hdrl_image.c \
hdrl_image_math.c \
hdrl_imagelist_io.c \
hdrl_imagelist_basic.c \
hdrl_imagelist_view.c \
hdrl_parameter.c \
hdrl_lacosmics.c \
hdrl_buffer.c \
hdrl_fringe.c \
hdrl_catalogue.c \
hdrl_random.c \
hdrl_spectrum.c \
hdrl_spectrumlist.c \
hdrl_spectrum_resample.c \
hdrl_spectrum_shift.c \
hdrl_DER_SNR.c \
hdrl_correlation.c \
hdrl_response.c \
hdrl_efficiency.c \
hdrl_dar.c \
hdrl_fpn.c \
igam.c
libhdrl_la_CFLAGS = $(AM_CFLAGS)
libhdrl_la_LDFLAGS = $(CPL_LDFLAGS) $(GSL_LDFLAGS) -static
libhdrl_la_LIBADD = $(LIBCPLDFS) $(LIBCPLUI) $(LIBCPLDRS) $(LIBCPLCORE) $(GSL_LIBS) catalogue/libcatalogue.la
if VLTSW
lib_LTLIBRARIES = libhdrl.la
pkginclude_HEADERS = $(hdrlHEADERS)
else
noinst_LTLIBRARIES = libhdrl.la
noinst_HEADERS = $(hdrlHEADERS)
endif
|