Last change
on this file since 2244 was
2244,
checked in by Sam Hocevar, 15 years ago
|
- Starting image resizing. X-wise resize works so far.
|
File size:
738 bytes
|
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 | lib_LTLIBRARIES = libpipi.la |
---|
14 | libpipi_la_SOURCES = \ |
---|
15 | pipi.c \ |
---|
16 | pipi.h \ |
---|
17 | pipi_internals.h \ |
---|
18 | io.c \ |
---|
19 | pixels.c \ |
---|
20 | resize.c \ |
---|
21 | $(NULL) |
---|
22 | libpipi_la_CFLAGS = $(CFLAGS_EXTRA) |
---|
23 | libpipi_la_LDFLAGS = $(LDFLAGS_EXTRA) \ |
---|
24 | -no-undefined -version-number @LT_VERSION@ |
---|
25 | |
---|
26 | if USE_SDL |
---|
27 | CFLAGS_EXTRA = `sdl-config --cflags` |
---|
28 | LDFLAGS_EXTRA = `sdl-config --libs` -lSDL_image |
---|
29 | else |
---|
30 | if USE_IMLIB2 |
---|
31 | CFLAGS_EXTRA = @IMLIB2_CFLAGS@ |
---|
32 | LDFLAGS_EXTRA = @IMLIB2_LIBS@ |
---|
33 | else |
---|
34 | if USE_OPENCV |
---|
35 | CFLAGS_EXTRA = `opencv-config --cflags` |
---|
36 | LDFLAGS_EXTRA = `opencv-config --libs opencv highgui` |
---|
37 | endif |
---|
38 | endif |
---|
39 | endif |
---|
40 | |
---|
Note: See
TracBrowser
for help on using the repository browser.