]> Creatis software - gdcm.git/blob - src/Makefile.am
gdcmSequence renamed to gdcmSerie, to comply with Dicom documentation.
[gdcm.git] / src / Makefile.am
1 SUBDIRS = jpeg
2
3 LTVERSION = 0:1:0
4
5 lib_LTLIBRARIES = libgdcm.la
6
7 CXXFLAGS = @CXXFLAGS@ -DPUB_DICT_PATH=\"$(datadir)/gdcm/\" \
8            -D__STDC_LIMIT_MACROS  # Refer to stdint.h
9
10 libgdcm_la_LIBADD = \
11    $(top_builddir)/src/jpeg/libijg12/libgdcmijpeg12.la  \
12    $(top_builddir)/src/jpeg/libijg8/libgdcmijpeg8.la    \
13    $(top_builddir)/src/jpeg/ljpg/libgdcmjpg.la 
14
15 libgdcm_la_SOURCES=                \
16    gdcmException.cxx               \
17    gdcmUtil.cxx                    \
18    gdcmParser.cxx                  \
19    gdcmHeader.cxx                  \
20    gdcmHeaderHelper.cxx            \
21    gdcmHeaderEntry.cxx             \
22    gdcmDictEntry.cxx               \
23    gdcmDict.cxx                    \
24    gdcmDictSet.cxx                 \
25    gdcmFile.cxx                    \
26    gdcmVR.cxx                      \
27    gdcmTS.cxx                      \
28    gdcmJpeg.cxx                    \
29    gdcmJpeg12.cxx                  \
30    gdcmJpeg2000.cxx                \
31    gdcmRLE.cxx                     \
32    gdcmParsePixels.cxx             \
33    gdcmDICOMDIR.cxx                \
34    gdcmPatient.cxx                 \
35    gdcmStudy.cxx                   \
36    gdcmSerie.cxx                   \
37    gdcmImage.cxx
38
39
40 libgdcmincludedir = $(includedir)
41 libgdcminclude_HEADERS =                \
42         gdcmException.h                 \
43         gdcmHeader.h                    \
44         gdcmHeaderHelper.h              \
45         gdcmCommon.h                    \
46         gdcm.h                          \
47         gdcmDictSet.h                   \
48         gdcmDict.h                      \
49         gdcmDictEntry.h                 \
50         gdcmHeaderEntry.h               \
51         gdcmVR.h                        \
52         gdcmTS.h                        \
53         gdcmFile.h                      \
54         gdcmDICOMDIR.h                  \
55         gdcmObject.h                    \
56         gdcmPatient.h                   \
57         gdcmStudy.h                     \
58         gdcmSerie.h                     \
59         gdcmImage.h
60
61
62 EXTRA_DIST =   \
63         gdcmUtil.h      
64