File: Makefile.am

package info (click to toggle)
openexr 1.2.2-4.3
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 15,508 kB
  • ctags: 3,410
  • sloc: cpp: 40,009; sh: 8,399; makefile: 345
file content (29 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
## Process this file with automake to produce Makefile.in

if BUILD_IMFEXAMPLES
noinst_PROGRAMS = imfexamples
endif

INCLUDES = -I$(top_builddir) -I$(top_srcdir)/Iex \
           -I$(top_srcdir)/Half -I$(top_srcdir)/Imath \
           -I$(top_srcdir)/IlmImf

LDADD = -L$(top_builddir)/Iex -L$(top_builddir)/Half \
	-L$(top_builddir)/Imath -L$(top_builddir)/IlmImf \
	-lIlmImf -lImath -lHalf -lIex -lz

imfexamples_SOURCES = main.cpp drawImage.cpp rgbaInterfaceExamples.cpp \
		      rgbaInterfaceTiledExamples.cpp \
		      generalInterfaceExamples.cpp \
		      lowLevelIoExamples.cpp previewImageExamples.cpp \
		      generalInterfaceTiledExamples.cpp \
	              generalInterfaceTiledExamples.h drawImage.h \
		      rgbaInterfaceExamples.h generalInterfaceExamples.h \
		      rgbaInterfaceTiledExamples.h \
		      lowLevelIoExamples.h previewImageExamples.h

examplesdir = $(datadir)/doc/OpenEXR-@OPENEXR_VERSION@/examples
examples_DATA = $(imfexamples_SOURCES)

imfexamplesdir = $(examplesdir)