File: Makefile.am

package info (click to toggle)
libopenraw 0.0.9-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,060 kB
  • sloc: sh: 11,089; cpp: 9,341; ansic: 1,535; makefile: 565; xml: 507; perl: 42
file content (32 lines) | stat: -rw-r--r-- 745 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
30
31
32

TESTS = fileio ljpegtest testunpack extensions
TESTS_ENVIRONMENT =

OPENRAW_LIB = $(top_builddir)/lib/libopenraw.la

INCLUDES = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/lib

check_PROGRAMS = fileio ciffcontainertest ljpegtest testunpack\
	extensions

EXTRA_DIST = ljpegtest1.jpg

fileio_LDFLAGS = -L$(top_builddir)/lib/io
fileio_LDADD = -lio
fileio_SOURCES = fileio.t.c

extensions_SOURCES = extensions.cpp
extensions_LDFLAGS = -static $(OPENRAW_LIB)

ciffcontainertest_SOURCES = ciffcontainertest.cpp
ciffcontainertest_LDADD = $(OPENRAW_LIB)

ljpegtest_SOURCES = ljpegtest.cpp
ljpegtest_LDFLAGS = -static
ljpegtest_LDADD = $(OPENRAW_LIB)

testunpack_SOURCES = testunpack.cpp
testunpack_LDFLAGS = -static
testunpack_LDADD = $(OPENRAW_LIB)