Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile.am 595 B

123456789101112131415161718
  1. ###############################################################################
  2. # Automake targets and declarations for libcaca test programs
  3. ###############################################################################
  4. noinst_PROGRAMS = dithering hsv optipal
  5. dithering_SOURCES = dithering.c
  6. dithering_LDADD = ../src/libcaca.a @CACA_LIBS@
  7. dithering_CPPFLAGS = -I$(top_srcdir)/src
  8. hsv_SOURCES = hsv.c
  9. hsv_LDADD = ../src/libcaca.a @CACA_LIBS@
  10. hsv_CPPFLAGS = -I$(top_srcdir)/src
  11. optipal_SOURCES = optipal.c
  12. optipal_LDADD = ../src/libcaca.a @CACA_LIBS@
  13. optipal_CPPFLAGS = -I$(top_srcdir)/src