forked from scottransom/psrfits_utils
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile.am
57 lines (41 loc) · 1.65 KB
/
Makefile.am
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
ACLOCAL_AMFLAGS = -I config
pkginclude_HEADERS = \
fold.h \
polyco.h \
polyco_struct.h \
psrfits.h
noinst_HEADERS =
dist_data_DATA = \
guppi_PSRFITS_v3.4_fold_template.txt \
guppi_PSRFITS_v3.4_search_template.txt
lib_LTLIBRARIES = libpsrfits_utils.la
libpsrfits_utils_la_SOURCES = \
downsample.c \
fold.c \
misc_utils.c \
polyco.c \
read_psrfits.c \
write_psrfits.c
LDADD = libpsrfits_utils.la
AM_CPPFLAGS = -DPSRFITS_TEMPLATE_DIR='"$(datadir)"'
bin_PROGRAMS = fold_psrfits psrfits_singlepulse psrfits_subband combine_mocks combine_lwa psrfits_drifttool
fold_psrfits_CFLAGS = @PTHREAD_CFLAGS@ $(AM_CFLAGS)
fold_psrfits_LDFLAGS = @PTHREAD_CFLAGS@ $(AM_LDFLAGS)
fold_psrfits_LDADD = libpsrfits_utils.la @PTHREAD_LIBS@
psrfits_subband_SOURCES = psrfits_subband.c \
psrfits_subband_cmd.h psrfits_subband_cmd.c
combine_mocks_SOURCES = combine_mocks.c \
combine_mocks_cmd.h combine_mocks_cmd.c
combine_lwa_SOURCES = combine_lwa.c \
combine_lwa_cmd.h combine_lwa_cmd.c
psrfits_drifttool_SOURCES = psrfits_drifttool.c \
psrfits_drifttool_cmd.h psrfits_drifttool_cmd.c
BUILT_SOURCES = psrfits_utils_wrap.c
SWIG_FILES = psrfits_utils.i
pkgpython_PYTHON = psrfits_utils.py __init__.py
pkgpython_LTLIBRARIES = _psrfits_utils.la
_psrfits_utils_la_SOURCES = swig_addedfunc.c psrfits_utils_wrap.c write_psrfits.c read_psrfits.c downsample.c
_psrfits_utils_la_CPPFLAGS = $(AX_SWIG_PYTHON_CPPFLAGS) $(AM_CPPFLAGS)
_psrfits_utils_la_LDFLAGS = -module
psrfits_utils_wrap.c : $(SWIG_FILES)
$(SWIG) $(SWIG_PYTHON_OPT) -python $(SWIG_PYTHON_CFLAGS) $(DEFAULT_INCLUDES) -o $@ $<