Added new magic tools: Kalidescope, Glass Tile, Emboss, Metal Paint, Waves.

Began new magic tool: Flower.
This commit is contained in:
William Kendrick 2007-07-11 00:24:15 +00:00
parent c44cf54033
commit f8249b1e4d
9 changed files with 1067 additions and 25 deletions

View file

@ -25,7 +25,13 @@ all: negative.$(SO_TYPE) \
tint.$(SO_TYPE) \
smudge.$(SO_TYPE) \
cartoon.$(SO_TYPE) \
bricks.$(SO_TYPE)
bricks.$(SO_TYPE) \
kalidescope.$(SO_TYPE) \
glasstile.$(SO_TYPE) \
emboss.$(SO_TYPE) \
metalpaint.$(SO_TYPE) \
waves.$(SO_TYPE) \
flower.$(SO_TYPE)
install:
cd .. ; make install-magic-plugins
@ -87,4 +93,28 @@ bricks.$(SO_TYPE): src/bricks.c
@echo "Building Large Bricks and Small Bricks magic tools"
$(CC) $(CFLAGS) -shared -o $@ $<
kalidescope.$(SO_TYPE): src/kalidescope.c
@echo "Building Kalidescope magic tool"
$(CC) $(CFLAGS) -shared -o $@ $<
glasstile.$(SO_TYPE): src/glasstile.c
@echo "Building Glass Tile magic tool"
$(CC) $(CFLAGS) -shared -o $@ $<
emboss.$(SO_TYPE): src/emboss.c
@echo "Building Emboss magic tool"
$(CC) $(CFLAGS) -shared -o $@ $<
metalpaint.$(SO_TYPE): src/metalpaint.c
@echo "Building Metal Paint magic tool"
$(CC) $(CFLAGS) -shared -o $@ $<
waves.$(SO_TYPE): src/waves.c
@echo "Building Waves magic tool"
$(CC) $(CFLAGS) -shared -o $@ $<
flower.$(SO_TYPE): src/flower.c
@echo "Building Flower magic tool"
$(CC) $(CFLAGS) -shared -o $@ $<