source: libpipi/trunk/examples/Makefile.am @ 2694

Last change on this file since 2694 was 2694, checked in by Sam Hocevar, 15 years ago
  • context.c: implement various dithering commands and Gaussian blur.
  • pipi.c: add "--blur" and "--dither" commandline options.
  • blur.c dither.c: remove these examples, pipi.c works a lot better:

pipi src.png --blur 10 dest.png
pipi src.png --dither dbs dest.png

(and of course combinations are possible)

File size: 364 bytes
Line 
1# $Id$
2
3AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/pipi
4
5bin_PROGRAMS = edd img2rubik sharpen floodfill
6
7edd_SOURCES = edd.c
8edd_LDADD = ../pipi/libpipi.la
9
10img2rubik_SOURCES = img2rubik.c
11img2rubik_LDADD = ../pipi/libpipi.la
12
13sharpen_SOURCES = sharpen.c
14sharpen_LDADD = ../pipi/libpipi.la
15
16floodfill_SOURCES = floodfill.c
17floodfill_LDADD = ../pipi/libpipi.la
18
Note: See TracBrowser for help on using the repository browser.