]> Creatis software - gdcm.git/blob - src/Makefile.am
ENH: Refactor some code
[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    gdcmDebug.cxx                   \
17    gdcmDicomDir.cxx                \
18    gdcmDicomDirElement.cxx         \
19    gdcmDicomDirImage.cxx           \
20    gdcmDicomDirMeta.cxx            \
21    gdcmDicomDirPatient.cxx         \
22    gdcmDicomDirSerie.cxx           \
23    gdcmDicomDirStudy.cxx           \
24    gdcmDict.cxx                    \
25    gdcmDictEntry.cxx               \
26    gdcmDictSet.cxx                 \
27    gdcmDirList.cxx                 \
28    gdcmException.cxx               \
29    gdcmFile.cxx                    \
30    gdcmGlobal.cxx                  \
31    gdcmHeader.cxx                  \
32    gdcmHeaderEntry.cxx             \
33    gdcmHeaderHelper.cxx            \
34    gdcmJpeg12.cxx                  \
35    gdcmJpeg2000.cxx                \
36    gdcmJpeg.cxx                    \
37    gdcmObject.cxx                  \
38    gdcmParsePixels.cxx             \
39    gdcmParser.cxx                  \
40    gdcmRLE.cxx                     \
41    gdcmTS.cxx                      \
42    gdcmUtil.cxx                    \
43    gdcmVR.cxx
44
45
46 libgdcmincludedir = $(includedir)
47 libgdcminclude_HEADERS =           \
48    gdcmCommon.h                    \
49    gdcmDebug.h                     \
50    gdcmDicomDir.h                  \
51    gdcmDicomDirElement.h           \
52    gdcmDicomDirImage.h             \
53    gdcmDicomDirMeta.h              \
54    gdcmDicomDirPatient.h           \
55    gdcmDicomDirSerie.h             \
56    gdcmDicomDirStudy.h             \
57    gdcmDictEntry.h                 \
58    gdcmDict.h                      \
59    gdcmDictSet.h                   \
60    gdcmDirList.h                   \
61    gdcmException.h                 \
62    gdcmFile.h                      \
63    gdcmGlobal.h                    \
64    gdcm.h                          \
65    gdcmHeaderEntry.h               \
66    gdcmHeader.h                    \
67    gdcmHeaderHelper.h              \
68    gdcmObject.h                    \
69    gdcmParser.h                    \
70    gdcmVR.h                        \
71    gdcmTS.h
72
73 EXTRA_DIST =   \
74         gdcmUtil.h
75