File: Makefile.am

package info (click to toggle)
paintlib 2.6.2-14
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,920 kB
  • ctags: 3,874
  • sloc: cpp: 25,209; sh: 10,605; ansic: 1,891; makefile: 120
file content (27 lines) | stat: -rw-r--r-- 998 bytes parent folder | download | duplicates (2)
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

INCLUDES=-I$(top_srcdir)/common/ -I$(top_srcdir)/common/Filter

ALL_H = pltest.h pltester.h testfilterresizebilinear.h testpsddecoder.h \
        pltestdecoders.h pltestfilters.h pltestcountedpointer.h \
        pltestexif.h pltestpixelformat.h

ALL_CPP = pltester.cpp testfilterresizebilinear.cpp testpsddecoder.cpp \
          pltest.cpp pltestdecoders.cpp pltestfilters.cpp pltestcountedpointer.cpp \
          pltestexif.cpp pltestpixelformat.cpp

# Libraries to generate
# noinst_LTLIBRARIES = libfilter.la
# -no-undefinef needed for libtool for contruct dlls correctly with windows
# using cygwin tools.
# libfilter_la_LDGFLAGS = -no-undefined
# libfilter_la_SOURCES = $(ALL_CPP) $(ALL_H)

paintlibdir = $(includedir)/paintlib
testdir = $(paintlibdir)/test
test_HEADERS = $(ALL_H)

noinst_PROGRAMS=testpaintlib
testpaintlib_SOURCES=testpaintlib.cpp $(ALL_CPP) $(ALL_H)
# testpaintlib_CFLAGS=$(SYS_CFLAGS_LIBSDL)
testpaintlib_LDFLAGS= ../libcommon.la ../Filter/libfilter.la $(PAINTLIB_LIBS)