]> Creatis software - gdcm.git/blob - src/Makefile.am
* src/gdcmUtil.[cxx|h] split in two. Additional file gdcmDebug.[cxx|h]
[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    gdcmHeader.cxx                  \
31    gdcmHeaderEntry.cxx             \
32    gdcmHeaderHelper.cxx            \
33    gdcmJpeg12.cxx                  \
34    gdcmJpeg2000.cxx                \
35    gdcmJpeg.cxx                    \
36    gdcmObject.cxx                  \
37    gdcmParsePixels.cxx             \
38    gdcmParser.cxx                  \
39    gdcmRLE.cxx                     \
40    gdcmTS.cxx                      \
41    gdcmUtil.cxx                    \
42    gdcmVR.cxx
43
44
45 libgdcmincludedir = $(includedir)
46 libgdcminclude_HEADERS =           \
47    gdcmCommon.h                    \
48    gdcmDebug.h                     \
49    gdcmDicomDir.h                  \
50    gdcmDicomDirElement.h           \
51    gdcmDicomDirImage.h             \
52    gdcmDicomDirMeta.h              \
53    gdcmDicomDirPatient.h           \
54    gdcmDicomDirSerie.h             \
55    gdcmDicomDirStudy.h             \
56    gdcmDictEntry.h                 \
57    gdcmDict.h                      \
58    gdcmDictSet.h                   \
59    gdcmDirList.h                   \
60    gdcmException.h                 \
61    gdcmFile.h                      \
62    gdcm.h                          \
63    gdcmHeaderEntry.h               \
64    gdcmHeader.h                    \
65    gdcmHeaderHelper.h              \
66    gdcmObject.h                    \
67    gdcmParser.h                    \
68    gdcmVR.h                        \
69    gdcmTS.h
70
71 EXTRA_DIST =   \
72         gdcmUtil.h
73