You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

53 rivejä
947 B

  1. # $Id$
  2. EXTRA_DIST = pipi.pc.in
  3. DISTCLEANFILES = pipi.pc
  4. AM_CPPFLAGS = -I$(top_srcdir)
  5. pkgconfig_DATA = pipi.pc
  6. pkgconfigdir = $(libdir)/pkgconfig
  7. include_HEADERS = pipi.h
  8. # Conditional sources
  9. codec_cflags =
  10. codec_libs =
  11. codec_sources =
  12. # The main library
  13. lib_LTLIBRARIES = libpipi.la
  14. libpipi_la_SOURCES = \
  15. pipi.c \
  16. pipi.h \
  17. pipi_internals.h \
  18. pixels.c \
  19. codec.c \
  20. resize.c \
  21. dither.c \
  22. test.c \
  23. $(codec_sources) \
  24. $(NULL)
  25. libpipi_la_CFLAGS = $(codec_cflags)
  26. libpipi_la_LDFLAGS = $(codec_libs) \
  27. -no-undefined -version-number @LT_VERSION@
  28. if USE_SDL
  29. codec_cflags += `sdl-config --cflags`
  30. codec_libs += `sdl-config --libs` -lSDL_image
  31. codec_sources += codec/sdl.c
  32. endif
  33. if USE_IMLIB2
  34. codec_cflags += @IMLIB2_CFLAGS@
  35. codec_libs += @IMLIB2_LIBS@
  36. codec_sources += codec/imlib.c
  37. endif
  38. if USE_OPENCV
  39. codec_cflags += `opencv-config --cflags`
  40. codec_libs += `opencv-config --libs opencv highgui`
  41. codec_sources += codec/opencv.c
  42. endif