| Revision 2635,
944 bytes
checked in by sam, 5 years ago
(diff) |
- measure.c: started writing error/measure functions. First one is RMSD.
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | EXTRA_DIST = pipi.pc.in |
|---|
| 4 | DISTCLEANFILES = pipi.pc |
|---|
| 5 | |
|---|
| 6 | AM_CPPFLAGS = -I$(top_srcdir) |
|---|
| 7 | |
|---|
| 8 | pkgconfig_DATA = pipi.pc |
|---|
| 9 | pkgconfigdir = $(libdir)/pkgconfig |
|---|
| 10 | |
|---|
| 11 | include_HEADERS = pipi.h |
|---|
| 12 | |
|---|
| 13 | # Conditional sources |
|---|
| 14 | codec_cflags = |
|---|
| 15 | codec_libs = |
|---|
| 16 | codec_sources = |
|---|
| 17 | |
|---|
| 18 | # The main library |
|---|
| 19 | lib_LTLIBRARIES = libpipi.la |
|---|
| 20 | libpipi_la_SOURCES = \ |
|---|
| 21 | pipi.c \ |
|---|
| 22 | pipi.h \ |
|---|
| 23 | pipi_internals.h \ |
|---|
| 24 | pixels.c \ |
|---|
| 25 | codec.c \ |
|---|
| 26 | resize.c \ |
|---|
| 27 | dither.c \ |
|---|
| 28 | measure.c \ |
|---|
| 29 | test.c \ |
|---|
| 30 | $(codec_sources) \ |
|---|
| 31 | filter/blur.c \ |
|---|
| 32 | $(NULL) |
|---|
| 33 | libpipi_la_CFLAGS = $(codec_cflags) |
|---|
| 34 | libpipi_la_LDFLAGS = $(codec_libs) \ |
|---|
| 35 | -no-undefined -version-number @LT_VERSION@ |
|---|
| 36 | |
|---|
| 37 | if USE_SDL |
|---|
| 38 | codec_cflags += `sdl-config --cflags` |
|---|
| 39 | codec_libs += `sdl-config --libs` -lSDL_image |
|---|
| 40 | codec_sources += codec/sdl.c |
|---|
| 41 | endif |
|---|
| 42 | |
|---|
| 43 | if USE_IMLIB2 |
|---|
| 44 | codec_cflags += @IMLIB2_CFLAGS@ |
|---|
| 45 | codec_libs += @IMLIB2_LIBS@ |
|---|
| 46 | codec_sources += codec/imlib.c |
|---|
| 47 | endif |
|---|
| 48 | |
|---|
| 49 | if USE_OPENCV |
|---|
| 50 | codec_cflags += @OPENCV_CFLAGS@ |
|---|
| 51 | codec_libs += @OPENCV_LIBS@ |
|---|
| 52 | codec_sources += codec/opencv.c |
|---|
| 53 | endif |
|---|
| 54 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.