-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.am
72 lines (57 loc) · 1.37 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
if HAVE_LIBZ
SUBDIRS = lib/gzstream-1.5
endif
bin_PROGRAMS = dida-mpi dida-wrapper prt dsp mrg
dida_mpi_CPPFLAGS = -I$(top_srcdir)/Common
dida_mpi_LDADD = $(MPI_LIBS)
dida_mpi_SOURCES = \
Common/Uncompress.cpp \
Common/Uncompress.h \
Common/SignalHandler.cpp \
Common/SignalHandler.h \
Common/FileUtil.h \
Common/Fcontrol.cpp \
Common/Fcontrol.h \
Common/prt.cpp \
Common/prt.h \
Common/StringUtil.h \
dida.cpp
dida_wrapper_CPPFLAGS = -I$(top_srcdir)/Common
if HAVE_LIBZ
dida_wrapper_CPPFLAGS += -I$(top_srcdir)/lib/gzstream-1.5
endif
dida_wrapper_LDADD = $(MPI_LIBS)
if HAVE_LIBZ
dida_wrapper_LDADD += $(top_builddir)/lib/gzstream-1.5/libgzstream.a
endif
dida_wrapper_SOURCES = \
Common/Uncompress.cpp \
Common/Uncompress.h \
Common/SignalHandler.cpp \
Common/SignalHandler.h \
Common/FileUtil.h \
Common/Fcontrol.cpp \
Common/Fcontrol.h \
Common/GzipStream.h \
Common/Options.h \
Common/Options.cc \
Common/prt.cpp \
Common/prt.h \
Common/mrg.cpp \
Common/mrg.h \
Common/StringUtil.h \
dida_wrapper.cpp
prt_SOURCES = \
prt.cpp
dsp_CPPFLAGS = -I$(top_srcdir)/Common
dsp_SOURCES = \
Common/Uncompress.cpp \
Common/Uncompress.h \
Common/SignalHandler.cpp \
Common/SignalHandler.h \
Common/Fcontrol.cpp \
Common/Fcontrol.h \
Common/StringUtil.h \
dsp.cpp
mrg_SOURCES = \
mrg.cpp