28 lines
660 B
Makefile
28 lines
660 B
Makefile
|
## Process this file with automake to produce Makefile.in
|
||
|
|
||
|
if BUILD_IMFFUZZTEST
|
||
|
check_PROGRAMS = IlmImfFuzzTest
|
||
|
endif
|
||
|
|
||
|
IlmImfFuzzTest_SOURCES = fuzzFile.cpp fuzzFile.h main.cpp tmpDir.h \
|
||
|
testFuzzScanLines.cpp testFuzzScanLines.h \
|
||
|
testFuzzDeepScanLines.cpp testFuzzDeepScanLines.h \
|
||
|
testFuzzDeepTiles.cpp testFuzzDeepTiles.h \
|
||
|
testFuzzTiles.cpp testFuzzTiles.h
|
||
|
|
||
|
|
||
|
INCLUDES = -I$(top_builddir) \
|
||
|
-I$(top_srcdir)/IlmImf \
|
||
|
-I$(top_srcdir)/config \
|
||
|
@ILMBASE_CXXFLAGS@
|
||
|
|
||
|
LDADD = -L$(top_builddir)/IlmImf \
|
||
|
@ILMBASE_LDFLAGS@ @ILMBASE_LIBS@ \
|
||
|
-lIlmImf -lz
|
||
|
|
||
|
if BUILD_IMFFUZZTEST
|
||
|
TESTS = IlmImfFuzzTest
|
||
|
endif
|
||
|
|
||
|
EXTRA_DIST = CMakeLists.txt
|