]> Creatis software - gdcm.git/blob - vtk/Makefile.am
* vtk subdir added. Contains vtkGdcmReader.[cxx|h] a vtk class
[gdcm.git] / vtk / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 LIBS_VTK=-L/usr/lib/vtk \
3          -lvtkCommon -lvtkIO -lvtkFiltering -lvtkRendering -lvtkGraphics \
4          -lvtkImaging -lvtkpng -lvtkzlib -lvtkjpeg -lvtkexpat -lvtktiff \
5          -lvtkftgl -lvtkfreetype
6 INCLUDE_VTK=-I/usr/include/vtk
7
8 LIBS_X11= -L/usr/X11R6/lib -lX11 -lXt -lSM -lICE -lXext -lGL
9 ##   $(x_ldflags)    
10 ##   $(x_libs)      
11
12 INCLUDES =         \
13    -I.          \
14    -I$(top_srcdir)/src \
15    $(INCLUDE_VTK)
16
17 LDADD =              \
18    $(top_builddir)/src/libgdcm.la \
19    $(LIBS_VTK) \
20    $(LIBS_X11)
21
22 if BUILD_VTK
23 noinst_PROGRAMS = vtkgdcmdemo
24 vtkgdcmdemo_SOURCES = testvtkGdcmReader.cxx  vtkGdcmReader.cxx 
25
26 else
27 all:
28 endif
29
30