X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FMakefile.am;h=d252f51bffd95a3eb2a61f54870fca8083e0e78a;hb=aba8714645174c0c7d3c7aadf6af1832743e2971;hp=ae54fef0bf5a795d27f15a5114ff52a9f68b99a0;hpb=953fdb8435f0957ba61cf9f0154ed0dc67d53981;p=gdcm.git diff --git a/src/Makefile.am b/src/Makefile.am index ae54fef0..d252f51b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,35 +1,52 @@ -# -# Targets -# - -# Before making a release, the LTVERSION string should be modified. -# The string is of the form C:R:A. -# - If interfaces have been changed or added, but binary compatibility has -# been preserved, change to C+1:0:A+1 -# - If binary compatibility has been broken (eg removed or changed interfaces) -# change to C+1:0:0 -# - If the interface is the same as the previous version, change to C:R+1:A +SUBDIRS = jpeg LTVERSION = 0:1:0 lib_LTLIBRARIES = libgdcm.la +CXXFLAGS = @CXXFLAGS@ -DPUB_DICT_PATH=\"$(datadir)/gdcm/\" \ + -D__STDC_LIMIT_MACROS # Refer to stdint.h + +libgdcm_la_LIBADD = \ + $(top_builddir)/src/jpeg/libijg12/libgdcmijpeg12.la \ + $(top_builddir)/src/jpeg/libijg8/libgdcmijpeg8.la \ + $(top_builddir)/src/jpeg/ljpg/libgdcmjpg.la + libgdcm_la_SOURCES= \ gdcmException.cxx \ gdcmUtil.cxx \ gdcmHeader.cxx \ + gdcmHeaderHelper.cxx \ gdcmElValue.cxx \ gdcmDictEntry.cxx \ gdcmDict.cxx \ gdcmDictSet.cxx \ gdcmElValSet.cxx \ - gdcmHeaderIdo.cxx \ - gdcmFile.cxx + gdcmFile.cxx \ + gdcmVR.cxx \ + gdcmTS.cxx \ + gdcmJpeg.cxx \ + gdcmJpeg12.cxx \ + gdcmJpeg2000.cxx \ + gdcmRLE.cxx \ + gdcmParse.cxx libgdcmincludedir = $(includedir) -libgdcminclude_HEADERS = \ - config.h \ - gdcm.h \ - gdcmException.h \ - gdcmIdo.h \ - gdcmUtil.h +libgdcminclude_HEADERS = \ + gdcmException.h \ + gdcmHeader.h \ + gdcmHeaderHelper.h \ + gdcmCommon.h \ + gdcm.h \ + gdcmDictSet.h \ + gdcmDict.h \ + gdcmDictEntry.h \ + gdcmElValue.h \ + gdcmElValSet.h \ + gdcmVR.h \ + gdcmTS.h \ + gdcmFile.h + +EXTRA_DIST = \ + gdcmUtil.h +