Mercurial > hg > minc-tools
annotate Makefile.am @ 2476:be77e1e3845c
* CMakeLists.txt: updated version
* Updated Changelog to include releases
* Warning cleanups below
* conversion/dcm2mnc/minc_file.c: fixed printf type
* conversion/dcm2mnc/siemens_to_dicom.c: fixed printf type
* conversion/ecattominc/machine_indep.c: added string.h and fixed
2 fprintf missing format args
* conversion/micropet/upet2mnc.c: fixed two fprintf format args
* conversion/minctoecat/ecat_write.c: added string.h
* conversion/minctoecat/minctoecat.c: added missing argument to fprintf
* conversion/nifti1/mnc2nii.c: fixed incorrect printf type
* progs/mincview/invert_raw_image.c: added fwrite checking
author | rotor <rotor> |
---|---|
date | Tue, 20 Jan 2009 11:58:13 +0000 |
parents | 9f773b840171 |
children | b29b6ad22382 |
rev | line source |
---|---|
1763 | 1 # Makefile.am for MINC2 |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
2 # |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
3 AUTOMAKE_OPTIONS = check-news subdir-objects |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
4 ACLOCAL_AMFLAGS = -I m4 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
5 |
1806 | 6 AM_CFLAGS = |
2381
f53c551835c6
* added --debug to AM_YFLAGS for minccalc build (thanks Claude)
rotor <rotor>
parents:
2376
diff
changeset
|
7 AM_YFLAGS = -d --debug |
1763 | 8 |
2189
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
9 SUBDIRS = . volume_io testdir doc |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
10 if MINC2 |
2470 | 11 SUBDIRS += libsrc2/test |
2189
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
12 endif |
1508 | 13 |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
14 # Add these to the include searches. |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
15 # |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
16 INCLUDES = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
17 -I$(top_srcdir)/libsrc \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
18 -I$(top_builddir)/volume_io/Include \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
19 -I$(top_srcdir)/volume_io/Include \ |
2138 | 20 -I$(top_srcdir)/progs/Proglib \ |
21 -I$(top_srcdir)/conversion/Acr_nema | |
2381
f53c551835c6
* added --debug to AM_YFLAGS for minccalc build (thanks Claude)
rotor <rotor>
parents:
2376
diff
changeset
|
22 |
2373
037e089f685f
* small build fixes (added libsrc2 to the INCLUDES)
rotor <rotor>
parents:
2367
diff
changeset
|
23 if MINC2 |
037e089f685f
* small build fixes (added libsrc2 to the INCLUDES)
rotor <rotor>
parents:
2367
diff
changeset
|
24 INCLUDES += -I$(top_srcdir)/libsrc2 |
037e089f685f
* small build fixes (added libsrc2 to the INCLUDES)
rotor <rotor>
parents:
2367
diff
changeset
|
25 endif |
037e089f685f
* small build fixes (added libsrc2 to the INCLUDES)
rotor <rotor>
parents:
2367
diff
changeset
|
26 |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
27 # Headers which must be installed. |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
28 # |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
29 include_HEADERS = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
30 libsrc/minc.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
31 libsrc/ParseArgv.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
32 libsrc/voxel_loop.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
33 libsrc/nd_loop.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
34 libsrc/time_stamp.h \ |
1763 | 35 libsrc/minc_compat.h \ |
36 volume_io/Include/volume_io.h \ | |
1894 | 37 libsrc2/minc2.h \ |
38 libsrc/minc_simple.h | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
39 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
40 include_volume_iodir = $(includedir)/volume_io |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
41 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
42 include_volume_io_HEADERS = \ |
2055
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
43 volume_io/Include/volume_io/alloc.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
44 volume_io/Include/volume_io/arrays.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
45 volume_io/Include/volume_io/basic.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
46 volume_io/Include/volume_io/def_math.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
47 volume_io/Include/volume_io/files.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
48 volume_io/Include/volume_io/geom_structs.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
49 volume_io/Include/volume_io/geometry.h \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
50 volume_io/Include/internal_volume_io.h \ |
2055
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
51 volume_io/Include/volume_io/multidim.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
52 volume_io/Include/volume_io/progress.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
53 volume_io/Include/volume_io/string_funcs.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
54 volume_io/Include/volume_io/system_dependent.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
55 volume_io/Include/volume_io/transforms.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
56 volume_io/Include/volume_io/vol_io_prototypes.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
57 volume_io/Include/volume_io/volume.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
58 volume_io/Include/volume_io/volume_cache.h |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
59 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
60 # Header files which must be included in the distribution but which are |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
61 # not part of the installation. |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
62 # |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
63 noinst_HEADERS = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
64 libsrc/minc_basic.h \ |
1763 | 65 libsrc/minc_config.h \ |
66 libsrc/minc_error.h \ | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
67 libsrc/minc_private.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
68 libsrc/minc_routines.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
69 libsrc/minc_structures.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
70 libsrc/minc_useful.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
71 libsrc/minc_varlists.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
72 libsrc/type_limits.h \ |
1763 | 73 libsrc/hdf_convenience.h \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
74 progs/Proglib/convert_origin_to_start.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
75 progs/Proglib/minc_def.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
76 progs/minccalc/errx.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
77 progs/minccalc/node.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
78 progs/minccalc/y.tab.h \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
79 progs/mincresample/mincresample.h \ |
1763 | 80 progs/mincreshape/mincreshape.h \ |
81 libsrc2/minc2_private.h \ | |
82 progs/mincdump/mincdump.h \ | |
83 progs/mincdump/dumplib.h \ | |
1868 | 84 progs/mincdump/vardata.h \ |
85 progs/mincgen/generic.h \ | |
86 progs/mincgen/genlib.h \ | |
87 progs/mincgen/ncgen.h \ | |
1947
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
88 progs/mincgen/ncgentab.h \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
89 conversion/ecattominc/ecat_file.h \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
90 conversion/ecattominc/machine_indep.h \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
91 conversion/ecattominc/ecat_header_definition.h \ |
2055
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
92 conversion/minctoecat/ecat_write.h \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
93 conversion/minctoecat/machine_indep.h \ |
1947
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
94 conversion/nifti1/nifti1.h \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
95 conversion/nifti1/nifti1_io.h \ |
2138 | 96 conversion/nifti1/nifti1_local.h \ |
2381
f53c551835c6
* added --debug to AM_YFLAGS for minccalc build (thanks Claude)
rotor <rotor>
parents:
2376
diff
changeset
|
97 conversion/nifti1/znzlib.h \ |
2167
bef8ee0abe72
Add conversion/nifti1/analyze75.h to the build
bert <bert>
parents:
2158
diff
changeset
|
98 conversion/nifti1/analyze75.h \ |
2138 | 99 conversion/dcm2mnc/acr_element_defs.h \ |
100 conversion/dcm2mnc/dcm2mnc.h \ | |
101 conversion/dcm2mnc/dicom_read.h \ | |
102 conversion/dcm2mnc/dicom_to_minc.h \ | |
103 conversion/dcm2mnc/ext_element_defs.h \ | |
104 conversion/dcm2mnc/minc_file.h \ | |
105 conversion/dcm2mnc/progress.h \ | |
106 conversion/dcm2mnc/siemens_to_dicom.h \ | |
107 conversion/dcm2mnc/siemens_header_defs.h \ | |
108 conversion/dcm2mnc/siemens_header_table.h \ | |
109 conversion/dcm2mnc/spi_element_defs.h \ | |
110 conversion/dcm2mnc/string_to_filename.h \ | |
111 conversion/dcm2mnc/pms_element_defs.h \ | |
2367
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
112 conversion/dcm2mnc/gems_element_defs.h \ |
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
113 conversion/vff2mnc/vff2mnc.h |
2138 | 114 |
115 if ACR_NEMA_TOOLS | |
116 include_HEADERS += conversion/Acr_nema/acr_nema.h | |
117 | |
118 include_acr_nemadir = $(includedir)/acr_nema | |
119 | |
120 include_acr_nema_HEADERS = \ | |
121 conversion/Acr_nema/acr_nema/acr_io.h \ | |
122 conversion/Acr_nema/acr_nema/dicom_client_routines.h \ | |
123 conversion/Acr_nema/acr_nema/dicom_network.h \ | |
124 conversion/Acr_nema/acr_nema/element.h \ | |
125 conversion/Acr_nema/acr_nema/file_io.h \ | |
126 conversion/Acr_nema/acr_nema/group.h \ | |
127 conversion/Acr_nema/acr_nema/message.h \ | |
128 conversion/Acr_nema/acr_nema/value_repr.h | |
129 | |
130 else | |
131 # | |
132 # If not installing the full ACR/NEMA package, just add these headers to | |
133 # list of headers not to be installed. | |
134 # | |
135 noinst_HEADERS += \ | |
136 conversion/Acr_nema/acr_nema.h \ | |
137 conversion/Acr_nema/acr_nema/acr_io.h \ | |
138 conversion/Acr_nema/acr_nema/dicom_client_routines.h \ | |
139 conversion/Acr_nema/acr_nema/dicom_network.h \ | |
140 conversion/Acr_nema/acr_nema/element.h \ | |
141 conversion/Acr_nema/acr_nema/file_io.h \ | |
142 conversion/Acr_nema/acr_nema/group.h \ | |
143 conversion/Acr_nema/acr_nema/message.h \ | |
144 conversion/Acr_nema/acr_nema/value_repr.h | |
145 | |
146 endif | |
147 | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
148 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
149 # Libraries which must be built and installed. |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
150 # |
1763 | 151 lib_LTLIBRARIES = libminc2.la libvolume_io2.la |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
152 |
2138 | 153 # Conditionally install the libacr_nema.la library. It must always be |
154 # built even if it is not installed. | |
155 # | |
156 if ACR_NEMA_TOOLS | |
157 lib_LTLIBRARIES += libacr_nema.la | |
158 else | |
159 noinst_LTLIBRARIES = libacr_nema.la | |
160 endif | |
161 | |
2426
439a6b291a2c
* initial commits from Steve to remove warnings
rotor <rotor>
parents:
2423
diff
changeset
|
162 # Scripts we install: sh or perl. |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
163 # |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
164 dist_bin_SCRIPTS = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
165 progs/mincdiff/mincdiff \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
166 progs/mincedit/mincedit \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
167 progs/mincheader/mincheader \ |
1581 | 168 progs/minchistory/minchistory \ |
169 progs/mincpik/mincpik \ | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
170 progs/mincview/mincview |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
171 |
2382 | 172 # Scripts that we process (to add version #s) before install |
173 bin_SCRIPTS = progs/xfm/xfmflip | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
174 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
175 # Programs we build and install. |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
176 # |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
177 bin_PROGRAMS = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
178 voxeltoworld \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
179 worldtovoxel \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
180 minc_modify_header \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
181 mincaverage \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
182 minccalc \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
183 mincconcat \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
184 minccopy \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
185 mincexpand \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
186 mincextract \ |
1868 | 187 mincgen \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
188 mincinfo \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
189 minclookup \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
190 mincmakescalar \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
191 mincmakevector \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
192 mincmath \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
193 mincresample \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
194 mincreshape \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
195 mincstats \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
196 minctoraw \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
197 invert_raw_image \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
198 mincwindow \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
199 rawtominc \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
200 transformtags \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
201 xfmconcat \ |
1763 | 202 xfminvert \ |
203 mincconvert \ | |
1947
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
204 mincdump \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
205 ecattominc \ |
2055
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
206 minctoecat \ |
1947
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
207 mnc2nii \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
208 nii2mnc \ |
2138 | 209 upet2mnc \ |
2367
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
210 dcm2mnc \ |
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
211 vff2mnc |
2138 | 212 |
213 if ACR_NEMA_TOOLS | |
214 bin_PROGRAMS += \ | |
215 acr_test \ | |
216 dump_acr_nema \ | |
217 extract_acr_nema \ | |
218 read_acr_nema \ | |
219 dicom_test \ | |
2274
5a3779559fad
now building extract and byte_swap if building acr nema tools
jharlap <jharlap>
parents:
2266
diff
changeset
|
220 copy_acr_nema \ |
5a3779559fad
now building extract and byte_swap if building acr nema tools
jharlap <jharlap>
parents:
2266
diff
changeset
|
221 byte_swap \ |
5a3779559fad
now building extract and byte_swap if building acr nema tools
jharlap <jharlap>
parents:
2266
diff
changeset
|
222 extract |
2138 | 223 endif |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
224 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
225 noinst_PROGRAMS = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
226 mincexample1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
227 mincexample2 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
228 |
1763 | 229 LDADD = libvolume_io2.la libminc2.la |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
230 |
1894 | 231 EXTRA_DIST = GETTING_STARTED \ |
232 $(m4_files) \ | |
2382 | 233 progs/xfm/xfmflip.in \ |
1511 | 234 libsrc/strdup.c \ |
2138 | 235 epm-header.in \ |
1894 | 236 libsrc/config.h.msvc-win32 \ |
237 Makefile.msvc-win32 \ | |
2138 | 238 conversion/Acr_nema/dicom.txt \ |
2421 | 239 INSTALL.minc \ |
2407 | 240 CMakeLists.txt \ |
241 config.h.cmake \ | |
242 progs/CMakeLists.txt \ | |
243 conversion/CMakeLists.txt \ | |
244 cmake-modules/FindBISON.cmake \ | |
245 cmake-modules/FindFLEX.cmake \ | |
246 cmake-modules/FindHDF5.cmake \ | |
247 cmake-modules/FindMINC.cmake \ | |
248 cmake-modules/FindNETCDF.cmake | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
249 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
250 m4_files = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
251 m4/mni_REQUIRE_LIB.m4 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
252 m4/smr_WITH_BUILD_PATH.m4 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
253 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
254 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
255 voxeltoworld_SOURCES = progs/coordinates/voxeltoworld.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
256 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
257 worldtovoxel_SOURCES = progs/coordinates/worldtovoxel.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
258 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
259 minc_modify_header_SOURCES = progs/minc_modify_header/minc_modify_header.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
260 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
261 mincaverage_SOURCES = progs/mincaverage/mincaverage.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
262 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
263 minccalc_CFLAGS = -Iprogs/minccalc -I$(srcdir)/progs/minccalc |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
264 minccalc_SOURCES = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
265 progs/minccalc/minccalc.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
266 progs/minccalc/gram.y \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
267 progs/minccalc/eval.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
268 progs/minccalc/ident.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
269 progs/minccalc/lex.l \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
270 progs/minccalc/node.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
271 progs/minccalc/optim.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
272 progs/minccalc/scalar.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
273 progs/minccalc/sym.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
274 progs/minccalc/vector.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
275 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
276 mincconcat_SOURCES = progs/mincconcat/mincconcat.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
277 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
278 minccopy_SOURCES = progs/minccopy/minccopy.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
279 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
280 mincexample1_SOURCES = progs/mincexample/mincexample1.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
281 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
282 mincexample2_SOURCES = progs/mincexample/mincexample2.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
283 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
284 mincexpand_SOURCES = progs/mincexpand/mincexpand.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
285 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
286 mincextract_SOURCES = progs/mincextract/mincextract.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
287 |
1868 | 288 mincgen_SOURCES = \ |
289 progs/mincgen/escapes.c \ | |
290 progs/mincgen/genlib.c \ | |
291 progs/mincgen/getfill.c \ | |
292 progs/mincgen/init.c \ | |
293 progs/mincgen/load.c \ | |
294 progs/mincgen/main.c \ | |
295 progs/mincgen/ncgentab.y \ | |
296 progs/mincgen/ncgenyy.l | |
297 | |
298 | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
299 mincinfo_SOURCES = progs/mincinfo/mincinfo.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
300 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
301 minclookup_SOURCES = progs/minclookup/minclookup.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
302 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
303 mincmakescalar_SOURCES = progs/mincmakescalar/mincmakescalar.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
304 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
305 mincmakevector_SOURCES = progs/mincmakevector/mincmakevector.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
306 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
307 mincmath_SOURCES = progs/mincmath/mincmath.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
308 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
309 mincresample_SOURCES = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
310 progs/mincresample/mincresample.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
311 progs/mincresample/resample_volumes.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
312 progs/Proglib/convert_origin_to_start.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
313 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
314 mincreshape_SOURCES = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
315 progs/mincreshape/mincreshape.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
316 progs/mincreshape/copy_data.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
317 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
318 mincstats_SOURCES = progs/mincstats/mincstats.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
319 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
320 minctoraw_SOURCES = progs/minctoraw/minctoraw.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
321 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
322 invert_raw_image_SOURCES = progs/mincview/invert_raw_image.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
323 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
324 mincwindow_SOURCES = progs/mincwindow/mincwindow.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
325 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
326 rawtominc_SOURCES = \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
327 progs/rawtominc/rawtominc.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
328 progs/Proglib/convert_origin_to_start.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
329 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
330 transformtags_SOURCES = progs/xfm/transformtags.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
331 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
332 xfmconcat_SOURCES = progs/xfm/xfmconcat.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
333 |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
334 xfminvert_SOURCES = progs/xfm/xfminvert.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
335 |
1763 | 336 mincconvert_SOURCES = progs/mincconvert/mincconvert.c |
337 | |
338 mincdump_SOURCES = \ | |
339 progs/mincdump/mincdump.c \ | |
340 progs/mincdump/vardata.c \ | |
341 progs/mincdump/dumplib.c | |
342 | |
1947
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
343 ecattominc_SOURCES = \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
344 conversion/ecattominc/ecattominc.c \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
345 conversion/ecattominc/insertblood.c \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
346 conversion/ecattominc/ecat_file.c \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
347 conversion/ecattominc/machine_indep.c |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
348 |
2055
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
349 minctoecat_SOURCES = \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
350 conversion/minctoecat/minctoecat.c \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
351 conversion/minctoecat/ecat_write.c \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
352 conversion/minctoecat/machine_indep.c |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
353 |
1947
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
354 nii2mnc_SOURCES = \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
355 conversion/nifti1/nii2mnc.c \ |
2381
f53c551835c6
* added --debug to AM_YFLAGS for minccalc build (thanks Claude)
rotor <rotor>
parents:
2376
diff
changeset
|
356 conversion/nifti1/nifti1_io.c \ |
f53c551835c6
* added --debug to AM_YFLAGS for minccalc build (thanks Claude)
rotor <rotor>
parents:
2376
diff
changeset
|
357 conversion/nifti1/znzlib.c |
1947
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
358 |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
359 mnc2nii_SOURCES = \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
360 conversion/nifti1/mnc2nii.c \ |
2381
f53c551835c6
* added --debug to AM_YFLAGS for minccalc build (thanks Claude)
rotor <rotor>
parents:
2376
diff
changeset
|
361 conversion/nifti1/nifti1_io.c \ |
f53c551835c6
* added --debug to AM_YFLAGS for minccalc build (thanks Claude)
rotor <rotor>
parents:
2376
diff
changeset
|
362 conversion/nifti1/znzlib.c |
1947
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
363 |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
364 upet2mnc_SOURCES = \ |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
365 conversion/micropet/upet2mnc.c |
45a5d8d96de8
Add microPET, ECAT, and NIfTI-1 converters to the build
bert <bert>
parents:
1925
diff
changeset
|
366 |
2138 | 367 dcm2mnc_LDADD = libacr_nema.la $(LDADD) |
368 | |
369 dcm2mnc_SOURCES = \ | |
370 conversion/dcm2mnc/dcm2mnc.c \ | |
371 conversion/dcm2mnc/dicom_to_minc.c \ | |
372 conversion/dcm2mnc/siemens_to_dicom.c \ | |
373 conversion/dcm2mnc/dicom_read.c \ | |
374 conversion/dcm2mnc/minc_file.c \ | |
375 conversion/dcm2mnc/progress.c \ | |
376 conversion/dcm2mnc/string_to_filename.c | |
377 | |
2367
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
378 vff2mnc_SOURCES = \ |
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
379 conversion/vff2mnc/vff2mnc.c |
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
380 |
2138 | 381 acr_test_LDADD = libacr_nema.la |
382 | |
383 acr_test_SOURCES = conversion/Acr_nema/acr_test.c | |
384 | |
385 dump_acr_nema_LDADD = libacr_nema.la | |
386 | |
387 dump_acr_nema_SOURCES = conversion/Acr_nema/dump_acr_nema.c | |
388 | |
389 extract_acr_nema_LDADD = libacr_nema.la | |
390 | |
391 extract_acr_nema_SOURCES = conversion/Acr_nema/extract_acr_nema.c | |
392 | |
393 read_acr_nema_LDADD = libacr_nema.la | |
394 | |
395 read_acr_nema_SOURCES = conversion/Acr_nema/read_acr_nema.c | |
396 | |
397 dicom_test_LDADD = libacr_nema.la | |
398 | |
399 dicom_test_SOURCES = conversion/Acr_nema/dicom_test.c | |
400 | |
401 copy_acr_nema_LDADD = libacr_nema.la | |
402 | |
403 copy_acr_nema_SOURCES = conversion/Acr_nema/copy_acr_nema.c | |
404 | |
2274
5a3779559fad
now building extract and byte_swap if building acr nema tools
jharlap <jharlap>
parents:
2266
diff
changeset
|
405 extract_SOURCES = conversion/image_filters/extract.c |
5a3779559fad
now building extract and byte_swap if building acr nema tools
jharlap <jharlap>
parents:
2266
diff
changeset
|
406 byte_swap_SOURCES = conversion/image_filters/byte_swap.c |
2138 | 407 |
408 | |
2476 | 409 libminc2_la_LDFLAGS = -version-info 2:2:1 |
1763 | 410 libminc2_la_SOURCES = \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
411 libsrc/ParseArgv.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
412 libsrc/dim_conversion.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
413 libsrc/image_conversion.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
414 libsrc/minc_convenience.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
415 libsrc/minc_error.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
416 libsrc/nd_loop.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
417 libsrc/netcdf_convenience.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
418 libsrc/time_stamp.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
419 libsrc/value_conversion.c \ |
1763 | 420 libsrc/voxel_loop.c \ |
421 libsrc/hdf_convenience.c \ | |
422 libsrc/minc_compat.c \ | |
2189
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
423 libsrc/minc_simple.c |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
424 |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
425 if MINC2 |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
426 libminc2_la_SOURCES += \ |
1763 | 427 libsrc2/convert.c \ |
428 libsrc2/datatype.c \ | |
429 libsrc2/dimension.c \ | |
430 libsrc2/free.c \ | |
431 libsrc2/grpattr.c \ | |
432 libsrc2/hyper.c \ | |
433 libsrc2/label.c \ | |
434 libsrc2/m2util.c \ | |
435 libsrc2/record.c \ | |
436 libsrc2/slice.c \ | |
437 libsrc2/valid.c \ | |
438 libsrc2/volprops.c \ | |
439 libsrc2/volume.c | |
2189
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
440 else |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
441 EXTRA_DIST += \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
442 libsrc2/convert.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
443 libsrc2/datatype.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
444 libsrc2/dimension.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
445 libsrc2/free.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
446 libsrc2/grpattr.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
447 libsrc2/hyper.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
448 libsrc2/label.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
449 libsrc2/m2util.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
450 libsrc2/record.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
451 libsrc2/slice.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
452 libsrc2/valid.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
453 libsrc2/volprops.c \ |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
454 libsrc2/volume.c |
b6517dede232
Modify build system to allow selection of MINC 2 (HDF5/NetCDF) or MINC 1 (NetCDF only)
bert <bert>
parents:
2167
diff
changeset
|
455 endif |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
456 |
2476 | 457 libvolume_io2_la_LDFLAGS = -version-info 2:2:1 |
1763 | 458 libvolume_io2_la_SOURCES = \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
459 volume_io/Geometry/colour.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
460 volume_io/Geometry/colour_def.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
461 volume_io/Geometry/gaussian.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
462 volume_io/Geometry/inverse.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
463 volume_io/Geometry/newton.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
464 volume_io/Geometry/points.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
465 volume_io/Geometry/splines.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
466 volume_io/Geometry/tensors.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
467 volume_io/Geometry/transforms.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
468 volume_io/MNI_formats/gen_xf_io.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
469 volume_io/MNI_formats/gen_xfs.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
470 volume_io/MNI_formats/grid_transforms.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
471 volume_io/MNI_formats/mni_io.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
472 volume_io/MNI_formats/tag_points.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
473 volume_io/MNI_formats/thin_plate_spline.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
474 volume_io/Prog_utils/alloc.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
475 volume_io/Prog_utils/alloc_check.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
476 volume_io/Prog_utils/arrays.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
477 volume_io/Prog_utils/files.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
478 volume_io/Prog_utils/print.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
479 volume_io/Prog_utils/progress.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
480 volume_io/Prog_utils/string.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
481 volume_io/Prog_utils/time.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
482 volume_io/Volumes/evaluate.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
483 volume_io/Volumes/get_hyperslab.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
484 volume_io/Volumes/input_free.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
485 volume_io/Volumes/input_mnc.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
486 volume_io/Volumes/input_volume.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
487 volume_io/Volumes/multidim_arrays.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
488 volume_io/Volumes/output_mnc.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
489 volume_io/Volumes/output_volume.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
490 volume_io/Volumes/set_hyperslab.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
491 volume_io/Volumes/volume_cache.c \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
492 volume_io/Volumes/volumes.c |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
493 |
2138 | 494 libacr_nema_la_SOURCES = \ |
495 conversion/Acr_nema/acr_io.c \ | |
496 conversion/Acr_nema/dicom_client_routines.c \ | |
497 conversion/Acr_nema/dicom_network.c \ | |
498 conversion/Acr_nema/element.c \ | |
499 conversion/Acr_nema/file_io.c \ | |
500 conversion/Acr_nema/globals.c \ | |
501 conversion/Acr_nema/group.c \ | |
502 conversion/Acr_nema/message.c \ | |
503 conversion/Acr_nema/value_repr.c | |
504 | |
1581 | 505 # MAN pages go here. The "dist_" prefix signals that they files |
506 # are to be included in source distribution. | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
507 # |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
508 dist_man1_MANS = \ |
1505 | 509 progs/coordinates/voxeltoworld.man1 \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
510 progs/minc_modify_header/minc_modify_header.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
511 progs/mincaverage/mincaverage.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
512 progs/minccalc/minccalc.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
513 progs/mincconcat/mincconcat.man1 \ |
1505 | 514 progs/minccopy/minccopy.man1 \ |
515 progs/mincdiff/mincdiff.man1 \ | |
516 progs/mincedit/mincedit.man1 \ | |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
517 progs/mincexpand/mincexpand.man1 \ |
1505 | 518 progs/mincextract/mincextract.man1 \ |
1868 | 519 progs/mincgen/mincgen.man1 \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
520 progs/mincheader/mincheader.man1 \ |
2158 | 521 progs/minchistory/minchistory.man1 \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
522 progs/mincinfo/mincinfo.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
523 progs/minclookup/minclookup.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
524 progs/mincmakescalar/mincmakescalar.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
525 progs/mincmakevector/mincmakevector.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
526 progs/mincmath/mincmath.man1 \ |
1581 | 527 progs/mincpik/mincpik.man1 \ |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
528 progs/mincresample/mincresample.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
529 progs/mincreshape/mincreshape.man1 \ |
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
530 progs/mincstats/mincstats.man1 \ |
1505 | 531 progs/minctoraw/minctoraw.man1 \ |
532 progs/mincview/invert_raw_image.man1 \ | |
533 progs/mincview/mincview.man1 \ | |
534 progs/mincwindow/mincwindow.man1 \ | |
535 progs/rawtominc/rawtominc.man1 \ | |
536 progs/xfm/transformtags.man1 \ | |
537 progs/xfm/xfmconcat.man1 \ | |
1763 | 538 progs/xfm/xfminvert.man1 \ |
2386
9820d5a86b02
* changes for Claude for free in volume_io, added xfmflip,
rotor <rotor>
parents:
2382
diff
changeset
|
539 progs/xfm/xfmflip.man1 \ |
2055
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
540 progs/mincconvert/mincconvert.man1 \ |
f9fbad7a060f
Update Makefile.am to reflect new man pages, headers, and volume_io header organization
bert <bert>
parents:
1947
diff
changeset
|
541 conversion/ecattominc/ecattominc.man1 \ |
2138 | 542 conversion/minctoecat/minctoecat.man1 \ |
543 conversion/nifti1/nii2mnc.man1 \ | |
544 conversion/nifti1/mnc2nii.man1 \ | |
545 conversion/micropet/upet2mnc.man1 \ | |
2367
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
546 conversion/dcm2mnc/dcm2mnc.man1 \ |
8caaa54d84ec
Modified Makefile to build vff2mnc conversion utility
baghdadi <baghdadi>
parents:
2274
diff
changeset
|
547 conversion/vff2mnc/vff2mnc.man1 |
1504
c460bf395a07
Update build system to use automake and libtool.
stever <stever>
parents:
diff
changeset
|
548 |
1511 | 549 dist_man3_MANS = libsrc/ParseArgv.man3 |