]> Creatis software - gdcm.git/blob - src/Makefile.am
updtae ChangeLog
[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    gdcmObject.cxx                  \
35    gdcmPatient.cxx                 \
36    gdcmStudy.cxx                   \
37    gdcmSerie.cxx                   \
38    gdcmImage.cxx
39
40
41 libgdcmincludedir = $(includedir)
42 libgdcminclude_HEADERS =                \
43         gdcmException.h                 \
44         gdcmHeader.h                    \
45         gdcmHeaderHelper.h              \
46         gdcmCommon.h                    \
47         gdcm.h                          \
48         gdcmDictSet.h                   \
49         gdcmDict.h                      \
50         gdcmDictEntry.h                 \
51         gdcmHeaderEntry.h               \
52         gdcmVR.h                        \
53         gdcmTS.h                        \
54         gdcmFile.h                      \
55         gdcmDicomDir.h                  \
56         gdcmObject.h                    \
57         gdcmPatient.h                   \
58         gdcmStudy.h                     \
59         gdcmSerie.h                     \
60         gdcmImage.h
61
62
63 EXTRA_DIST =   \
64         gdcmUtil.h      
65