Added ripples magic.

Added (not finished) (new) sparkles magic.
Fixed printf localization bug in postscript printing.
Got Text tool working when Pango is used.
This commit is contained in:
William Kendrick 2007-07-18 20:13:08 +00:00
parent 0ed6e2fd30
commit c4b3e49215
7 changed files with 525 additions and 65 deletions

View file

@ -32,7 +32,9 @@ all: negative.$(SO_TYPE) \
metalpaint.$(SO_TYPE) \
waves.$(SO_TYPE) \
flower.$(SO_TYPE) \
foam.$(SO_TYPE)
foam.$(SO_TYPE) \
ripples.$(SO_TYPE) \
sparkles.$(SO_TYPE)
install:
cd .. ; make install-magic-plugins
@ -122,3 +124,11 @@ foam.$(SO_TYPE): src/foam.c
@echo "Building Foam magic tool"
@$(CC) $(CFLAGS) -shared -o $@ $<
ripples.$(SO_TYPE): src/ripples.c
@echo "Building Ripples magic tool"
@$(CC) $(CFLAGS) -shared -o $@ $<
sparkles.$(SO_TYPE): src/sparkles.c
@echo "Building Sparkles magic tool"
@$(CC) $(CFLAGS) -shared -o $@ $<