Differences between revisions 1 and 2
Revision 1 as of 2005-11-25 08:38:34
Size: 518
Editor: hoxide
Comment:
Revision 2 as of 2009-12-25 07:12:42
Size: 518
Editor: localhost
Comment: converted to 1.6 markup
No differences found!

CC = gcc
MFLAGS = `Wand-config --cflags --cppflags`
MLIBS = `Wand-config --ldflags --libs`

all: wand core

wand: wand.c
        $(CC) $(MFLAGS) wand.c $(MLIBS) -o wand
core: core.c
        $(CC) $(MFLAGS) wand.c $(MLIBS) -o core

mf: $(CFILE).c
#       if $CFILE then
        $(CC) $(MFLAGS) $(CFILE).c $(MLIBS) -o $(CFILE)
rimg: rimg.c
        $(CC) $(MFLAGS) rimg.c $(MLIBS) -o rimg

run-rimg: rimg 
        ./rimg t1.png rg1.png gb1.png br1.png   
        ./rimg t2.png rg2.png gb2.png br2.png
        ./rimg t3.png rg3.png gb3.png br3.png

ImageMagic/CAPI/Makefile (last edited 2009-12-25 07:12:42 by localhost)