PythonMagick-0.9.8/ 0000775 0000024 0000024 00000000000 12026354515 011115 5 0000000 0000000 PythonMagick-0.9.8/py-compile 0000755 0000024 0000024 00000007745 11146664706 013064 0000000 0000000 #!/bin/sh
# py-compile - Compile a Python program
scriptversion=2005-05-14.22
# Copyright (C) 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
# This file is maintained in Automake, please report
# bugs to or send patches to
# .
if [ -z "$PYTHON" ]; then
PYTHON=python
fi
basedir=
destdir=
files=
while test $# -ne 0; do
case "$1" in
--basedir)
basedir=$2
if test -z "$basedir"; then
echo "$0: Missing argument to --basedir." 1>&2
exit 1
fi
shift
;;
--destdir)
destdir=$2
if test -z "$destdir"; then
echo "$0: Missing argument to --destdir." 1>&2
exit 1
fi
shift
;;
-h|--h*)
cat <<\EOF
Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..."
Byte compile some python scripts FILES. Use --destdir to specify any
leading directory path to the FILES that you don't want to include in the
byte compiled file. Specify --basedir for any additional path information you
do want to be shown in the byte compiled file.
Example:
py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py
Report bugs to .
EOF
exit $?
;;
-v|--v*)
echo "py-compile $scriptversion"
exit $?
;;
*)
files="$files $1"
;;
esac
shift
done
if test -z "$files"; then
echo "$0: No files given. Try \`$0 --help' for more information." 1>&2
exit 1
fi
# if basedir was given, then it should be prepended to filenames before
# byte compilation.
if [ -z "$basedir" ]; then
pathtrans="path = file"
else
pathtrans="path = os.path.join('$basedir', file)"
fi
# if destdir was given, then it needs to be prepended to the filename to
# byte compile but not go into the compiled file.
if [ -z "$destdir" ]; then
filetrans="filepath = path"
else
filetrans="filepath = os.path.normpath('$destdir' + os.sep + path)"
fi
$PYTHON -c "
import sys, os, string, py_compile
files = '''$files'''
print 'Byte-compiling python modules...'
for file in string.split(files):
$pathtrans
$filetrans
if not os.path.exists(filepath) or not (len(filepath) >= 3
and filepath[-3:] == '.py'):
continue
print file,
sys.stdout.flush()
py_compile.compile(filepath, filepath + 'c', path)
print" || exit $?
# this will fail for python < 1.5, but that doesn't matter ...
$PYTHON -O -c "
import sys, os, string, py_compile
files = '''$files'''
print 'Byte-compiling python modules (optimized versions) ...'
for file in string.split(files):
$pathtrans
$filetrans
if not os.path.exists(filepath) or not (len(filepath) >= 3
and filepath[-3:] == '.py'):
continue
print file,
sys.stdout.flush()
py_compile.compile(filepath, filepath + 'o', path)
print" 2>/dev/null || :
# Local Variables:
# mode: shell-script
# sh-indentation: 2
# eval: (add-hook 'write-file-hooks 'time-stamp)
# time-stamp-start: "scriptversion="
# time-stamp-format: "%:y-%02m-%02d.%02H"
# time-stamp-end: "$"
# End:
PythonMagick-0.9.8/INSTALL 0000644 0000024 0000024 00000022450 11146664706 012077 0000000 0000000 Installation Instructions
*************************
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
2006, 2007 Free Software Foundation, Inc.
This file is free documentation; the Free Software Foundation gives
unlimited permission to copy, distribute and modify it.
Basic Installation
==================
Briefly, the shell commands `./configure; make; make install' should
configure, build, and install this package. The following
more-detailed instructions are generic; see the `README' file for
instructions specific to this package.
The `configure' shell script attempts to guess correct values for
various system-dependent variables used during compilation. It uses
those values to create a `Makefile' in each directory of the package.
It may also create one or more `.h' files containing system-dependent
definitions. Finally, it creates a shell script `config.status' that
you can run in the future to recreate the current configuration, and a
file `config.log' containing compiler output (useful mainly for
debugging `configure').
It can also use an optional file (typically called `config.cache'
and enabled with `--cache-file=config.cache' or simply `-C') that saves
the results of its tests to speed up reconfiguring. Caching is
disabled by default to prevent problems with accidental use of stale
cache files.
If you need to do unusual things to compile the package, please try
to figure out how `configure' could check whether to do them, and mail
diffs or instructions to the address given in the `README' so they can
be considered for the next release. If you are using the cache, and at
some point `config.cache' contains results you don't want to keep, you
may remove or edit it.
The file `configure.ac' (or `configure.in') is used to create
`configure' by a program called `autoconf'. You need `configure.ac' if
you want to change it or regenerate `configure' using a newer version
of `autoconf'.
The simplest way to compile this package is:
1. `cd' to the directory containing the package's source code and type
`./configure' to configure the package for your system.
Running `configure' might take a while. While running, it prints
some messages telling which features it is checking for.
2. Type `make' to compile the package.
3. Optionally, type `make check' to run any self-tests that come with
the package.
4. Type `make install' to install the programs and any data files and
documentation.
5. You can remove the program binaries and object files from the
source code directory by typing `make clean'. To also remove the
files that `configure' created (so you can compile the package for
a different kind of computer), type `make distclean'. There is
also a `make maintainer-clean' target, but that is intended mainly
for the package's developers. If you use it, you may have to get
all sorts of other programs in order to regenerate files that came
with the distribution.
6. Often, you can also type `make uninstall' to remove the installed
files again.
Compilers and Options
=====================
Some systems require unusual options for compilation or linking that the
`configure' script does not know about. Run `./configure --help' for
details on some of the pertinent environment variables.
You can give `configure' initial values for configuration parameters
by setting variables in the command line or in the environment. Here
is an example:
./configure CC=c99 CFLAGS=-g LIBS=-lposix
*Note Defining Variables::, for more details.
Compiling For Multiple Architectures
====================================
You can compile the package for more than one kind of computer at the
same time, by placing the object files for each architecture in their
own directory. To do this, you can use GNU `make'. `cd' to the
directory where you want the object files and executables to go and run
the `configure' script. `configure' automatically checks for the
source code in the directory that `configure' is in and in `..'.
With a non-GNU `make', it is safer to compile the package for one
architecture at a time in the source code directory. After you have
installed the package for one architecture, use `make distclean' before
reconfiguring for another architecture.
Installation Names
==================
By default, `make install' installs the package's commands under
`/usr/local/bin', include files under `/usr/local/include', etc. You
can specify an installation prefix other than `/usr/local' by giving
`configure' the option `--prefix=PREFIX'.
You can specify separate installation prefixes for
architecture-specific files and architecture-independent files. If you
pass the option `--exec-prefix=PREFIX' to `configure', the package uses
PREFIX as the prefix for installing programs and libraries.
Documentation and other data files still use the regular prefix.
In addition, if you use an unusual directory layout you can give
options like `--bindir=DIR' to specify different values for particular
kinds of files. Run `configure --help' for a list of the directories
you can set and what kinds of files go in them.
If the package supports it, you can cause programs to be installed
with an extra prefix or suffix on their names by giving `configure' the
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
Optional Features
=================
Some packages pay attention to `--enable-FEATURE' options to
`configure', where FEATURE indicates an optional part of the package.
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
is something like `gnu-as' or `x' (for the X Window System). The
`README' should mention any `--enable-' and `--with-' options that the
package recognizes.
For packages that use the X Window System, `configure' can usually
find the X include and library files automatically, but if it doesn't,
you can use the `configure' options `--x-includes=DIR' and
`--x-libraries=DIR' to specify their locations.
Specifying the System Type
==========================
There may be some features `configure' cannot figure out automatically,
but needs to determine by the type of machine the package will run on.
Usually, assuming the package is built to be run on the _same_
architectures, `configure' can figure that out, but if it prints a
message saying it cannot guess the machine type, give it the
`--build=TYPE' option. TYPE can either be a short name for the system
type, such as `sun4', or a canonical name which has the form:
CPU-COMPANY-SYSTEM
where SYSTEM can have one of these forms:
OS KERNEL-OS
See the file `config.sub' for the possible values of each field. If
`config.sub' isn't included in this package, then this package doesn't
need to know the machine type.
If you are _building_ compiler tools for cross-compiling, you should
use the option `--target=TYPE' to select the type of system they will
produce code for.
If you want to _use_ a cross compiler, that generates code for a
platform different from the build platform, you should specify the
"host" platform (i.e., that on which the generated programs will
eventually be run) with `--host=TYPE'.
Sharing Defaults
================
If you want to set default values for `configure' scripts to share, you
can create a site shell script called `config.site' that gives default
values for variables like `CC', `cache_file', and `prefix'.
`configure' looks for `PREFIX/share/config.site' if it exists, then
`PREFIX/etc/config.site' if it exists. Or, you can set the
`CONFIG_SITE' environment variable to the location of the site script.
A warning: not all `configure' scripts look for a site script.
Defining Variables
==================
Variables not defined in a site shell script can be set in the
environment passed to `configure'. However, some packages may run
configure again during the build, and the customized values of these
variables may be lost. In order to avoid this problem, you should set
them in the `configure' command line, using `VAR=value'. For example:
./configure CC=/usr/local2/bin/gcc
causes the specified `gcc' to be used as the C compiler (unless it is
overridden in the site shell script).
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
an Autoconf bug. Until the bug is fixed you can use this workaround:
CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
`configure' Invocation
======================
`configure' recognizes the following options to control how it operates.
`--help'
`-h'
Print a summary of the options to `configure', and exit.
`--version'
`-V'
Print the version of Autoconf used to generate the `configure'
script, and exit.
`--cache-file=FILE'
Enable the cache: use and save the results of the tests in FILE,
traditionally `config.cache'. FILE defaults to `/dev/null' to
disable caching.
`--config-cache'
`-C'
Alias for `--cache-file=config.cache'.
`--quiet'
`--silent'
`-q'
Do not print messages saying which checks are being made. To
suppress all normal output, redirect it to `/dev/null' (any error
messages will still be shown).
`--srcdir=DIR'
Look for the package's source code in directory DIR. Usually
`configure' can determine that directory automatically.
`configure' also accepts some other, not widely useful, options. Run
`configure --help' for more details.
PythonMagick-0.9.8/Makefile.in 0000664 0000024 0000024 00000104733 12026354502 013106 0000000 0000000 # Makefile.in generated by automake 1.12.2 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
am__make_dryrun = \
{ \
am__dry=no; \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
*) \
for am__flg in $$MAKEFLAGS; do \
case $$am__flg in \
*=*|--*) ;; \
*n*) am__dry=yes; break;; \
esac; \
done;; \
esac; \
test $$am__dry = yes; \
}
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
subdir = .
DIST_COMMON = README $(am__configure_deps) $(pymagickexec_PYTHON) \
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
$(top_srcdir)/config/config.guess \
$(top_srcdir)/config/config.h.in \
$(top_srcdir)/config/config.sub $(top_srcdir)/config/depcomp \
$(top_srcdir)/config/install-sh $(top_srcdir)/config/ltmain.sh \
$(top_srcdir)/config/missing $(top_srcdir)/config/py-compile \
$(top_srcdir)/configure ChangeLog INSTALL config/config.guess \
config/config.sub config/depcomp config/install-sh \
config/ltmain.sh config/missing config/py-compile py-compile
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_boost_base.m4 \
$(top_srcdir)/m4/ax_boost_python.m4 \
$(top_srcdir)/m4/ax_python.m4 $(top_srcdir)/m4/libtool.m4 \
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && rm -f $$files; }; \
}
am__installdirs = "$(DESTDIR)$(pymagickexecdir)" \
"$(DESTDIR)$(pymagickexecdir)"
LTLIBRARIES = $(pymagickexec_LTLIBRARIES)
am__DEPENDENCIES_1 =
_PythonMagick_la_DEPENDENCIES = pythonmagick_src/libpymagick.la \
helpers_src/libhelper.la $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
am__PythonMagick_la_OBJECTS =
_PythonMagick_la_OBJECTS = $(am__PythonMagick_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
_PythonMagick_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(AM_CXXFLAGS) $(CXXFLAGS) $(_PythonMagick_la_LDFLAGS) \
$(LDFLAGS) -o $@
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CXXFLAGS) $(CXXFLAGS)
AM_V_CXX = $(am__v_CXX_@AM_V@)
am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
am__v_CXX_0 = @echo " CXX " $@;
am__v_CXX_1 =
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
am__v_CXXLD_0 = @echo " CXXLD " $@;
am__v_CXXLD_1 =
SOURCES = $(_PythonMagick_la_SOURCES) \
$(nodist_EXTRA__PythonMagick_la_SOURCES)
DIST_SOURCES = $(_PythonMagick_la_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
install-dvi-recursive install-exec-recursive \
install-html-recursive install-info-recursive \
install-pdf-recursive install-ps-recursive install-recursive \
installcheck-recursive installdirs-recursive pdf-recursive \
ps-recursive uninstall-recursive
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile)
py_compile = $(top_srcdir)/config/py-compile
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
cscope distdir dist dist-all distcheck
ETAGS = etags
CTAGS = ctags
CSCOPE = cscope
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
if test -d "$(distdir)"; then \
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -rf "$(distdir)" \
|| { sleep 5 && rm -rf "$(distdir)"; }; \
else :; fi
am__post_remove_distdir = $(am__remove_distdir)
am__relativize = \
dir0=`pwd`; \
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
sed_rest='s,^[^/]*/*,,'; \
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
sed_butlast='s,/*[^/]*$$,,'; \
while test -n "$$dir1"; do \
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
if test "$$first" != "."; then \
if test "$$first" = ".."; then \
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
else \
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
if test "$$first2" = "$$first"; then \
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
else \
dir2="../$$dir2"; \
fi; \
dir0="$$dir0"/"$$first"; \
fi; \
fi; \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 $(distdir).tar.lz \
$(distdir).tar.xz $(distdir).zip
GZIP_ENV = --best
DIST_TARGETS = dist-lzip dist-xz dist-bzip2 dist-gzip dist-zip
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BOOST_CPPFLAGS = @BOOST_CPPFLAGS@
BOOST_LDFLAGS = @BOOST_LDFLAGS@
BOOST_PYTHON_LIB = @BOOST_PYTHON_LIB@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAGICKCORE_CFLAGS = @MAGICKCORE_CFLAGS@
MAGICKCORE_LIBS = @MAGICKCORE_LIBS@
MAGICKPP_CFLAGS = @MAGICKPP_CFLAGS@
MAGICKPP_LIBS = @MAGICKPP_LIBS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
PYTHON = @PYTHON@
PYTHON_BIN = @PYTHON_BIN@
PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
PYTHON_INCLUDE_DIR = @PYTHON_INCLUDE_DIR@
PYTHON_LIB = @PYTHON_LIB@
PYTHON_PLATFORM = @PYTHON_PLATFORM@
PYTHON_PREFIX = @PYTHON_PREFIX@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
pkgpyexecdir = @pkgpyexecdir@
pkgpythondir = @pkgpythondir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
pyexecdir = @pyexecdir@
pythondir = @pythondir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
topincludedir = @includedir@
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir)
ACLOCAL_AMFLAGS = -I m4
# Library built from two directories
SUBDIRS = pythonmagick_src helpers_src
# where to put the bastard
pymagickexecdir = $(pyexecdir)/$(PACKAGE_NAME)
# name of our library
pymagickexec_LTLIBRARIES = _PythonMagick.la
# the python initalization code
pymagickexec_PYTHON = PythonMagick/__init__.py
# EMPTY! we dont have any sources at top level
_PythonMagick_la_SOURCES =
# A dummy to tell that we are building c++
nodist_EXTRA__PythonMagick_la_SOURCES = dummy.cpp
# Flags are always good to have
_PythonMagick_la_LDFLAGS = -avoid-version -module $(BOOST_LDFLAGS)
# And the libraries to include
_PythonMagick_la_LIBADD = pythonmagick_src/libpymagick.la helpers_src/libhelper.la $(BOOST_LDFLAGS) -lboost_python $(MAGICKPP_LIBS) $(MAGICK_LIBS) -l$(PYTHON_LIB)
EXTRA_DIST = autogen.pl SConstruct pyste_src LICENSE
# Automatically reconfigure libtool
LIBTOOL_DEPS = @LIBTOOL_DEPS@
all: all-recursive
.SUFFIXES:
.SUFFIXES: .cpp .lo .o .obj
am--refresh: Makefile
@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
config/config.h: config/stamp-h1
@if test ! -f $@; then rm -f config/stamp-h1; else :; fi
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) config/stamp-h1; else :; fi
config/stamp-h1: $(top_srcdir)/config/config.h.in $(top_builddir)/config.status
@rm -f config/stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status config/config.h
$(top_srcdir)/config/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f config/stamp-h1
touch $@
distclean-hdr:
-rm -f config/config.h config/stamp-h1
install-pymagickexecLTLIBRARIES: $(pymagickexec_LTLIBRARIES)
@$(NORMAL_INSTALL)
@list='$(pymagickexec_LTLIBRARIES)'; test -n "$(pymagickexecdir)" || list=; \
list2=; for p in $$list; do \
if test -f $$p; then \
list2="$$list2 $$p"; \
else :; fi; \
done; \
test -z "$$list2" || { \
echo " $(MKDIR_P) '$(DESTDIR)$(pymagickexecdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(pymagickexecdir)" || exit 1; \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pymagickexecdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pymagickexecdir)"; \
}
uninstall-pymagickexecLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(pymagickexec_LTLIBRARIES)'; test -n "$(pymagickexecdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pymagickexecdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pymagickexecdir)/$$f"; \
done
clean-pymagickexecLTLIBRARIES:
-test -z "$(pymagickexec_LTLIBRARIES)" || rm -f $(pymagickexec_LTLIBRARIES)
@list='$(pymagickexec_LTLIBRARIES)'; \
locs=`for p in $$list; do echo $$p; done | \
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
sort -u`; \
test -z "$$locs" || { \
echo rm -f $${locs}; \
rm -f $${locs}; \
}
_PythonMagick.la: $(_PythonMagick_la_OBJECTS) $(_PythonMagick_la_DEPENDENCIES) $(EXTRA__PythonMagick_la_DEPENDENCIES)
$(AM_V_CXXLD)$(_PythonMagick_la_LINK) -rpath $(pymagickexecdir) $(_PythonMagick_la_OBJECTS) $(_PythonMagick_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dummy.Plo@am__quote@
.cpp.o:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
.cpp.obj:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cpp.lo:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
distclean-libtool:
-rm -f libtool config.lt
install-pymagickexecPYTHON: $(pymagickexec_PYTHON)
@$(NORMAL_INSTALL)
@list='$(pymagickexec_PYTHON)'; dlist=; list2=; test -n "$(pymagickexecdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(pymagickexecdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(pymagickexecdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \
if test -f $$b$$p; then \
$(am__strip_dir) \
dlist="$$dlist $$f"; \
list2="$$list2 $$b$$p"; \
else :; fi; \
done; \
for file in $$list2; do echo $$file; done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pymagickexecdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(pymagickexecdir)" || exit $$?; \
done || exit $$?; \
if test -n "$$dlist"; then \
$(am__py_compile) --destdir "$(DESTDIR)" \
--basedir "$(pymagickexecdir)" $$dlist; \
else :; fi
uninstall-pymagickexecPYTHON:
@$(NORMAL_UNINSTALL)
@list='$(pymagickexec_PYTHON)'; test -n "$(pymagickexecdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
dir='$(DESTDIR)$(pymagickexecdir)'; \
filesc=`echo "$$files" | sed 's|$$|c|'`; \
fileso=`echo "$$files" | sed 's|$$|o|'`; \
st=0; \
for files in "$$files" "$$filesc" "$$fileso"; do \
$(am__uninstall_files_from_dir) || st=$$?; \
done; \
exit $$st
# This directory's subdirectories are mostly independent; you can cd
# into them and run 'make' without going through this Makefile.
# To change the values of 'make' variables: instead of editing Makefiles,
# (1) if the variable is set in 'config.status', edit 'config.status'
# (which will cause the Makefiles to be regenerated when you run 'make');
# (2) otherwise, pass the desired values on the 'make' command line.
$(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
@fail= failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
case "$@" in \
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
*) list='$(SUBDIRS)' ;; \
esac; \
for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
tags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
done
ctags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
done
cscopelist-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) cscopelist); \
done
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
include_option=--etags-include; \
empty_fix=.; \
else \
include_option=--include; \
empty_fix=; \
fi; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test ! -f $$subdir/TAGS || \
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscope: cscope.files
test ! -s cscope.files \
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
clean-cscope:
-rm -f cscope.files
cscope.files: clean-cscope cscopelist-recursive cscopelist
cscopelist: cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
distdir: $(DISTFILES)
$(am__remove_distdir)
test -d "$(distdir)" || mkdir "$(distdir)"
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
$(am__make_dryrun) \
|| test -d "$(distdir)/$$subdir" \
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|| exit 1; \
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
$(am__relativize); \
new_distdir=$$reldir; \
dir1=$$subdir; dir2="$(top_distdir)"; \
$(am__relativize); \
new_top_distdir=$$reldir; \
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
($(am__cd) $$subdir && \
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$$new_top_distdir" \
distdir="$$new_distdir" \
am__remove_distdir=: \
am__skip_length_check=: \
am__skip_mode_fix=: \
distdir) \
|| exit 1; \
fi; \
done
-test -n "$(am__skip_mode_fix)" \
|| find "$(distdir)" -type d ! -perm -755 \
-exec chmod u+rwx,go+rx {} \; -o \
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
$(am__post_remove_distdir)
dist-lzip: distdir
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
$(am__post_remove_distdir)
dist-xz: distdir
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
$(am__post_remove_distdir)
dist-tarZ: distdir
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
$(am__post_remove_distdir)
dist-shar: distdir
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
-rm -f $(distdir).zip
zip -rq $(distdir).zip $(distdir)
$(am__post_remove_distdir)
dist dist-all:
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
$(am__post_remove_distdir)
# This target untars the dist file and tries a VPATH configuration. Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
*.tar.xz*) \
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
esac
chmod -R a-w $(distdir); chmod u+w $(distdir)
mkdir $(distdir)/_build
mkdir $(distdir)/_inst
chmod a-w $(distdir)
test -d $(distdir)/_build || exit 0; \
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
&& am__cwd=`pwd` \
&& $(am__cd) $(distdir)/_build \
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
$(DISTCHECK_CONFIGURE_FLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
&& $(MAKE) $(AM_MAKEFLAGS) check \
&& $(MAKE) $(AM_MAKEFLAGS) install \
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
distuninstallcheck \
&& chmod -R a-w "$$dc_install_base" \
&& ({ \
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
} || { rm -rf "$$dc_destdir"; exit 1; }) \
&& rm -rf "$$dc_destdir" \
&& $(MAKE) $(AM_MAKEFLAGS) dist \
&& rm -rf $(DIST_ARCHIVES) \
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
&& cd "$$am__cwd" \
|| exit 1
$(am__post_remove_distdir)
@(echo "$(distdir) archives ready for distribution: "; \
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
@test -n '$(distuninstallcheck_dir)' || { \
echo 'ERROR: trying to run $@ with an empty' \
'$$(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
$(am__cd) '$(distuninstallcheck_dir)' || { \
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left after uninstall:" ; \
if test -n "$(DESTDIR)"; then \
echo " (check DESTDIR support)"; \
fi ; \
$(distuninstallcheck_listfiles) ; \
exit 1; } >&2
distcleancheck: distclean
@if test '$(srcdir)' = . ; then \
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
exit 1 ; \
fi
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left in build directory after distclean:" ; \
$(distcleancheck_listfiles) ; \
exit 1; } >&2
check-am: all-am
check: check-recursive
all-am: Makefile $(LTLIBRARIES)
installdirs: installdirs-recursive
installdirs-am:
for dir in "$(DESTDIR)$(pymagickexecdir)" "$(DESTDIR)$(pymagickexecdir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-recursive
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-recursive
clean-am: clean-generic clean-libtool clean-pymagickexecLTLIBRARIES \
mostlyclean-am
distclean: distclean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-hdr distclean-libtool distclean-tags
dvi: dvi-recursive
dvi-am:
html: html-recursive
html-am:
info: info-recursive
info-am:
install-data-am:
install-dvi: install-dvi-recursive
install-dvi-am:
install-exec-am: install-pymagickexecLTLIBRARIES \
install-pymagickexecPYTHON
install-html: install-html-recursive
install-html-am:
install-info: install-info-recursive
install-info-am:
install-man:
install-pdf: install-pdf-recursive
install-pdf-am:
install-ps: install-ps-recursive
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-recursive
pdf-am:
ps: ps-recursive
ps-am:
uninstall-am: uninstall-pymagickexecLTLIBRARIES \
uninstall-pymagickexecPYTHON
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) \
cscopelist-recursive ctags-recursive install-am install-strip \
tags-recursive
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
all all-am am--refresh check check-am clean clean-cscope \
clean-generic clean-libtool clean-pymagickexecLTLIBRARIES \
cscope cscopelist cscopelist-recursive ctags ctags-recursive \
dist dist-all dist-bzip2 dist-gzip dist-lzip dist-shar \
dist-tarZ dist-xz dist-zip distcheck distclean \
distclean-compile distclean-generic distclean-hdr \
distclean-libtool distclean-tags distcleancheck distdir \
distuninstallcheck dvi dvi-am html html-am info info-am \
install install-am install-data install-data-am install-dvi \
install-dvi-am install-exec install-exec-am install-html \
install-html-am install-info install-info-am install-man \
install-pdf install-pdf-am install-ps install-ps-am \
install-pymagickexecLTLIBRARIES install-pymagickexecPYTHON \
install-strip installcheck installcheck-am installdirs \
installdirs-am maintainer-clean maintainer-clean-generic \
mostlyclean mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
uninstall uninstall-am uninstall-pymagickexecLTLIBRARIES \
uninstall-pymagickexecPYTHON
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
PythonMagick-0.9.8/SConstruct 0000644 0000024 0000024 00000005343 11146664706 013102 0000000 0000000 # vim: filetype=python
import os, re, sys
if sys.platform=='win32':
# Windows
BOOST=r'f:\boost_root'
BOOSTLIBPATH=r'f:\boost_root\lib'
IM_INCLUDE_PATH=[r'C:\ImageMagick-6.2.4-windows-source\ImageMagick-6.2.4',r'E:\ImageMagick-6.2.4-windows-source\ImageMagick-6.2.4\Magick++\lib']
IM_LIB_PATH=r'C:\ImageMagick-6.2.4-windows-source\ImageMagick-6.2.4\VisualMagick\lib'
GD_LIBS=[i for i in os.listdir(IM_LIB_PATH) if i.endswith('.lib')]+['user32.lib','ws2_32.lib','ole32.lib','gdi32.lib','oleaut32.lib','Advapi32.lib']#['CORE_RL_magick_','CORE_RL_Magick++_']
PYTHON_INCLUDE='F:\Python24\include'
BOOST_PYTHON_LIB=['libboost_python-vc71-mt.lib']
CPP_FLAGS=['/EHsc','/MD','/GR','-DWIN32','-DNeedFunctionPrototypes','-D_LIB','-D_VISUALC_','-DBOOST_PYTHON_STATIC_LIB']
else:
# Linux
BOOST='/usr/local/include/boost-1_32/'
BOOSTLIBPATH='/usr/local/lib/'
IM_INCLUDE_PATH=['/usr/include']
IM_LIB_PATH='/usr/lib/'
GD_LIBS=['Magick','Magick++','Wand']
PYTHON_INCLUDE='/usr/include/python2.4'
BOOST_PYTHON_LIB=['libboost_python-gcc']
CPP_FLAGS=['-DBOOST_PYTHON_STATIC_LIB','-O2']
# setup the environment
env=Environment(
LIBPATH=['./',BOOSTLIBPATH, IM_LIB_PATH],
CPPPATH=[BOOST, PYTHON_INCLUDE] + IM_INCLUDE_PATH,
RPATH=['./',BOOSTLIBPATH],
CPPFLAGS=CPP_FLAGS
)
def fix_includes(target,source,env):
for t in target:
code=file(str(t)).read()
code=re.sub(r'#include <.*?(Magick\+\+/.*?\.h)>',r'#include <\1>',code)
code=re.sub(r'#include <(.*?helpers_src.*?\.h)>',r'#include "../\1"',code)
file(str(t),'w').write(code)
# setup pyste builder
def pyste_emitter(target,source,env):
sources = ['pyste_src/%s' % s for s in source]
targets = ['pythonmagick_src/_%s.cpp' % t for t in target]
return (targets,sources)
env['BUILDERS']['Pyste'] = Builder(action = ['pyste.py --module=_PythonMagick --multiple --out=./pythonmagick_src -I %s $SOURCE' % IM_INCLUDE_PATH, fix_includes],
emitter=pyste_emitter)
# default is not to run pyste
if ARGUMENTS.get('pyste')=='yes':
PYSTE_FILES=[f for f in os.listdir('pyste_src') if f.endswith('.pyste')]
os.system('pyste.py --module=_PythonMagick --multiple --generate-main --out=./pythonmagick_src -I %s %s' % (
IM_INCLUDE_PATH,' '.join(['pyste_src/%s' % f for f in PYSTE_FILES]))
)
for item in PYSTE_FILES:
env.Pyste(item)
# build the module
PM_FILES=['pythonmagick_src/%s'%f for f in os.listdir('pythonmagick_src') if f.endswith('.cpp')]
HELPER_FILES=['helpers_src/%s'%f for f in os.listdir('helpers_src') if f.endswith('.cpp')]
env.SharedLibrary(
target='PythonMagick/_PythonMagick',
source=PM_FILES+HELPER_FILES,
SHLIBPREFIX='',
LIBS=BOOST_PYTHON_LIB+GD_LIBS
)
PythonMagick-0.9.8/PythonMagick/ 0000775 0000024 0000024 00000000000 12026354513 013510 5 0000000 0000000 PythonMagick-0.9.8/PythonMagick/__init__.py 0000644 0000024 0000024 00000013137 11710060032 015531 0000000 0000000 from . import _PythonMagick
class Image(_PythonMagick.Image):
pass
class Blob(_PythonMagick.Blob):
def __init__(self,*args):
if len(args)==1 and type(args[0])==type(''):
_PythonMagick.Blob.__init__(self)
self.update(args[0])
else:
_PythonMagick.Blob.__init__(self,*args)
data=property(_PythonMagick.get_blob_data,_PythonMagick.Blob.update)
class Color(_PythonMagick.Color):
pass
class CompositeOperator(_PythonMagick.CompositeOperator):
pass
class CompressionType(_PythonMagick.CompressionType):
pass
class Coordinate(_PythonMagick.Coordinate):
pass
class DecorationType(_PythonMagick.DecorationType):
pass
class DrawableAffine(_PythonMagick.DrawableAffine):
pass
class DrawableArc(_PythonMagick.DrawableArc):
pass
class DrawableBezier(_PythonMagick.DrawableBezier):
pass
class DrawableCircle(_PythonMagick.DrawableCircle):
pass
class DrawableClipPath(_PythonMagick.DrawableClipPath):
pass
class DrawableColor(_PythonMagick.DrawableColor):
pass
class DrawableCompositeImage(_PythonMagick.DrawableCompositeImage):
pass
class DrawableDashArray(_PythonMagick.DrawableDashArray):
pass
class DrawableDashOffset(_PythonMagick.DrawableDashOffset):
pass
class DrawableEllipse(_PythonMagick.DrawableEllipse):
pass
class DrawableFillColor(_PythonMagick.DrawableFillColor):
pass
class DrawableFillOpacity(_PythonMagick.DrawableFillOpacity):
pass
class DrawableFillRule(_PythonMagick.DrawableFillRule):
pass
class DrawableFont(_PythonMagick.DrawableFont):
pass
class DrawableGravity(_PythonMagick.DrawableGravity):
pass
class DrawableLine(_PythonMagick.DrawableLine):
pass
class DrawableMatte(_PythonMagick.DrawableMatte):
pass
class DrawableMiterLimit(_PythonMagick.DrawableMiterLimit):
pass
class DrawablePath(_PythonMagick.DrawablePath):
pass
class DrawablePoint(_PythonMagick.DrawablePoint):
pass
class DrawablePointSize(_PythonMagick.DrawablePointSize):
pass
class DrawablePolygon(_PythonMagick.DrawablePolygon):
pass
class DrawablePolyline(_PythonMagick.DrawablePolyline):
pass
class DrawablePopClipPath(_PythonMagick.DrawablePopClipPath):
pass
class DrawablePopGraphicContext(_PythonMagick.DrawablePopGraphicContext):
pass
class DrawablePopPattern(_PythonMagick.DrawablePopPattern):
pass
class DrawablePushClipPath(_PythonMagick.DrawablePushClipPath):
pass
class DrawablePushGraphicContext(_PythonMagick.DrawablePushGraphicContext):
pass
class DrawablePushPattern(_PythonMagick.DrawablePushPattern):
pass
class DrawableRectangle(_PythonMagick.DrawableRectangle):
pass
class DrawableRotation(_PythonMagick.DrawableRotation):
pass
class DrawableRoundRectangle(_PythonMagick.DrawableRoundRectangle):
pass
class DrawableScaling(_PythonMagick.DrawableScaling):
pass
class DrawableSkewX(_PythonMagick.DrawableSkewX):
pass
class DrawableSkewY(_PythonMagick.DrawableSkewY):
pass
class DrawableStrokeAntialias(_PythonMagick.DrawableStrokeAntialias):
pass
class DrawableStrokeColor(_PythonMagick.DrawableStrokeColor):
pass
class DrawableStrokeLineCap(_PythonMagick.DrawableStrokeLineCap):
pass
class DrawableStrokeLineJoin(_PythonMagick.DrawableStrokeLineJoin):
pass
class DrawableStrokeOpacity(_PythonMagick.DrawableStrokeOpacity):
pass
class DrawableStrokeWidth(_PythonMagick.DrawableStrokeWidth):
pass
class DrawableText(_PythonMagick.DrawableText):
pass
class DrawableTextAntialias(_PythonMagick.DrawableTextAntialias):
pass
class DrawableTextDecoration(_PythonMagick.DrawableTextDecoration):
pass
class DrawableTextUnderColor(_PythonMagick.DrawableTextUnderColor):
pass
class DrawableTranslation(_PythonMagick.DrawableTranslation):
pass
class DrawableViewbox(_PythonMagick.DrawableViewbox):
pass
class Exception(_PythonMagick.Exception):
pass
class FilterTypes(_PythonMagick.FilterTypes):
pass
class Geometry(_PythonMagick.Geometry):
pass
class GravityType(_PythonMagick.GravityType):
pass
class PathArcAbs(_PythonMagick.PathArcAbs):
pass
class PathArcArgs(_PythonMagick.PathArcArgs):
pass
class PathArcRel(_PythonMagick.PathArcRel):
pass
class PathClosePath(_PythonMagick.PathClosePath):
pass
class PathCurvetoAbs(_PythonMagick.PathCurvetoAbs):
pass
class PathCurvetoArgs(_PythonMagick.PathCurvetoArgs):
pass
class PathCurvetoRel(_PythonMagick.PathCurvetoRel):
pass
class PathLinetoAbs(_PythonMagick.PathLinetoAbs):
pass
class PathLinetoHorizontalAbs(_PythonMagick.PathLinetoHorizontalAbs):
pass
class PathLinetoHorizontalRel(_PythonMagick.PathLinetoHorizontalRel):
pass
class PathLinetoRel(_PythonMagick.PathLinetoRel):
pass
class PathLinetoVerticalAbs(_PythonMagick.PathLinetoVerticalAbs):
pass
class PathLinetoVerticalRel(_PythonMagick.PathLinetoVerticalRel):
pass
class PathMovetoAbs(_PythonMagick.PathMovetoAbs):
pass
class PathMovetoRel(_PythonMagick.PathMovetoRel):
pass
class PathQuadraticCurvetoAbs(_PythonMagick.PathQuadraticCurvetoAbs):
pass
class PathQuadraticCurvetoArgs(_PythonMagick.PathQuadraticCurvetoArgs):
pass
class PathQuadraticCurvetoRel(_PythonMagick.PathQuadraticCurvetoRel):
pass
class PathSmoothCurvetoAbs(_PythonMagick.PathSmoothCurvetoAbs):
pass
class PathSmoothCurvetoRel(_PythonMagick.PathSmoothCurvetoRel):
pass
class PathSmoothQuadraticCurvetoAbs(_PythonMagick.PathSmoothQuadraticCurvetoAbs):
pass
class PathSmoothQuadraticCurvetoRel(_PythonMagick.PathSmoothQuadraticCurvetoRel):
pass
class Pixels(_PythonMagick.Pixels):
pass
class TypeMetric(_PythonMagick.TypeMetric):
pass
class VPath(_PythonMagick.VPath):
pass
PythonMagick-0.9.8/pythonmagick_src/ 0000775 0000024 0000024 00000000000 12026354515 014461 5 0000000 0000000 PythonMagick-0.9.8/pythonmagick_src/_PathSmoothQuadraticCurvetoRel.cpp 0000644 0000024 0000024 00000003103 11574437254 023207 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathSmoothQuadraticCurvetoRel_Wrapper: Magick::PathSmoothQuadraticCurvetoRel
{
Magick_PathSmoothQuadraticCurvetoRel_Wrapper(PyObject* py_self_, const Magick::Coordinate& p0):
Magick::PathSmoothQuadraticCurvetoRel(p0), py_self(py_self_) {}
Magick_PathSmoothQuadraticCurvetoRel_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::PathSmoothQuadraticCurvetoRel(p0), py_self(py_self_) {}
Magick_PathSmoothQuadraticCurvetoRel_Wrapper(PyObject* py_self_, const Magick::PathSmoothQuadraticCurvetoRel& p0):
Magick::PathSmoothQuadraticCurvetoRel(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathSmoothQuadraticCurvetoRel()
{
class_< Magick::PathSmoothQuadraticCurvetoRel, Magick_PathSmoothQuadraticCurvetoRel_Wrapper >("PathSmoothQuadraticCurvetoRel", init< const Magick::Coordinate& >())
.def(init< const Magick::CoordinateList& >())
.def(init< const Magick::PathSmoothQuadraticCurvetoRel& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_DecorationType.cpp 0000664 0000024 0000024 00000001602 11202574433 020172 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_DecorationType()
{
enum_< MagickCore::DecorationType >("DecorationType")
.value("OverlineDecoration", MagickCore::OverlineDecoration)
.value("UnderlineDecoration", MagickCore::UnderlineDecoration)
.value("LineThroughDecoration", MagickCore::LineThroughDecoration)
.value("UndefinedDecoration", MagickCore::UndefinedDecoration)
.value("NoDecoration", MagickCore::NoDecoration)
;
}
PythonMagick-0.9.8/pythonmagick_src/_Blob.cpp 0000644 0000024 0000024 00000002756 11146664706 016142 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
#include "../helpers_src/Blob.h"
// Using =======================================================================
using namespace boost::python;
// Declarations ================================================================
namespace {
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Blob_updateNoCopy_overloads_2_3, updateNoCopy, 2, 3)
}// namespace
// Module ======================================================================
void Export_pyste_src_Blob()
{
scope* Magick_Blob_scope = new scope(
class_< Magick::Blob >("Blob", init< >())
.def(init< const void*, size_t >())
.def(init< const Magick::Blob& >())
.def("base64", (void (Magick::Blob::*)(const std::string) )&Magick::Blob::base64)
.def("base64", (std::string (Magick::Blob::*)() )&Magick::Blob::base64)
.def("update", &update_wrapper)
.def("updateNoCopy", &Magick::Blob::updateNoCopy, Magick_Blob_updateNoCopy_overloads_2_3())
.def("length", &Magick::Blob::length)
);
enum_< Magick::Blob::Allocator >("Allocator")
.value("NewAllocator", Magick::Blob::NewAllocator)
.value("MallocAllocator", Magick::Blob::MallocAllocator)
;
delete Magick_Blob_scope;
def("get_blob_data", &get_blob_data);
}
PythonMagick-0.9.8/pythonmagick_src/_DrawablePolyline.cpp 0000644 0000024 0000024 00000002414 11620751064 020477 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawablePolyline_Wrapper: Magick::DrawablePolyline
{
Magick_DrawablePolyline_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::DrawablePolyline(p0), py_self(py_self_) {}
Magick_DrawablePolyline_Wrapper(PyObject* py_self_, const Magick::DrawablePolyline& p0):
Magick::DrawablePolyline(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawablePolyline()
{
class_< Magick::DrawablePolyline, Magick_DrawablePolyline_Wrapper >("DrawablePolyline", init< const Magick::CoordinateList& >())
.def(init< const Magick::DrawablePolyline& >())
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableGravity.cpp 0000644 0000024 0000024 00000002453 11620751063 020333 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableGravity_Wrapper: Magick::DrawableGravity
{
Magick_DrawableGravity_Wrapper(PyObject* py_self_, MagickCore::GravityType p0):
Magick::DrawableGravity(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableGravity()
{
class_< Magick::DrawableGravity, boost::noncopyable, Magick_DrawableGravity_Wrapper >("DrawableGravity", init< MagickCore::GravityType >())
.def("gravity", (void (Magick::DrawableGravity::*)(MagickCore::GravityType) )&Magick::DrawableGravity::gravity)
.def("gravity", (MagickCore::GravityType (Magick::DrawableGravity::*)() const)&Magick::DrawableGravity::gravity)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_Exception.cpp 0000644 0000024 0000024 00000002710 11146664706 017210 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Declarations ================================================================
namespace {
struct Magick_Exception_Wrapper: Magick::Exception
{
Magick_Exception_Wrapper(PyObject* py_self_, const std::string& p0):
Magick::Exception(p0), py_self(py_self_) {}
Magick_Exception_Wrapper(PyObject* py_self_, const Magick::Exception& p0):
Magick::Exception(p0), py_self(py_self_) {}
const char* what() const throw() {
return call_method< const char* >(py_self, "what");
}
const char* default_what() const {
return Magick::Exception::what();
}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_Exception()
{
class_< Magick::Exception, Magick_Exception_Wrapper >("Exception", init< const std::string& >())
.def(init< const Magick::Exception& >())
.def("what", (const char* (Magick::Exception::*)() const throw())&Magick::Exception::what, (const char* (Magick_Exception_Wrapper::*)() const)&Magick_Exception_Wrapper::default_what)
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableRoundRectangle.cpp 0000644 0000024 0000024 00000005140 11620751064 021617 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableRoundRectangle_Wrapper: Magick::DrawableRoundRectangle
{
Magick_DrawableRoundRectangle_Wrapper(PyObject* py_self_, double p0, double p1, double p2, double p3, double p4, double p5):
Magick::DrawableRoundRectangle(p0, p1, p2, p3, p4, p5), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableRoundRectangle()
{
class_< Magick::DrawableRoundRectangle, boost::noncopyable, Magick_DrawableRoundRectangle_Wrapper >("DrawableRoundRectangle", init< double, double, double, double, double, double >())
.def("centerX", (void (Magick::DrawableRoundRectangle::*)(double) )&Magick::DrawableRoundRectangle::centerX)
.def("centerX", (double (Magick::DrawableRoundRectangle::*)() const)&Magick::DrawableRoundRectangle::centerX)
.def("centerY", (void (Magick::DrawableRoundRectangle::*)(double) )&Magick::DrawableRoundRectangle::centerY)
.def("centerY", (double (Magick::DrawableRoundRectangle::*)() const)&Magick::DrawableRoundRectangle::centerY)
.def("width", (void (Magick::DrawableRoundRectangle::*)(double) )&Magick::DrawableRoundRectangle::width)
.def("width", (double (Magick::DrawableRoundRectangle::*)() const)&Magick::DrawableRoundRectangle::width)
.def("hight", (void (Magick::DrawableRoundRectangle::*)(double) )&Magick::DrawableRoundRectangle::hight)
.def("hight", (double (Magick::DrawableRoundRectangle::*)() const)&Magick::DrawableRoundRectangle::hight)
.def("cornerWidth", (void (Magick::DrawableRoundRectangle::*)(double) )&Magick::DrawableRoundRectangle::cornerWidth)
.def("cornerWidth", (double (Magick::DrawableRoundRectangle::*)() const)&Magick::DrawableRoundRectangle::cornerWidth)
.def("cornerHeight", (void (Magick::DrawableRoundRectangle::*)(double) )&Magick::DrawableRoundRectangle::cornerHeight)
.def("cornerHeight", (double (Magick::DrawableRoundRectangle::*)() const)&Magick::DrawableRoundRectangle::cornerHeight)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/Makefile.in 0000664 0000024 0000024 00000414247 12026354503 016457 0000000 0000000 # Makefile.in generated by automake 1.12.2 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
am__make_dryrun = \
{ \
am__dry=no; \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
*) \
for am__flg in $$MAKEFLAGS; do \
case $$am__flg in \
*=*|--*) ;; \
*n*) am__dry=yes; break;; \
esac; \
done;; \
esac; \
test $$am__dry = yes; \
}
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
subdir = pythonmagick_src
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
$(top_srcdir)/config/depcomp
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_boost_base.m4 \
$(top_srcdir)/m4/ax_boost_python.m4 \
$(top_srcdir)/m4/ax_python.m4 $(top_srcdir)/m4/libtool.m4 \
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
libpymagick_la_LIBADD =
am_libpymagick_la_OBJECTS = libpymagick_la-_DrawableFillRule.lo \
libpymagick_la-_PathMovetoAbs.lo \
libpymagick_la-_DrawableText.lo libpymagick_la-_Blob.lo \
libpymagick_la-_DrawableRotation.lo \
libpymagick_la-_DrawableCompositeImage.lo \
libpymagick_la-_PathSmoothCurvetoAbs.lo \
libpymagick_la-_PathLinetoVerticalAbs.lo \
libpymagick_la-_DrawableCircle.lo \
libpymagick_la-_DrawablePoint.lo libpymagick_la-_PathArcRel.lo \
libpymagick_la-_DrawableClipPath.lo \
libpymagick_la-_DrawableArc.lo \
libpymagick_la-_PathLinetoAbs.lo \
libpymagick_la-_DrawablePushPattern.lo \
libpymagick_la-_Image.lo \
libpymagick_la-_DrawableTextDecoration.lo \
libpymagick_la-_PathQuadraticCurvetoAbs.lo \
libpymagick_la-_DrawableSkewX.lo \
libpymagick_la-_DrawableDashArray.lo \
libpymagick_la-_DrawableFont.lo \
libpymagick_la-_DrawableAffine.lo \
libpymagick_la-_DrawableTextAntialias.lo \
libpymagick_la-_DrawableScaling.lo \
libpymagick_la-_DrawableViewbox.lo \
libpymagick_la-_PathQuadraticCurvetoRel.lo \
libpymagick_la-_DrawableRoundRectangle.lo \
libpymagick_la-_DrawableEllipse.lo libpymagick_la-_Pixels.lo \
libpymagick_la-_PathArcAbs.lo libpymagick_la-_DrawableSkewY.lo \
libpymagick_la-_PathArcArgs.lo \
libpymagick_la-_PathLinetoRel.lo \
libpymagick_la-_DrawableBezier.lo \
libpymagick_la-_DrawableMatte.lo \
libpymagick_la-_DrawableStrokeWidth.lo \
libpymagick_la-_DrawablePushClipPath.lo \
libpymagick_la-_PathLinetoVerticalRel.lo \
libpymagick_la-_Color.lo \
libpymagick_la-_DrawableTranslation.lo \
libpymagick_la-_DrawableColor.lo \
libpymagick_la-_PathCurvetoAbs.lo libpymagick_la-_Exception.lo \
libpymagick_la-_DrawablePointSize.lo \
libpymagick_la-_DrawableDashOffset.lo libpymagick_la-_VPath.lo \
libpymagick_la-_DrawableStrokeColor.lo \
libpymagick_la-_PathSmoothQuadraticCurvetoRel.lo \
libpymagick_la-_DrawableStrokeAntialias.lo \
libpymagick_la-_DrawableLine.lo \
libpymagick_la-_DrawablePushGraphicContext.lo \
libpymagick_la-_PathCurvetoRel.lo \
libpymagick_la-_TypeMetric.lo \
libpymagick_la-_DrawableStrokeOpacity.lo \
libpymagick_la-_DrawablePopClipPath.lo \
libpymagick_la-_DrawablePath.lo libpymagick_la-_Coordinate.lo \
libpymagick_la-_PathQuadraticCurvetoArgs.lo \
libpymagick_la-_DrawableGravity.lo \
libpymagick_la-_PathCurvetoArgs.lo \
libpymagick_la-_DrawablePolyline.lo \
libpymagick_la-_DrawableStrokeLineJoin.lo \
libpymagick_la-_DrawableFillColor.lo \
libpymagick_la-_PathLinetoHorizontalAbs.lo \
libpymagick_la-_DrawableStrokeLineCap.lo \
libpymagick_la-_DrawablePopGraphicContext.lo \
libpymagick_la-_Geometry.lo \
libpymagick_la-_CompositeOperator.lo \
libpymagick_la-_GravityType.lo libpymagick_la-_FilterTypes.lo \
libpymagick_la-_DecorationType.lo \
libpymagick_la-_CompressionType.lo \
libpymagick_la-_DrawablePopPattern.lo \
libpymagick_la-_PathSmoothQuadraticCurvetoAbs.lo \
libpymagick_la-_DrawableFillOpacity.lo \
libpymagick_la-_DrawableTextUnderColor.lo \
libpymagick_la-_DrawablePolygon.lo libpymagick_la-_main.lo \
libpymagick_la-_DrawableRectangle.lo \
libpymagick_la-_PathMovetoRel.lo libpymagick_la-_Drawable.lo \
libpymagick_la-_DrawableMiterLimit.lo \
libpymagick_la-_PathClosePath.lo \
libpymagick_la-_PathSmoothCurvetoRel.lo \
libpymagick_la-_PathLinetoHorizontalRel.lo
libpymagick_la_OBJECTS = $(am_libpymagick_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
libpymagick_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(libpymagick_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CXXFLAGS) $(CXXFLAGS)
AM_V_CXX = $(am__v_CXX_@AM_V@)
am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
am__v_CXX_0 = @echo " CXX " $@;
am__v_CXX_1 =
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
am__v_CXXLD_0 = @echo " CXXLD " $@;
am__v_CXXLD_1 =
SOURCES = $(libpymagick_la_SOURCES)
DIST_SOURCES = $(libpymagick_la_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BOOST_CPPFLAGS = @BOOST_CPPFLAGS@
BOOST_LDFLAGS = @BOOST_LDFLAGS@
BOOST_PYTHON_LIB = @BOOST_PYTHON_LIB@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAGICKCORE_CFLAGS = @MAGICKCORE_CFLAGS@
MAGICKCORE_LIBS = @MAGICKCORE_LIBS@
MAGICKPP_CFLAGS = @MAGICKPP_CFLAGS@
MAGICKPP_LIBS = @MAGICKPP_LIBS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
PYTHON = @PYTHON@
PYTHON_BIN = @PYTHON_BIN@
PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
PYTHON_INCLUDE_DIR = @PYTHON_INCLUDE_DIR@
PYTHON_LIB = @PYTHON_LIB@
PYTHON_PLATFORM = @PYTHON_PLATFORM@
PYTHON_PREFIX = @PYTHON_PREFIX@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
pkgpyexecdir = @pkgpyexecdir@
pkgpythondir = @pkgpythondir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
pyexecdir = @pyexecdir@
pythondir = @pythondir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
noinst_LTLIBRARIES = libpymagick.la
libpymagick_la_SOURCES = _DrawableFillRule.cpp \
_PathMovetoAbs.cpp \
_DrawableText.cpp \
_Blob.cpp \
_DrawableRotation.cpp \
_DrawableCompositeImage.cpp \
_PathSmoothCurvetoAbs.cpp \
_PathLinetoVerticalAbs.cpp \
_DrawableCircle.cpp \
_DrawablePoint.cpp \
_PathArcRel.cpp \
_DrawableClipPath.cpp \
_DrawableArc.cpp \
_PathLinetoAbs.cpp \
_DrawablePushPattern.cpp \
_Image.cpp \
_DrawableTextDecoration.cpp \
_PathQuadraticCurvetoAbs.cpp \
_DrawableSkewX.cpp \
_DrawableDashArray.cpp \
_DrawableFont.cpp \
_DrawableAffine.cpp \
_DrawableTextAntialias.cpp \
_DrawableScaling.cpp \
_DrawableViewbox.cpp \
_PathQuadraticCurvetoRel.cpp \
_DrawableRoundRectangle.cpp \
_DrawableEllipse.cpp \
_Pixels.cpp \
_PathArcAbs.cpp \
_DrawableSkewY.cpp \
_PathArcArgs.cpp \
_PathLinetoRel.cpp \
_DrawableBezier.cpp \
_DrawableMatte.cpp \
_DrawableStrokeWidth.cpp \
_DrawablePushClipPath.cpp \
_PathLinetoVerticalRel.cpp \
_Color.cpp \
_DrawableTranslation.cpp \
_DrawableColor.cpp \
_PathCurvetoAbs.cpp \
_Exception.cpp \
_DrawablePointSize.cpp \
_DrawableDashOffset.cpp \
_VPath.cpp \
_DrawableStrokeColor.cpp \
_PathSmoothQuadraticCurvetoRel.cpp \
_DrawableStrokeAntialias.cpp \
_DrawableLine.cpp \
_DrawablePushGraphicContext.cpp \
_PathCurvetoRel.cpp \
_TypeMetric.cpp \
_DrawableStrokeOpacity.cpp \
_DrawablePopClipPath.cpp \
_DrawablePath.cpp \
_Coordinate.cpp \
_PathQuadraticCurvetoArgs.cpp \
_DrawableGravity.cpp \
_PathCurvetoArgs.cpp \
_DrawablePolyline.cpp \
_DrawableStrokeLineJoin.cpp \
_DrawableFillColor.cpp \
_PathLinetoHorizontalAbs.cpp \
_DrawableStrokeLineCap.cpp \
_DrawablePopGraphicContext.cpp \
_Geometry.cpp \
_CompositeOperator.cpp \
_GravityType.cpp \
_FilterTypes.cpp \
_DecorationType.cpp \
_CompressionType.cpp \
_DrawablePopPattern.cpp \
_PathSmoothQuadraticCurvetoAbs.cpp \
_DrawableFillOpacity.cpp \
_DrawableTextUnderColor.cpp \
_DrawablePolygon.cpp \
_main.cpp \
_DrawableRectangle.cpp \
_PathMovetoRel.cpp \
_Drawable.cpp \
_DrawableMiterLimit.cpp \
_PathClosePath.cpp \
_PathSmoothCurvetoRel.cpp \
_PathLinetoHorizontalRel.cpp
libpymagick_la_CXXFLAGS = -I$(PYTHON_INCLUDE_DIR) $(BOOST_CPPFLAGS) $(MAGICKPP_CFLAGS)
all: all-am
.SUFFIXES:
.SUFFIXES: .cpp .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign pythonmagick_src/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign pythonmagick_src/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
@list='$(noinst_LTLIBRARIES)'; \
locs=`for p in $$list; do echo $$p; done | \
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
sort -u`; \
test -z "$$locs" || { \
echo rm -f $${locs}; \
rm -f $${locs}; \
}
libpymagick.la: $(libpymagick_la_OBJECTS) $(libpymagick_la_DEPENDENCIES) $(EXTRA_libpymagick_la_DEPENDENCIES)
$(AM_V_CXXLD)$(libpymagick_la_LINK) $(libpymagick_la_OBJECTS) $(libpymagick_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_Blob.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_Color.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_CompositeOperator.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_CompressionType.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_Coordinate.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DecorationType.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_Drawable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableAffine.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableArc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableBezier.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableCircle.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableClipPath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableColor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableCompositeImage.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableDashArray.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableDashOffset.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableEllipse.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableFillColor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableFillOpacity.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableFillRule.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableFont.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableGravity.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableLine.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableMatte.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableMiterLimit.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePoint.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePointSize.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePolygon.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePolyline.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePopClipPath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePopGraphicContext.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePopPattern.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePushClipPath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePushGraphicContext.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawablePushPattern.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableRectangle.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableRotation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableRoundRectangle.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableScaling.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableSkewX.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableSkewY.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableStrokeAntialias.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableStrokeColor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableStrokeLineCap.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableStrokeLineJoin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableStrokeOpacity.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableStrokeWidth.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableText.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableTextAntialias.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableTextDecoration.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableTextUnderColor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableTranslation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_DrawableViewbox.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_Exception.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_FilterTypes.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_Geometry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_GravityType.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_Image.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathArcAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathArcArgs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathArcRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathClosePath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathCurvetoAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathCurvetoArgs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathCurvetoRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathLinetoAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathLinetoHorizontalAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathLinetoHorizontalRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathLinetoRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathLinetoVerticalAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathLinetoVerticalRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathMovetoAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathMovetoRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoArgs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathSmoothCurvetoAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathSmoothCurvetoRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathSmoothQuadraticCurvetoAbs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_PathSmoothQuadraticCurvetoRel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_Pixels.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_TypeMetric.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_VPath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpymagick_la-_main.Plo@am__quote@
.cpp.o:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
.cpp.obj:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cpp.lo:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
libpymagick_la-_DrawableFillRule.lo: _DrawableFillRule.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableFillRule.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableFillRule.Tpo -c -o libpymagick_la-_DrawableFillRule.lo `test -f '_DrawableFillRule.cpp' || echo '$(srcdir)/'`_DrawableFillRule.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableFillRule.Tpo $(DEPDIR)/libpymagick_la-_DrawableFillRule.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableFillRule.cpp' object='libpymagick_la-_DrawableFillRule.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableFillRule.lo `test -f '_DrawableFillRule.cpp' || echo '$(srcdir)/'`_DrawableFillRule.cpp
libpymagick_la-_PathMovetoAbs.lo: _PathMovetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathMovetoAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathMovetoAbs.Tpo -c -o libpymagick_la-_PathMovetoAbs.lo `test -f '_PathMovetoAbs.cpp' || echo '$(srcdir)/'`_PathMovetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathMovetoAbs.Tpo $(DEPDIR)/libpymagick_la-_PathMovetoAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathMovetoAbs.cpp' object='libpymagick_la-_PathMovetoAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathMovetoAbs.lo `test -f '_PathMovetoAbs.cpp' || echo '$(srcdir)/'`_PathMovetoAbs.cpp
libpymagick_la-_DrawableText.lo: _DrawableText.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableText.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableText.Tpo -c -o libpymagick_la-_DrawableText.lo `test -f '_DrawableText.cpp' || echo '$(srcdir)/'`_DrawableText.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableText.Tpo $(DEPDIR)/libpymagick_la-_DrawableText.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableText.cpp' object='libpymagick_la-_DrawableText.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableText.lo `test -f '_DrawableText.cpp' || echo '$(srcdir)/'`_DrawableText.cpp
libpymagick_la-_Blob.lo: _Blob.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_Blob.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_Blob.Tpo -c -o libpymagick_la-_Blob.lo `test -f '_Blob.cpp' || echo '$(srcdir)/'`_Blob.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_Blob.Tpo $(DEPDIR)/libpymagick_la-_Blob.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_Blob.cpp' object='libpymagick_la-_Blob.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_Blob.lo `test -f '_Blob.cpp' || echo '$(srcdir)/'`_Blob.cpp
libpymagick_la-_DrawableRotation.lo: _DrawableRotation.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableRotation.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableRotation.Tpo -c -o libpymagick_la-_DrawableRotation.lo `test -f '_DrawableRotation.cpp' || echo '$(srcdir)/'`_DrawableRotation.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableRotation.Tpo $(DEPDIR)/libpymagick_la-_DrawableRotation.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableRotation.cpp' object='libpymagick_la-_DrawableRotation.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableRotation.lo `test -f '_DrawableRotation.cpp' || echo '$(srcdir)/'`_DrawableRotation.cpp
libpymagick_la-_DrawableCompositeImage.lo: _DrawableCompositeImage.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableCompositeImage.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableCompositeImage.Tpo -c -o libpymagick_la-_DrawableCompositeImage.lo `test -f '_DrawableCompositeImage.cpp' || echo '$(srcdir)/'`_DrawableCompositeImage.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableCompositeImage.Tpo $(DEPDIR)/libpymagick_la-_DrawableCompositeImage.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableCompositeImage.cpp' object='libpymagick_la-_DrawableCompositeImage.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableCompositeImage.lo `test -f '_DrawableCompositeImage.cpp' || echo '$(srcdir)/'`_DrawableCompositeImage.cpp
libpymagick_la-_PathSmoothCurvetoAbs.lo: _PathSmoothCurvetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathSmoothCurvetoAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathSmoothCurvetoAbs.Tpo -c -o libpymagick_la-_PathSmoothCurvetoAbs.lo `test -f '_PathSmoothCurvetoAbs.cpp' || echo '$(srcdir)/'`_PathSmoothCurvetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathSmoothCurvetoAbs.Tpo $(DEPDIR)/libpymagick_la-_PathSmoothCurvetoAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathSmoothCurvetoAbs.cpp' object='libpymagick_la-_PathSmoothCurvetoAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathSmoothCurvetoAbs.lo `test -f '_PathSmoothCurvetoAbs.cpp' || echo '$(srcdir)/'`_PathSmoothCurvetoAbs.cpp
libpymagick_la-_PathLinetoVerticalAbs.lo: _PathLinetoVerticalAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathLinetoVerticalAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathLinetoVerticalAbs.Tpo -c -o libpymagick_la-_PathLinetoVerticalAbs.lo `test -f '_PathLinetoVerticalAbs.cpp' || echo '$(srcdir)/'`_PathLinetoVerticalAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathLinetoVerticalAbs.Tpo $(DEPDIR)/libpymagick_la-_PathLinetoVerticalAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathLinetoVerticalAbs.cpp' object='libpymagick_la-_PathLinetoVerticalAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathLinetoVerticalAbs.lo `test -f '_PathLinetoVerticalAbs.cpp' || echo '$(srcdir)/'`_PathLinetoVerticalAbs.cpp
libpymagick_la-_DrawableCircle.lo: _DrawableCircle.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableCircle.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableCircle.Tpo -c -o libpymagick_la-_DrawableCircle.lo `test -f '_DrawableCircle.cpp' || echo '$(srcdir)/'`_DrawableCircle.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableCircle.Tpo $(DEPDIR)/libpymagick_la-_DrawableCircle.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableCircle.cpp' object='libpymagick_la-_DrawableCircle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableCircle.lo `test -f '_DrawableCircle.cpp' || echo '$(srcdir)/'`_DrawableCircle.cpp
libpymagick_la-_DrawablePoint.lo: _DrawablePoint.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePoint.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePoint.Tpo -c -o libpymagick_la-_DrawablePoint.lo `test -f '_DrawablePoint.cpp' || echo '$(srcdir)/'`_DrawablePoint.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePoint.Tpo $(DEPDIR)/libpymagick_la-_DrawablePoint.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePoint.cpp' object='libpymagick_la-_DrawablePoint.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePoint.lo `test -f '_DrawablePoint.cpp' || echo '$(srcdir)/'`_DrawablePoint.cpp
libpymagick_la-_PathArcRel.lo: _PathArcRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathArcRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathArcRel.Tpo -c -o libpymagick_la-_PathArcRel.lo `test -f '_PathArcRel.cpp' || echo '$(srcdir)/'`_PathArcRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathArcRel.Tpo $(DEPDIR)/libpymagick_la-_PathArcRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathArcRel.cpp' object='libpymagick_la-_PathArcRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathArcRel.lo `test -f '_PathArcRel.cpp' || echo '$(srcdir)/'`_PathArcRel.cpp
libpymagick_la-_DrawableClipPath.lo: _DrawableClipPath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableClipPath.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableClipPath.Tpo -c -o libpymagick_la-_DrawableClipPath.lo `test -f '_DrawableClipPath.cpp' || echo '$(srcdir)/'`_DrawableClipPath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableClipPath.Tpo $(DEPDIR)/libpymagick_la-_DrawableClipPath.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableClipPath.cpp' object='libpymagick_la-_DrawableClipPath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableClipPath.lo `test -f '_DrawableClipPath.cpp' || echo '$(srcdir)/'`_DrawableClipPath.cpp
libpymagick_la-_DrawableArc.lo: _DrawableArc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableArc.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableArc.Tpo -c -o libpymagick_la-_DrawableArc.lo `test -f '_DrawableArc.cpp' || echo '$(srcdir)/'`_DrawableArc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableArc.Tpo $(DEPDIR)/libpymagick_la-_DrawableArc.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableArc.cpp' object='libpymagick_la-_DrawableArc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableArc.lo `test -f '_DrawableArc.cpp' || echo '$(srcdir)/'`_DrawableArc.cpp
libpymagick_la-_PathLinetoAbs.lo: _PathLinetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathLinetoAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathLinetoAbs.Tpo -c -o libpymagick_la-_PathLinetoAbs.lo `test -f '_PathLinetoAbs.cpp' || echo '$(srcdir)/'`_PathLinetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathLinetoAbs.Tpo $(DEPDIR)/libpymagick_la-_PathLinetoAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathLinetoAbs.cpp' object='libpymagick_la-_PathLinetoAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathLinetoAbs.lo `test -f '_PathLinetoAbs.cpp' || echo '$(srcdir)/'`_PathLinetoAbs.cpp
libpymagick_la-_DrawablePushPattern.lo: _DrawablePushPattern.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePushPattern.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePushPattern.Tpo -c -o libpymagick_la-_DrawablePushPattern.lo `test -f '_DrawablePushPattern.cpp' || echo '$(srcdir)/'`_DrawablePushPattern.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePushPattern.Tpo $(DEPDIR)/libpymagick_la-_DrawablePushPattern.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePushPattern.cpp' object='libpymagick_la-_DrawablePushPattern.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePushPattern.lo `test -f '_DrawablePushPattern.cpp' || echo '$(srcdir)/'`_DrawablePushPattern.cpp
libpymagick_la-_Image.lo: _Image.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_Image.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_Image.Tpo -c -o libpymagick_la-_Image.lo `test -f '_Image.cpp' || echo '$(srcdir)/'`_Image.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_Image.Tpo $(DEPDIR)/libpymagick_la-_Image.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_Image.cpp' object='libpymagick_la-_Image.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_Image.lo `test -f '_Image.cpp' || echo '$(srcdir)/'`_Image.cpp
libpymagick_la-_DrawableTextDecoration.lo: _DrawableTextDecoration.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableTextDecoration.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableTextDecoration.Tpo -c -o libpymagick_la-_DrawableTextDecoration.lo `test -f '_DrawableTextDecoration.cpp' || echo '$(srcdir)/'`_DrawableTextDecoration.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableTextDecoration.Tpo $(DEPDIR)/libpymagick_la-_DrawableTextDecoration.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableTextDecoration.cpp' object='libpymagick_la-_DrawableTextDecoration.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableTextDecoration.lo `test -f '_DrawableTextDecoration.cpp' || echo '$(srcdir)/'`_DrawableTextDecoration.cpp
libpymagick_la-_PathQuadraticCurvetoAbs.lo: _PathQuadraticCurvetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathQuadraticCurvetoAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoAbs.Tpo -c -o libpymagick_la-_PathQuadraticCurvetoAbs.lo `test -f '_PathQuadraticCurvetoAbs.cpp' || echo '$(srcdir)/'`_PathQuadraticCurvetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoAbs.Tpo $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathQuadraticCurvetoAbs.cpp' object='libpymagick_la-_PathQuadraticCurvetoAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathQuadraticCurvetoAbs.lo `test -f '_PathQuadraticCurvetoAbs.cpp' || echo '$(srcdir)/'`_PathQuadraticCurvetoAbs.cpp
libpymagick_la-_DrawableSkewX.lo: _DrawableSkewX.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableSkewX.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableSkewX.Tpo -c -o libpymagick_la-_DrawableSkewX.lo `test -f '_DrawableSkewX.cpp' || echo '$(srcdir)/'`_DrawableSkewX.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableSkewX.Tpo $(DEPDIR)/libpymagick_la-_DrawableSkewX.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableSkewX.cpp' object='libpymagick_la-_DrawableSkewX.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableSkewX.lo `test -f '_DrawableSkewX.cpp' || echo '$(srcdir)/'`_DrawableSkewX.cpp
libpymagick_la-_DrawableDashArray.lo: _DrawableDashArray.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableDashArray.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableDashArray.Tpo -c -o libpymagick_la-_DrawableDashArray.lo `test -f '_DrawableDashArray.cpp' || echo '$(srcdir)/'`_DrawableDashArray.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableDashArray.Tpo $(DEPDIR)/libpymagick_la-_DrawableDashArray.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableDashArray.cpp' object='libpymagick_la-_DrawableDashArray.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableDashArray.lo `test -f '_DrawableDashArray.cpp' || echo '$(srcdir)/'`_DrawableDashArray.cpp
libpymagick_la-_DrawableFont.lo: _DrawableFont.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableFont.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableFont.Tpo -c -o libpymagick_la-_DrawableFont.lo `test -f '_DrawableFont.cpp' || echo '$(srcdir)/'`_DrawableFont.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableFont.Tpo $(DEPDIR)/libpymagick_la-_DrawableFont.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableFont.cpp' object='libpymagick_la-_DrawableFont.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableFont.lo `test -f '_DrawableFont.cpp' || echo '$(srcdir)/'`_DrawableFont.cpp
libpymagick_la-_DrawableAffine.lo: _DrawableAffine.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableAffine.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableAffine.Tpo -c -o libpymagick_la-_DrawableAffine.lo `test -f '_DrawableAffine.cpp' || echo '$(srcdir)/'`_DrawableAffine.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableAffine.Tpo $(DEPDIR)/libpymagick_la-_DrawableAffine.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableAffine.cpp' object='libpymagick_la-_DrawableAffine.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableAffine.lo `test -f '_DrawableAffine.cpp' || echo '$(srcdir)/'`_DrawableAffine.cpp
libpymagick_la-_DrawableTextAntialias.lo: _DrawableTextAntialias.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableTextAntialias.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableTextAntialias.Tpo -c -o libpymagick_la-_DrawableTextAntialias.lo `test -f '_DrawableTextAntialias.cpp' || echo '$(srcdir)/'`_DrawableTextAntialias.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableTextAntialias.Tpo $(DEPDIR)/libpymagick_la-_DrawableTextAntialias.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableTextAntialias.cpp' object='libpymagick_la-_DrawableTextAntialias.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableTextAntialias.lo `test -f '_DrawableTextAntialias.cpp' || echo '$(srcdir)/'`_DrawableTextAntialias.cpp
libpymagick_la-_DrawableScaling.lo: _DrawableScaling.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableScaling.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableScaling.Tpo -c -o libpymagick_la-_DrawableScaling.lo `test -f '_DrawableScaling.cpp' || echo '$(srcdir)/'`_DrawableScaling.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableScaling.Tpo $(DEPDIR)/libpymagick_la-_DrawableScaling.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableScaling.cpp' object='libpymagick_la-_DrawableScaling.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableScaling.lo `test -f '_DrawableScaling.cpp' || echo '$(srcdir)/'`_DrawableScaling.cpp
libpymagick_la-_DrawableViewbox.lo: _DrawableViewbox.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableViewbox.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableViewbox.Tpo -c -o libpymagick_la-_DrawableViewbox.lo `test -f '_DrawableViewbox.cpp' || echo '$(srcdir)/'`_DrawableViewbox.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableViewbox.Tpo $(DEPDIR)/libpymagick_la-_DrawableViewbox.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableViewbox.cpp' object='libpymagick_la-_DrawableViewbox.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableViewbox.lo `test -f '_DrawableViewbox.cpp' || echo '$(srcdir)/'`_DrawableViewbox.cpp
libpymagick_la-_PathQuadraticCurvetoRel.lo: _PathQuadraticCurvetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathQuadraticCurvetoRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoRel.Tpo -c -o libpymagick_la-_PathQuadraticCurvetoRel.lo `test -f '_PathQuadraticCurvetoRel.cpp' || echo '$(srcdir)/'`_PathQuadraticCurvetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoRel.Tpo $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathQuadraticCurvetoRel.cpp' object='libpymagick_la-_PathQuadraticCurvetoRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathQuadraticCurvetoRel.lo `test -f '_PathQuadraticCurvetoRel.cpp' || echo '$(srcdir)/'`_PathQuadraticCurvetoRel.cpp
libpymagick_la-_DrawableRoundRectangle.lo: _DrawableRoundRectangle.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableRoundRectangle.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableRoundRectangle.Tpo -c -o libpymagick_la-_DrawableRoundRectangle.lo `test -f '_DrawableRoundRectangle.cpp' || echo '$(srcdir)/'`_DrawableRoundRectangle.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableRoundRectangle.Tpo $(DEPDIR)/libpymagick_la-_DrawableRoundRectangle.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableRoundRectangle.cpp' object='libpymagick_la-_DrawableRoundRectangle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableRoundRectangle.lo `test -f '_DrawableRoundRectangle.cpp' || echo '$(srcdir)/'`_DrawableRoundRectangle.cpp
libpymagick_la-_DrawableEllipse.lo: _DrawableEllipse.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableEllipse.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableEllipse.Tpo -c -o libpymagick_la-_DrawableEllipse.lo `test -f '_DrawableEllipse.cpp' || echo '$(srcdir)/'`_DrawableEllipse.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableEllipse.Tpo $(DEPDIR)/libpymagick_la-_DrawableEllipse.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableEllipse.cpp' object='libpymagick_la-_DrawableEllipse.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableEllipse.lo `test -f '_DrawableEllipse.cpp' || echo '$(srcdir)/'`_DrawableEllipse.cpp
libpymagick_la-_Pixels.lo: _Pixels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_Pixels.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_Pixels.Tpo -c -o libpymagick_la-_Pixels.lo `test -f '_Pixels.cpp' || echo '$(srcdir)/'`_Pixels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_Pixels.Tpo $(DEPDIR)/libpymagick_la-_Pixels.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_Pixels.cpp' object='libpymagick_la-_Pixels.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_Pixels.lo `test -f '_Pixels.cpp' || echo '$(srcdir)/'`_Pixels.cpp
libpymagick_la-_PathArcAbs.lo: _PathArcAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathArcAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathArcAbs.Tpo -c -o libpymagick_la-_PathArcAbs.lo `test -f '_PathArcAbs.cpp' || echo '$(srcdir)/'`_PathArcAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathArcAbs.Tpo $(DEPDIR)/libpymagick_la-_PathArcAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathArcAbs.cpp' object='libpymagick_la-_PathArcAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathArcAbs.lo `test -f '_PathArcAbs.cpp' || echo '$(srcdir)/'`_PathArcAbs.cpp
libpymagick_la-_DrawableSkewY.lo: _DrawableSkewY.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableSkewY.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableSkewY.Tpo -c -o libpymagick_la-_DrawableSkewY.lo `test -f '_DrawableSkewY.cpp' || echo '$(srcdir)/'`_DrawableSkewY.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableSkewY.Tpo $(DEPDIR)/libpymagick_la-_DrawableSkewY.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableSkewY.cpp' object='libpymagick_la-_DrawableSkewY.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableSkewY.lo `test -f '_DrawableSkewY.cpp' || echo '$(srcdir)/'`_DrawableSkewY.cpp
libpymagick_la-_PathArcArgs.lo: _PathArcArgs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathArcArgs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathArcArgs.Tpo -c -o libpymagick_la-_PathArcArgs.lo `test -f '_PathArcArgs.cpp' || echo '$(srcdir)/'`_PathArcArgs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathArcArgs.Tpo $(DEPDIR)/libpymagick_la-_PathArcArgs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathArcArgs.cpp' object='libpymagick_la-_PathArcArgs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathArcArgs.lo `test -f '_PathArcArgs.cpp' || echo '$(srcdir)/'`_PathArcArgs.cpp
libpymagick_la-_PathLinetoRel.lo: _PathLinetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathLinetoRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathLinetoRel.Tpo -c -o libpymagick_la-_PathLinetoRel.lo `test -f '_PathLinetoRel.cpp' || echo '$(srcdir)/'`_PathLinetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathLinetoRel.Tpo $(DEPDIR)/libpymagick_la-_PathLinetoRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathLinetoRel.cpp' object='libpymagick_la-_PathLinetoRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathLinetoRel.lo `test -f '_PathLinetoRel.cpp' || echo '$(srcdir)/'`_PathLinetoRel.cpp
libpymagick_la-_DrawableBezier.lo: _DrawableBezier.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableBezier.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableBezier.Tpo -c -o libpymagick_la-_DrawableBezier.lo `test -f '_DrawableBezier.cpp' || echo '$(srcdir)/'`_DrawableBezier.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableBezier.Tpo $(DEPDIR)/libpymagick_la-_DrawableBezier.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableBezier.cpp' object='libpymagick_la-_DrawableBezier.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableBezier.lo `test -f '_DrawableBezier.cpp' || echo '$(srcdir)/'`_DrawableBezier.cpp
libpymagick_la-_DrawableMatte.lo: _DrawableMatte.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableMatte.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableMatte.Tpo -c -o libpymagick_la-_DrawableMatte.lo `test -f '_DrawableMatte.cpp' || echo '$(srcdir)/'`_DrawableMatte.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableMatte.Tpo $(DEPDIR)/libpymagick_la-_DrawableMatte.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableMatte.cpp' object='libpymagick_la-_DrawableMatte.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableMatte.lo `test -f '_DrawableMatte.cpp' || echo '$(srcdir)/'`_DrawableMatte.cpp
libpymagick_la-_DrawableStrokeWidth.lo: _DrawableStrokeWidth.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableStrokeWidth.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableStrokeWidth.Tpo -c -o libpymagick_la-_DrawableStrokeWidth.lo `test -f '_DrawableStrokeWidth.cpp' || echo '$(srcdir)/'`_DrawableStrokeWidth.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableStrokeWidth.Tpo $(DEPDIR)/libpymagick_la-_DrawableStrokeWidth.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableStrokeWidth.cpp' object='libpymagick_la-_DrawableStrokeWidth.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableStrokeWidth.lo `test -f '_DrawableStrokeWidth.cpp' || echo '$(srcdir)/'`_DrawableStrokeWidth.cpp
libpymagick_la-_DrawablePushClipPath.lo: _DrawablePushClipPath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePushClipPath.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePushClipPath.Tpo -c -o libpymagick_la-_DrawablePushClipPath.lo `test -f '_DrawablePushClipPath.cpp' || echo '$(srcdir)/'`_DrawablePushClipPath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePushClipPath.Tpo $(DEPDIR)/libpymagick_la-_DrawablePushClipPath.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePushClipPath.cpp' object='libpymagick_la-_DrawablePushClipPath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePushClipPath.lo `test -f '_DrawablePushClipPath.cpp' || echo '$(srcdir)/'`_DrawablePushClipPath.cpp
libpymagick_la-_PathLinetoVerticalRel.lo: _PathLinetoVerticalRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathLinetoVerticalRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathLinetoVerticalRel.Tpo -c -o libpymagick_la-_PathLinetoVerticalRel.lo `test -f '_PathLinetoVerticalRel.cpp' || echo '$(srcdir)/'`_PathLinetoVerticalRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathLinetoVerticalRel.Tpo $(DEPDIR)/libpymagick_la-_PathLinetoVerticalRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathLinetoVerticalRel.cpp' object='libpymagick_la-_PathLinetoVerticalRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathLinetoVerticalRel.lo `test -f '_PathLinetoVerticalRel.cpp' || echo '$(srcdir)/'`_PathLinetoVerticalRel.cpp
libpymagick_la-_Color.lo: _Color.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_Color.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_Color.Tpo -c -o libpymagick_la-_Color.lo `test -f '_Color.cpp' || echo '$(srcdir)/'`_Color.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_Color.Tpo $(DEPDIR)/libpymagick_la-_Color.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_Color.cpp' object='libpymagick_la-_Color.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_Color.lo `test -f '_Color.cpp' || echo '$(srcdir)/'`_Color.cpp
libpymagick_la-_DrawableTranslation.lo: _DrawableTranslation.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableTranslation.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableTranslation.Tpo -c -o libpymagick_la-_DrawableTranslation.lo `test -f '_DrawableTranslation.cpp' || echo '$(srcdir)/'`_DrawableTranslation.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableTranslation.Tpo $(DEPDIR)/libpymagick_la-_DrawableTranslation.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableTranslation.cpp' object='libpymagick_la-_DrawableTranslation.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableTranslation.lo `test -f '_DrawableTranslation.cpp' || echo '$(srcdir)/'`_DrawableTranslation.cpp
libpymagick_la-_DrawableColor.lo: _DrawableColor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableColor.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableColor.Tpo -c -o libpymagick_la-_DrawableColor.lo `test -f '_DrawableColor.cpp' || echo '$(srcdir)/'`_DrawableColor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableColor.Tpo $(DEPDIR)/libpymagick_la-_DrawableColor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableColor.cpp' object='libpymagick_la-_DrawableColor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableColor.lo `test -f '_DrawableColor.cpp' || echo '$(srcdir)/'`_DrawableColor.cpp
libpymagick_la-_PathCurvetoAbs.lo: _PathCurvetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathCurvetoAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathCurvetoAbs.Tpo -c -o libpymagick_la-_PathCurvetoAbs.lo `test -f '_PathCurvetoAbs.cpp' || echo '$(srcdir)/'`_PathCurvetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathCurvetoAbs.Tpo $(DEPDIR)/libpymagick_la-_PathCurvetoAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathCurvetoAbs.cpp' object='libpymagick_la-_PathCurvetoAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathCurvetoAbs.lo `test -f '_PathCurvetoAbs.cpp' || echo '$(srcdir)/'`_PathCurvetoAbs.cpp
libpymagick_la-_Exception.lo: _Exception.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_Exception.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_Exception.Tpo -c -o libpymagick_la-_Exception.lo `test -f '_Exception.cpp' || echo '$(srcdir)/'`_Exception.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_Exception.Tpo $(DEPDIR)/libpymagick_la-_Exception.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_Exception.cpp' object='libpymagick_la-_Exception.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_Exception.lo `test -f '_Exception.cpp' || echo '$(srcdir)/'`_Exception.cpp
libpymagick_la-_DrawablePointSize.lo: _DrawablePointSize.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePointSize.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePointSize.Tpo -c -o libpymagick_la-_DrawablePointSize.lo `test -f '_DrawablePointSize.cpp' || echo '$(srcdir)/'`_DrawablePointSize.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePointSize.Tpo $(DEPDIR)/libpymagick_la-_DrawablePointSize.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePointSize.cpp' object='libpymagick_la-_DrawablePointSize.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePointSize.lo `test -f '_DrawablePointSize.cpp' || echo '$(srcdir)/'`_DrawablePointSize.cpp
libpymagick_la-_DrawableDashOffset.lo: _DrawableDashOffset.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableDashOffset.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableDashOffset.Tpo -c -o libpymagick_la-_DrawableDashOffset.lo `test -f '_DrawableDashOffset.cpp' || echo '$(srcdir)/'`_DrawableDashOffset.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableDashOffset.Tpo $(DEPDIR)/libpymagick_la-_DrawableDashOffset.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableDashOffset.cpp' object='libpymagick_la-_DrawableDashOffset.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableDashOffset.lo `test -f '_DrawableDashOffset.cpp' || echo '$(srcdir)/'`_DrawableDashOffset.cpp
libpymagick_la-_VPath.lo: _VPath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_VPath.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_VPath.Tpo -c -o libpymagick_la-_VPath.lo `test -f '_VPath.cpp' || echo '$(srcdir)/'`_VPath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_VPath.Tpo $(DEPDIR)/libpymagick_la-_VPath.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_VPath.cpp' object='libpymagick_la-_VPath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_VPath.lo `test -f '_VPath.cpp' || echo '$(srcdir)/'`_VPath.cpp
libpymagick_la-_DrawableStrokeColor.lo: _DrawableStrokeColor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableStrokeColor.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableStrokeColor.Tpo -c -o libpymagick_la-_DrawableStrokeColor.lo `test -f '_DrawableStrokeColor.cpp' || echo '$(srcdir)/'`_DrawableStrokeColor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableStrokeColor.Tpo $(DEPDIR)/libpymagick_la-_DrawableStrokeColor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableStrokeColor.cpp' object='libpymagick_la-_DrawableStrokeColor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableStrokeColor.lo `test -f '_DrawableStrokeColor.cpp' || echo '$(srcdir)/'`_DrawableStrokeColor.cpp
libpymagick_la-_PathSmoothQuadraticCurvetoRel.lo: _PathSmoothQuadraticCurvetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathSmoothQuadraticCurvetoRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathSmoothQuadraticCurvetoRel.Tpo -c -o libpymagick_la-_PathSmoothQuadraticCurvetoRel.lo `test -f '_PathSmoothQuadraticCurvetoRel.cpp' || echo '$(srcdir)/'`_PathSmoothQuadraticCurvetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathSmoothQuadraticCurvetoRel.Tpo $(DEPDIR)/libpymagick_la-_PathSmoothQuadraticCurvetoRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathSmoothQuadraticCurvetoRel.cpp' object='libpymagick_la-_PathSmoothQuadraticCurvetoRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathSmoothQuadraticCurvetoRel.lo `test -f '_PathSmoothQuadraticCurvetoRel.cpp' || echo '$(srcdir)/'`_PathSmoothQuadraticCurvetoRel.cpp
libpymagick_la-_DrawableStrokeAntialias.lo: _DrawableStrokeAntialias.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableStrokeAntialias.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableStrokeAntialias.Tpo -c -o libpymagick_la-_DrawableStrokeAntialias.lo `test -f '_DrawableStrokeAntialias.cpp' || echo '$(srcdir)/'`_DrawableStrokeAntialias.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableStrokeAntialias.Tpo $(DEPDIR)/libpymagick_la-_DrawableStrokeAntialias.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableStrokeAntialias.cpp' object='libpymagick_la-_DrawableStrokeAntialias.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableStrokeAntialias.lo `test -f '_DrawableStrokeAntialias.cpp' || echo '$(srcdir)/'`_DrawableStrokeAntialias.cpp
libpymagick_la-_DrawableLine.lo: _DrawableLine.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableLine.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableLine.Tpo -c -o libpymagick_la-_DrawableLine.lo `test -f '_DrawableLine.cpp' || echo '$(srcdir)/'`_DrawableLine.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableLine.Tpo $(DEPDIR)/libpymagick_la-_DrawableLine.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableLine.cpp' object='libpymagick_la-_DrawableLine.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableLine.lo `test -f '_DrawableLine.cpp' || echo '$(srcdir)/'`_DrawableLine.cpp
libpymagick_la-_DrawablePushGraphicContext.lo: _DrawablePushGraphicContext.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePushGraphicContext.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePushGraphicContext.Tpo -c -o libpymagick_la-_DrawablePushGraphicContext.lo `test -f '_DrawablePushGraphicContext.cpp' || echo '$(srcdir)/'`_DrawablePushGraphicContext.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePushGraphicContext.Tpo $(DEPDIR)/libpymagick_la-_DrawablePushGraphicContext.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePushGraphicContext.cpp' object='libpymagick_la-_DrawablePushGraphicContext.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePushGraphicContext.lo `test -f '_DrawablePushGraphicContext.cpp' || echo '$(srcdir)/'`_DrawablePushGraphicContext.cpp
libpymagick_la-_PathCurvetoRel.lo: _PathCurvetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathCurvetoRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathCurvetoRel.Tpo -c -o libpymagick_la-_PathCurvetoRel.lo `test -f '_PathCurvetoRel.cpp' || echo '$(srcdir)/'`_PathCurvetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathCurvetoRel.Tpo $(DEPDIR)/libpymagick_la-_PathCurvetoRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathCurvetoRel.cpp' object='libpymagick_la-_PathCurvetoRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathCurvetoRel.lo `test -f '_PathCurvetoRel.cpp' || echo '$(srcdir)/'`_PathCurvetoRel.cpp
libpymagick_la-_TypeMetric.lo: _TypeMetric.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_TypeMetric.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_TypeMetric.Tpo -c -o libpymagick_la-_TypeMetric.lo `test -f '_TypeMetric.cpp' || echo '$(srcdir)/'`_TypeMetric.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_TypeMetric.Tpo $(DEPDIR)/libpymagick_la-_TypeMetric.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_TypeMetric.cpp' object='libpymagick_la-_TypeMetric.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_TypeMetric.lo `test -f '_TypeMetric.cpp' || echo '$(srcdir)/'`_TypeMetric.cpp
libpymagick_la-_DrawableStrokeOpacity.lo: _DrawableStrokeOpacity.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableStrokeOpacity.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableStrokeOpacity.Tpo -c -o libpymagick_la-_DrawableStrokeOpacity.lo `test -f '_DrawableStrokeOpacity.cpp' || echo '$(srcdir)/'`_DrawableStrokeOpacity.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableStrokeOpacity.Tpo $(DEPDIR)/libpymagick_la-_DrawableStrokeOpacity.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableStrokeOpacity.cpp' object='libpymagick_la-_DrawableStrokeOpacity.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableStrokeOpacity.lo `test -f '_DrawableStrokeOpacity.cpp' || echo '$(srcdir)/'`_DrawableStrokeOpacity.cpp
libpymagick_la-_DrawablePopClipPath.lo: _DrawablePopClipPath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePopClipPath.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePopClipPath.Tpo -c -o libpymagick_la-_DrawablePopClipPath.lo `test -f '_DrawablePopClipPath.cpp' || echo '$(srcdir)/'`_DrawablePopClipPath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePopClipPath.Tpo $(DEPDIR)/libpymagick_la-_DrawablePopClipPath.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePopClipPath.cpp' object='libpymagick_la-_DrawablePopClipPath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePopClipPath.lo `test -f '_DrawablePopClipPath.cpp' || echo '$(srcdir)/'`_DrawablePopClipPath.cpp
libpymagick_la-_DrawablePath.lo: _DrawablePath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePath.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePath.Tpo -c -o libpymagick_la-_DrawablePath.lo `test -f '_DrawablePath.cpp' || echo '$(srcdir)/'`_DrawablePath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePath.Tpo $(DEPDIR)/libpymagick_la-_DrawablePath.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePath.cpp' object='libpymagick_la-_DrawablePath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePath.lo `test -f '_DrawablePath.cpp' || echo '$(srcdir)/'`_DrawablePath.cpp
libpymagick_la-_Coordinate.lo: _Coordinate.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_Coordinate.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_Coordinate.Tpo -c -o libpymagick_la-_Coordinate.lo `test -f '_Coordinate.cpp' || echo '$(srcdir)/'`_Coordinate.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_Coordinate.Tpo $(DEPDIR)/libpymagick_la-_Coordinate.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_Coordinate.cpp' object='libpymagick_la-_Coordinate.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_Coordinate.lo `test -f '_Coordinate.cpp' || echo '$(srcdir)/'`_Coordinate.cpp
libpymagick_la-_PathQuadraticCurvetoArgs.lo: _PathQuadraticCurvetoArgs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathQuadraticCurvetoArgs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoArgs.Tpo -c -o libpymagick_la-_PathQuadraticCurvetoArgs.lo `test -f '_PathQuadraticCurvetoArgs.cpp' || echo '$(srcdir)/'`_PathQuadraticCurvetoArgs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoArgs.Tpo $(DEPDIR)/libpymagick_la-_PathQuadraticCurvetoArgs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathQuadraticCurvetoArgs.cpp' object='libpymagick_la-_PathQuadraticCurvetoArgs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathQuadraticCurvetoArgs.lo `test -f '_PathQuadraticCurvetoArgs.cpp' || echo '$(srcdir)/'`_PathQuadraticCurvetoArgs.cpp
libpymagick_la-_DrawableGravity.lo: _DrawableGravity.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableGravity.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableGravity.Tpo -c -o libpymagick_la-_DrawableGravity.lo `test -f '_DrawableGravity.cpp' || echo '$(srcdir)/'`_DrawableGravity.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableGravity.Tpo $(DEPDIR)/libpymagick_la-_DrawableGravity.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableGravity.cpp' object='libpymagick_la-_DrawableGravity.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableGravity.lo `test -f '_DrawableGravity.cpp' || echo '$(srcdir)/'`_DrawableGravity.cpp
libpymagick_la-_PathCurvetoArgs.lo: _PathCurvetoArgs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathCurvetoArgs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathCurvetoArgs.Tpo -c -o libpymagick_la-_PathCurvetoArgs.lo `test -f '_PathCurvetoArgs.cpp' || echo '$(srcdir)/'`_PathCurvetoArgs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathCurvetoArgs.Tpo $(DEPDIR)/libpymagick_la-_PathCurvetoArgs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathCurvetoArgs.cpp' object='libpymagick_la-_PathCurvetoArgs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathCurvetoArgs.lo `test -f '_PathCurvetoArgs.cpp' || echo '$(srcdir)/'`_PathCurvetoArgs.cpp
libpymagick_la-_DrawablePolyline.lo: _DrawablePolyline.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePolyline.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePolyline.Tpo -c -o libpymagick_la-_DrawablePolyline.lo `test -f '_DrawablePolyline.cpp' || echo '$(srcdir)/'`_DrawablePolyline.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePolyline.Tpo $(DEPDIR)/libpymagick_la-_DrawablePolyline.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePolyline.cpp' object='libpymagick_la-_DrawablePolyline.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePolyline.lo `test -f '_DrawablePolyline.cpp' || echo '$(srcdir)/'`_DrawablePolyline.cpp
libpymagick_la-_DrawableStrokeLineJoin.lo: _DrawableStrokeLineJoin.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableStrokeLineJoin.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableStrokeLineJoin.Tpo -c -o libpymagick_la-_DrawableStrokeLineJoin.lo `test -f '_DrawableStrokeLineJoin.cpp' || echo '$(srcdir)/'`_DrawableStrokeLineJoin.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableStrokeLineJoin.Tpo $(DEPDIR)/libpymagick_la-_DrawableStrokeLineJoin.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableStrokeLineJoin.cpp' object='libpymagick_la-_DrawableStrokeLineJoin.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableStrokeLineJoin.lo `test -f '_DrawableStrokeLineJoin.cpp' || echo '$(srcdir)/'`_DrawableStrokeLineJoin.cpp
libpymagick_la-_DrawableFillColor.lo: _DrawableFillColor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableFillColor.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableFillColor.Tpo -c -o libpymagick_la-_DrawableFillColor.lo `test -f '_DrawableFillColor.cpp' || echo '$(srcdir)/'`_DrawableFillColor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableFillColor.Tpo $(DEPDIR)/libpymagick_la-_DrawableFillColor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableFillColor.cpp' object='libpymagick_la-_DrawableFillColor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableFillColor.lo `test -f '_DrawableFillColor.cpp' || echo '$(srcdir)/'`_DrawableFillColor.cpp
libpymagick_la-_PathLinetoHorizontalAbs.lo: _PathLinetoHorizontalAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathLinetoHorizontalAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathLinetoHorizontalAbs.Tpo -c -o libpymagick_la-_PathLinetoHorizontalAbs.lo `test -f '_PathLinetoHorizontalAbs.cpp' || echo '$(srcdir)/'`_PathLinetoHorizontalAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathLinetoHorizontalAbs.Tpo $(DEPDIR)/libpymagick_la-_PathLinetoHorizontalAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathLinetoHorizontalAbs.cpp' object='libpymagick_la-_PathLinetoHorizontalAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathLinetoHorizontalAbs.lo `test -f '_PathLinetoHorizontalAbs.cpp' || echo '$(srcdir)/'`_PathLinetoHorizontalAbs.cpp
libpymagick_la-_DrawableStrokeLineCap.lo: _DrawableStrokeLineCap.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableStrokeLineCap.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableStrokeLineCap.Tpo -c -o libpymagick_la-_DrawableStrokeLineCap.lo `test -f '_DrawableStrokeLineCap.cpp' || echo '$(srcdir)/'`_DrawableStrokeLineCap.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableStrokeLineCap.Tpo $(DEPDIR)/libpymagick_la-_DrawableStrokeLineCap.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableStrokeLineCap.cpp' object='libpymagick_la-_DrawableStrokeLineCap.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableStrokeLineCap.lo `test -f '_DrawableStrokeLineCap.cpp' || echo '$(srcdir)/'`_DrawableStrokeLineCap.cpp
libpymagick_la-_DrawablePopGraphicContext.lo: _DrawablePopGraphicContext.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePopGraphicContext.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePopGraphicContext.Tpo -c -o libpymagick_la-_DrawablePopGraphicContext.lo `test -f '_DrawablePopGraphicContext.cpp' || echo '$(srcdir)/'`_DrawablePopGraphicContext.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePopGraphicContext.Tpo $(DEPDIR)/libpymagick_la-_DrawablePopGraphicContext.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePopGraphicContext.cpp' object='libpymagick_la-_DrawablePopGraphicContext.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePopGraphicContext.lo `test -f '_DrawablePopGraphicContext.cpp' || echo '$(srcdir)/'`_DrawablePopGraphicContext.cpp
libpymagick_la-_Geometry.lo: _Geometry.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_Geometry.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_Geometry.Tpo -c -o libpymagick_la-_Geometry.lo `test -f '_Geometry.cpp' || echo '$(srcdir)/'`_Geometry.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_Geometry.Tpo $(DEPDIR)/libpymagick_la-_Geometry.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_Geometry.cpp' object='libpymagick_la-_Geometry.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_Geometry.lo `test -f '_Geometry.cpp' || echo '$(srcdir)/'`_Geometry.cpp
libpymagick_la-_CompositeOperator.lo: _CompositeOperator.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_CompositeOperator.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_CompositeOperator.Tpo -c -o libpymagick_la-_CompositeOperator.lo `test -f '_CompositeOperator.cpp' || echo '$(srcdir)/'`_CompositeOperator.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_CompositeOperator.Tpo $(DEPDIR)/libpymagick_la-_CompositeOperator.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_CompositeOperator.cpp' object='libpymagick_la-_CompositeOperator.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_CompositeOperator.lo `test -f '_CompositeOperator.cpp' || echo '$(srcdir)/'`_CompositeOperator.cpp
libpymagick_la-_GravityType.lo: _GravityType.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_GravityType.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_GravityType.Tpo -c -o libpymagick_la-_GravityType.lo `test -f '_GravityType.cpp' || echo '$(srcdir)/'`_GravityType.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_GravityType.Tpo $(DEPDIR)/libpymagick_la-_GravityType.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_GravityType.cpp' object='libpymagick_la-_GravityType.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_GravityType.lo `test -f '_GravityType.cpp' || echo '$(srcdir)/'`_GravityType.cpp
libpymagick_la-_FilterTypes.lo: _FilterTypes.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_FilterTypes.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_FilterTypes.Tpo -c -o libpymagick_la-_FilterTypes.lo `test -f '_FilterTypes.cpp' || echo '$(srcdir)/'`_FilterTypes.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_FilterTypes.Tpo $(DEPDIR)/libpymagick_la-_FilterTypes.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_FilterTypes.cpp' object='libpymagick_la-_FilterTypes.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_FilterTypes.lo `test -f '_FilterTypes.cpp' || echo '$(srcdir)/'`_FilterTypes.cpp
libpymagick_la-_DecorationType.lo: _DecorationType.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DecorationType.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DecorationType.Tpo -c -o libpymagick_la-_DecorationType.lo `test -f '_DecorationType.cpp' || echo '$(srcdir)/'`_DecorationType.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DecorationType.Tpo $(DEPDIR)/libpymagick_la-_DecorationType.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DecorationType.cpp' object='libpymagick_la-_DecorationType.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DecorationType.lo `test -f '_DecorationType.cpp' || echo '$(srcdir)/'`_DecorationType.cpp
libpymagick_la-_CompressionType.lo: _CompressionType.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_CompressionType.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_CompressionType.Tpo -c -o libpymagick_la-_CompressionType.lo `test -f '_CompressionType.cpp' || echo '$(srcdir)/'`_CompressionType.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_CompressionType.Tpo $(DEPDIR)/libpymagick_la-_CompressionType.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_CompressionType.cpp' object='libpymagick_la-_CompressionType.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_CompressionType.lo `test -f '_CompressionType.cpp' || echo '$(srcdir)/'`_CompressionType.cpp
libpymagick_la-_DrawablePopPattern.lo: _DrawablePopPattern.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePopPattern.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePopPattern.Tpo -c -o libpymagick_la-_DrawablePopPattern.lo `test -f '_DrawablePopPattern.cpp' || echo '$(srcdir)/'`_DrawablePopPattern.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePopPattern.Tpo $(DEPDIR)/libpymagick_la-_DrawablePopPattern.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePopPattern.cpp' object='libpymagick_la-_DrawablePopPattern.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePopPattern.lo `test -f '_DrawablePopPattern.cpp' || echo '$(srcdir)/'`_DrawablePopPattern.cpp
libpymagick_la-_PathSmoothQuadraticCurvetoAbs.lo: _PathSmoothQuadraticCurvetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathSmoothQuadraticCurvetoAbs.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathSmoothQuadraticCurvetoAbs.Tpo -c -o libpymagick_la-_PathSmoothQuadraticCurvetoAbs.lo `test -f '_PathSmoothQuadraticCurvetoAbs.cpp' || echo '$(srcdir)/'`_PathSmoothQuadraticCurvetoAbs.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathSmoothQuadraticCurvetoAbs.Tpo $(DEPDIR)/libpymagick_la-_PathSmoothQuadraticCurvetoAbs.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathSmoothQuadraticCurvetoAbs.cpp' object='libpymagick_la-_PathSmoothQuadraticCurvetoAbs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathSmoothQuadraticCurvetoAbs.lo `test -f '_PathSmoothQuadraticCurvetoAbs.cpp' || echo '$(srcdir)/'`_PathSmoothQuadraticCurvetoAbs.cpp
libpymagick_la-_DrawableFillOpacity.lo: _DrawableFillOpacity.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableFillOpacity.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableFillOpacity.Tpo -c -o libpymagick_la-_DrawableFillOpacity.lo `test -f '_DrawableFillOpacity.cpp' || echo '$(srcdir)/'`_DrawableFillOpacity.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableFillOpacity.Tpo $(DEPDIR)/libpymagick_la-_DrawableFillOpacity.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableFillOpacity.cpp' object='libpymagick_la-_DrawableFillOpacity.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableFillOpacity.lo `test -f '_DrawableFillOpacity.cpp' || echo '$(srcdir)/'`_DrawableFillOpacity.cpp
libpymagick_la-_DrawableTextUnderColor.lo: _DrawableTextUnderColor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableTextUnderColor.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableTextUnderColor.Tpo -c -o libpymagick_la-_DrawableTextUnderColor.lo `test -f '_DrawableTextUnderColor.cpp' || echo '$(srcdir)/'`_DrawableTextUnderColor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableTextUnderColor.Tpo $(DEPDIR)/libpymagick_la-_DrawableTextUnderColor.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableTextUnderColor.cpp' object='libpymagick_la-_DrawableTextUnderColor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableTextUnderColor.lo `test -f '_DrawableTextUnderColor.cpp' || echo '$(srcdir)/'`_DrawableTextUnderColor.cpp
libpymagick_la-_DrawablePolygon.lo: _DrawablePolygon.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawablePolygon.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawablePolygon.Tpo -c -o libpymagick_la-_DrawablePolygon.lo `test -f '_DrawablePolygon.cpp' || echo '$(srcdir)/'`_DrawablePolygon.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawablePolygon.Tpo $(DEPDIR)/libpymagick_la-_DrawablePolygon.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawablePolygon.cpp' object='libpymagick_la-_DrawablePolygon.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawablePolygon.lo `test -f '_DrawablePolygon.cpp' || echo '$(srcdir)/'`_DrawablePolygon.cpp
libpymagick_la-_main.lo: _main.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_main.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_main.Tpo -c -o libpymagick_la-_main.lo `test -f '_main.cpp' || echo '$(srcdir)/'`_main.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_main.Tpo $(DEPDIR)/libpymagick_la-_main.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_main.cpp' object='libpymagick_la-_main.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_main.lo `test -f '_main.cpp' || echo '$(srcdir)/'`_main.cpp
libpymagick_la-_DrawableRectangle.lo: _DrawableRectangle.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableRectangle.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableRectangle.Tpo -c -o libpymagick_la-_DrawableRectangle.lo `test -f '_DrawableRectangle.cpp' || echo '$(srcdir)/'`_DrawableRectangle.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableRectangle.Tpo $(DEPDIR)/libpymagick_la-_DrawableRectangle.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableRectangle.cpp' object='libpymagick_la-_DrawableRectangle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableRectangle.lo `test -f '_DrawableRectangle.cpp' || echo '$(srcdir)/'`_DrawableRectangle.cpp
libpymagick_la-_PathMovetoRel.lo: _PathMovetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathMovetoRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathMovetoRel.Tpo -c -o libpymagick_la-_PathMovetoRel.lo `test -f '_PathMovetoRel.cpp' || echo '$(srcdir)/'`_PathMovetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathMovetoRel.Tpo $(DEPDIR)/libpymagick_la-_PathMovetoRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathMovetoRel.cpp' object='libpymagick_la-_PathMovetoRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathMovetoRel.lo `test -f '_PathMovetoRel.cpp' || echo '$(srcdir)/'`_PathMovetoRel.cpp
libpymagick_la-_Drawable.lo: _Drawable.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_Drawable.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_Drawable.Tpo -c -o libpymagick_la-_Drawable.lo `test -f '_Drawable.cpp' || echo '$(srcdir)/'`_Drawable.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_Drawable.Tpo $(DEPDIR)/libpymagick_la-_Drawable.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_Drawable.cpp' object='libpymagick_la-_Drawable.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_Drawable.lo `test -f '_Drawable.cpp' || echo '$(srcdir)/'`_Drawable.cpp
libpymagick_la-_DrawableMiterLimit.lo: _DrawableMiterLimit.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_DrawableMiterLimit.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_DrawableMiterLimit.Tpo -c -o libpymagick_la-_DrawableMiterLimit.lo `test -f '_DrawableMiterLimit.cpp' || echo '$(srcdir)/'`_DrawableMiterLimit.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_DrawableMiterLimit.Tpo $(DEPDIR)/libpymagick_la-_DrawableMiterLimit.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_DrawableMiterLimit.cpp' object='libpymagick_la-_DrawableMiterLimit.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_DrawableMiterLimit.lo `test -f '_DrawableMiterLimit.cpp' || echo '$(srcdir)/'`_DrawableMiterLimit.cpp
libpymagick_la-_PathClosePath.lo: _PathClosePath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathClosePath.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathClosePath.Tpo -c -o libpymagick_la-_PathClosePath.lo `test -f '_PathClosePath.cpp' || echo '$(srcdir)/'`_PathClosePath.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathClosePath.Tpo $(DEPDIR)/libpymagick_la-_PathClosePath.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathClosePath.cpp' object='libpymagick_la-_PathClosePath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathClosePath.lo `test -f '_PathClosePath.cpp' || echo '$(srcdir)/'`_PathClosePath.cpp
libpymagick_la-_PathSmoothCurvetoRel.lo: _PathSmoothCurvetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathSmoothCurvetoRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathSmoothCurvetoRel.Tpo -c -o libpymagick_la-_PathSmoothCurvetoRel.lo `test -f '_PathSmoothCurvetoRel.cpp' || echo '$(srcdir)/'`_PathSmoothCurvetoRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathSmoothCurvetoRel.Tpo $(DEPDIR)/libpymagick_la-_PathSmoothCurvetoRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathSmoothCurvetoRel.cpp' object='libpymagick_la-_PathSmoothCurvetoRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathSmoothCurvetoRel.lo `test -f '_PathSmoothCurvetoRel.cpp' || echo '$(srcdir)/'`_PathSmoothCurvetoRel.cpp
libpymagick_la-_PathLinetoHorizontalRel.lo: _PathLinetoHorizontalRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -MT libpymagick_la-_PathLinetoHorizontalRel.lo -MD -MP -MF $(DEPDIR)/libpymagick_la-_PathLinetoHorizontalRel.Tpo -c -o libpymagick_la-_PathLinetoHorizontalRel.lo `test -f '_PathLinetoHorizontalRel.cpp' || echo '$(srcdir)/'`_PathLinetoHorizontalRel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libpymagick_la-_PathLinetoHorizontalRel.Tpo $(DEPDIR)/libpymagick_la-_PathLinetoHorizontalRel.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='_PathLinetoHorizontalRel.cpp' object='libpymagick_la-_PathLinetoHorizontalRel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpymagick_la_CXXFLAGS) $(CXXFLAGS) -c -o libpymagick_la-_PathLinetoHorizontalRel.lo `test -f '_PathLinetoHorizontalRel.cpp' || echo '$(srcdir)/'`_PathLinetoHorizontalRel.cpp
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: CTAGS
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscopelist: $(HEADERS) $(SOURCES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-am
all-am: Makefile $(LTLIBRARIES)
installdirs:
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am:
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am:
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am:
.MAKE: install-am install-strip
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
clean-libtool clean-noinstLTLIBRARIES cscopelist ctags \
distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir dvi dvi-am html \
html-am info info-am install install-am install-data \
install-data-am install-dvi install-dvi-am install-exec \
install-exec-am install-html install-html-am install-info \
install-info-am install-man install-pdf install-pdf-am \
install-ps install-ps-am install-strip installcheck \
installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags uninstall uninstall-am
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
PythonMagick-0.9.8/pythonmagick_src/_DrawableText.cpp 0000644 0000024 0000024 00000004204 11620751064 017627 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableText_Wrapper: Magick::DrawableText
{
Magick_DrawableText_Wrapper(PyObject* py_self_, const double p0, const double p1, const std::string& p2):
Magick::DrawableText(p0, p1, p2), py_self(py_self_) {}
Magick_DrawableText_Wrapper(PyObject* py_self_, const double p0, const double p1, const std::string& p2, const std::string& p3):
Magick::DrawableText(p0, p1, p2, p3), py_self(py_self_) {}
Magick_DrawableText_Wrapper(PyObject* py_self_, const Magick::DrawableText& p0):
Magick::DrawableText(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableText()
{
class_< Magick::DrawableText, Magick_DrawableText_Wrapper >("DrawableText", init< const Magick::DrawableText& >())
.def(init< const double, const double, const std::string& >())
.def(init< const double, const double, const std::string&, const std::string& >())
.def("encoding", &Magick::DrawableText::encoding)
.def("x", (void (Magick::DrawableText::*)(double) )&Magick::DrawableText::x)
.def("x", (double (Magick::DrawableText::*)() const)&Magick::DrawableText::x)
.def("y", (void (Magick::DrawableText::*)(double) )&Magick::DrawableText::y)
.def("y", (double (Magick::DrawableText::*)() const)&Magick::DrawableText::y)
.def("text", (void (Magick::DrawableText::*)(const std::string&) )&Magick::DrawableText::text)
.def("text", (std::string (Magick::DrawableText::*)() const)&Magick::DrawableText::text)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawablePushGraphicContext.cpp 0000644 0000024 0000024 00000002150 11620751064 022463 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawablePushGraphicContext_Wrapper: Magick::DrawablePushGraphicContext
{
Magick_DrawablePushGraphicContext_Wrapper(PyObject* py_self_):
Magick::DrawablePushGraphicContext(), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawablePushGraphicContext()
{
class_< Magick::DrawablePushGraphicContext, boost::noncopyable, Magick_DrawablePushGraphicContext_Wrapper >("DrawablePushGraphicContext", init< >())
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableColor.cpp 0000644 0000024 0000024 00000003255 11620751063 017765 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableColor_Wrapper: Magick::DrawableColor
{
Magick_DrawableColor_Wrapper(PyObject* py_self_, double p0, double p1, MagickCore::PaintMethod p2):
Magick::DrawableColor(p0, p1, p2), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableColor()
{
class_< Magick::DrawableColor, boost::noncopyable, Magick_DrawableColor_Wrapper >("DrawableColor", init< double, double, MagickCore::PaintMethod >())
.def("x", (void (Magick::DrawableColor::*)(double) )&Magick::DrawableColor::x)
.def("x", (double (Magick::DrawableColor::*)() const)&Magick::DrawableColor::x)
.def("y", (void (Magick::DrawableColor::*)(double) )&Magick::DrawableColor::y)
.def("y", (double (Magick::DrawableColor::*)() const)&Magick::DrawableColor::y)
.def("paintMethod", (void (Magick::DrawableColor::*)(MagickCore::PaintMethod) )&Magick::DrawableColor::paintMethod)
.def("paintMethod", (MagickCore::PaintMethod (Magick::DrawableColor::*)() const)&Magick::DrawableColor::paintMethod)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_PathArcArgs.cpp 0000644 0000024 0000024 00000004363 11574437254 017420 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_PathArcArgs()
{
class_< Magick::PathArcArgs >("PathArcArgs", init< >())
.def(init< double, double, double, bool, bool, double, double >())
.def(init< const Magick::PathArcArgs& >())
.def("radiusX", (void (Magick::PathArcArgs::*)(double) )&Magick::PathArcArgs::radiusX)
.def("radiusX", (double (Magick::PathArcArgs::*)() const)&Magick::PathArcArgs::radiusX)
.def("radiusY", (void (Magick::PathArcArgs::*)(double) )&Magick::PathArcArgs::radiusY)
.def("radiusY", (double (Magick::PathArcArgs::*)() const)&Magick::PathArcArgs::radiusY)
.def("xAxisRotation", (void (Magick::PathArcArgs::*)(double) )&Magick::PathArcArgs::xAxisRotation)
.def("xAxisRotation", (double (Magick::PathArcArgs::*)() const)&Magick::PathArcArgs::xAxisRotation)
.def("largeArcFlag", (void (Magick::PathArcArgs::*)(bool) )&Magick::PathArcArgs::largeArcFlag)
.def("largeArcFlag", (bool (Magick::PathArcArgs::*)() const)&Magick::PathArcArgs::largeArcFlag)
.def("sweepFlag", (void (Magick::PathArcArgs::*)(bool) )&Magick::PathArcArgs::sweepFlag)
.def("sweepFlag", (bool (Magick::PathArcArgs::*)() const)&Magick::PathArcArgs::sweepFlag)
.def("x", (void (Magick::PathArcArgs::*)(double) )&Magick::PathArcArgs::x)
.def("x", (double (Magick::PathArcArgs::*)() const)&Magick::PathArcArgs::x)
.def("y", (void (Magick::PathArcArgs::*)(double) )&Magick::PathArcArgs::y)
.def("y", (double (Magick::PathArcArgs::*)() const)&Magick::PathArcArgs::y)
.def( self != self )
.def( self > self )
.def( self <= self )
.def( self >= self )
.def( self < self )
.def( self == self )
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawablePushClipPath.cpp 0000644 0000024 0000024 00000002452 11620751064 021252 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawablePushClipPath_Wrapper: Magick::DrawablePushClipPath
{
Magick_DrawablePushClipPath_Wrapper(PyObject* py_self_, const std::string& p0):
Magick::DrawablePushClipPath(p0), py_self(py_self_) {}
Magick_DrawablePushClipPath_Wrapper(PyObject* py_self_, const Magick::DrawablePushClipPath& p0):
Magick::DrawablePushClipPath(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawablePushClipPath()
{
class_< Magick::DrawablePushClipPath, Magick_DrawablePushClipPath_Wrapper >("DrawablePushClipPath", init< const std::string& >())
.def(init< const Magick::DrawablePushClipPath& >())
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_main.cpp 0000644 0000024 0000024 00000016165 11202574470 016176 0000000 0000000 // Include =====================================================================
#include
// Exports =====================================================================
void Export_pyste_src_VPath();
void Export_pyste_src_TypeMetric();
void Export_pyste_src_Pixels();
void Export_pyste_src_PathSmoothQuadraticCurvetoRel();
void Export_pyste_src_PathSmoothQuadraticCurvetoAbs();
void Export_pyste_src_PathSmoothCurvetoRel();
void Export_pyste_src_PathSmoothCurvetoAbs();
void Export_pyste_src_PathQuadraticCurvetoRel();
void Export_pyste_src_PathQuadraticCurvetoArgs();
void Export_pyste_src_PathQuadraticCurvetoAbs();
void Export_pyste_src_PathMovetoRel();
void Export_pyste_src_PathMovetoAbs();
void Export_pyste_src_PathLinetoVerticalRel();
void Export_pyste_src_PathLinetoVerticalAbs();
void Export_pyste_src_PathLinetoRel();
void Export_pyste_src_PathLinetoHorizontalRel();
void Export_pyste_src_PathLinetoHorizontalAbs();
void Export_pyste_src_PathLinetoAbs();
void Export_pyste_src_PathCurvetoRel();
void Export_pyste_src_PathCurvetoArgs();
void Export_pyste_src_PathCurvetoAbs();
void Export_pyste_src_PathClosePath();
void Export_pyste_src_PathArcRel();
void Export_pyste_src_PathArcArgs();
void Export_pyste_src_PathArcAbs();
void Export_pyste_src_Image();
void Export_pyste_src_GravityType();
void Export_pyste_src_Geometry();
void Export_pyste_src_FilterTypes();
void Export_pyste_src_Exception();
void Export_pyste_src_DrawableViewbox();
void Export_pyste_src_DrawableTranslation();
void Export_pyste_src_DrawableTextUnderColor();
void Export_pyste_src_DrawableTextDecoration();
void Export_pyste_src_DrawableTextAntialias();
void Export_pyste_src_DrawableText();
void Export_pyste_src_DrawableStrokeWidth();
void Export_pyste_src_DrawableStrokeOpacity();
void Export_pyste_src_DrawableStrokeLineJoin();
void Export_pyste_src_DrawableStrokeLineCap();
void Export_pyste_src_DrawableStrokeColor();
void Export_pyste_src_DrawableStrokeAntialias();
void Export_pyste_src_DrawableSkewY();
void Export_pyste_src_DrawableSkewX();
void Export_pyste_src_DrawableScaling();
void Export_pyste_src_DrawableRoundRectangle();
void Export_pyste_src_DrawableRotation();
void Export_pyste_src_DrawableRectangle();
void Export_pyste_src_DrawablePushPattern();
void Export_pyste_src_DrawablePushGraphicContext();
void Export_pyste_src_DrawablePushClipPath();
void Export_pyste_src_DrawablePopPattern();
void Export_pyste_src_DrawablePopGraphicContext();
void Export_pyste_src_DrawablePopClipPath();
void Export_pyste_src_DrawablePolyline();
void Export_pyste_src_DrawablePolygon();
void Export_pyste_src_DrawablePointSize();
void Export_pyste_src_DrawablePoint();
void Export_pyste_src_DrawablePath();
void Export_pyste_src_DrawableMiterLimit();
void Export_pyste_src_DrawableMatte();
void Export_pyste_src_DrawableLine();
void Export_pyste_src_DrawableGravity();
void Export_pyste_src_DrawableFont();
void Export_pyste_src_DrawableFillRule();
void Export_pyste_src_DrawableFillOpacity();
void Export_pyste_src_DrawableFillColor();
void Export_pyste_src_DrawableEllipse();
void Export_pyste_src_DrawableDashOffset();
void Export_pyste_src_DrawableDashArray();
void Export_pyste_src_DrawableCompositeImage();
void Export_pyste_src_DrawableColor();
void Export_pyste_src_DrawableClipPath();
void Export_pyste_src_DrawableCircle();
void Export_pyste_src_DrawableBezier();
void Export_pyste_src_DrawableArc();
void Export_pyste_src_DrawableAffine();
void Export_pyste_src_Drawable();
void Export_pyste_src_DecorationType();
void Export_pyste_src_Coordinate();
void Export_pyste_src_CompressionType();
void Export_pyste_src_CompositeOperator();
void Export_pyste_src_Color();
void Export_pyste_src_Blob();
// Module ======================================================================
BOOST_PYTHON_MODULE(_PythonMagick)
{
Export_pyste_src_VPath();
Export_pyste_src_TypeMetric();
Export_pyste_src_Pixels();
Export_pyste_src_PathSmoothQuadraticCurvetoRel();
Export_pyste_src_PathSmoothQuadraticCurvetoAbs();
Export_pyste_src_PathSmoothCurvetoRel();
Export_pyste_src_PathSmoothCurvetoAbs();
Export_pyste_src_PathQuadraticCurvetoRel();
Export_pyste_src_PathQuadraticCurvetoArgs();
Export_pyste_src_PathQuadraticCurvetoAbs();
Export_pyste_src_PathMovetoRel();
Export_pyste_src_PathMovetoAbs();
Export_pyste_src_PathLinetoVerticalRel();
Export_pyste_src_PathLinetoVerticalAbs();
Export_pyste_src_PathLinetoRel();
Export_pyste_src_PathLinetoHorizontalRel();
Export_pyste_src_PathLinetoHorizontalAbs();
Export_pyste_src_PathLinetoAbs();
Export_pyste_src_PathCurvetoRel();
Export_pyste_src_PathCurvetoArgs();
Export_pyste_src_PathCurvetoAbs();
Export_pyste_src_PathClosePath();
Export_pyste_src_PathArcRel();
Export_pyste_src_PathArcArgs();
Export_pyste_src_PathArcAbs();
Export_pyste_src_Image();
Export_pyste_src_GravityType();
Export_pyste_src_Geometry();
Export_pyste_src_FilterTypes();
Export_pyste_src_Exception();
Export_pyste_src_DrawableViewbox();
Export_pyste_src_DrawableTranslation();
Export_pyste_src_DrawableTextUnderColor();
Export_pyste_src_DrawableTextDecoration();
Export_pyste_src_DrawableTextAntialias();
Export_pyste_src_DrawableText();
Export_pyste_src_DrawableStrokeWidth();
Export_pyste_src_DrawableStrokeOpacity();
Export_pyste_src_DrawableStrokeLineJoin();
Export_pyste_src_DrawableStrokeLineCap();
Export_pyste_src_DrawableStrokeColor();
Export_pyste_src_DrawableStrokeAntialias();
Export_pyste_src_DrawableSkewY();
Export_pyste_src_DrawableSkewX();
Export_pyste_src_DrawableScaling();
Export_pyste_src_DrawableRoundRectangle();
Export_pyste_src_DrawableRotation();
Export_pyste_src_DrawableRectangle();
Export_pyste_src_DrawablePushPattern();
Export_pyste_src_DrawablePushGraphicContext();
Export_pyste_src_DrawablePushClipPath();
Export_pyste_src_DrawablePopPattern();
Export_pyste_src_DrawablePopGraphicContext();
Export_pyste_src_DrawablePopClipPath();
Export_pyste_src_DrawablePolyline();
Export_pyste_src_DrawablePolygon();
Export_pyste_src_DrawablePointSize();
Export_pyste_src_DrawablePoint();
Export_pyste_src_DrawablePath();
Export_pyste_src_DrawableMiterLimit();
Export_pyste_src_DrawableMatte();
Export_pyste_src_DrawableLine();
Export_pyste_src_DrawableGravity();
Export_pyste_src_DrawableFont();
Export_pyste_src_DrawableFillRule();
Export_pyste_src_DrawableFillOpacity();
Export_pyste_src_DrawableFillColor();
Export_pyste_src_DrawableEllipse();
Export_pyste_src_DrawableDashOffset();
Export_pyste_src_DrawableDashArray();
Export_pyste_src_DrawableCompositeImage();
Export_pyste_src_DrawableColor();
Export_pyste_src_DrawableClipPath();
Export_pyste_src_DrawableCircle();
Export_pyste_src_DrawableBezier();
Export_pyste_src_DrawableArc();
Export_pyste_src_DrawableAffine();
Export_pyste_src_Drawable();
Export_pyste_src_DecorationType();
Export_pyste_src_Coordinate();
Export_pyste_src_CompressionType();
Export_pyste_src_CompositeOperator();
Export_pyste_src_Color();
Export_pyste_src_Blob();
}
PythonMagick-0.9.8/pythonmagick_src/_PathMovetoRel.cpp 0000644 0000024 0000024 00000002543 11574437254 020010 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathMovetoRel_Wrapper: Magick::PathMovetoRel
{
Magick_PathMovetoRel_Wrapper(PyObject* py_self_, const Magick::Coordinate& p0):
Magick::PathMovetoRel(p0), py_self(py_self_) {}
Magick_PathMovetoRel_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::PathMovetoRel(p0), py_self(py_self_) {}
Magick_PathMovetoRel_Wrapper(PyObject* py_self_, const Magick::PathMovetoRel& p0):
Magick::PathMovetoRel(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathMovetoRel()
{
class_< Magick::PathMovetoRel, Magick_PathMovetoRel_Wrapper >("PathMovetoRel", init< const Magick::Coordinate& >())
.def(init< const Magick::CoordinateList& >())
.def(init< const Magick::PathMovetoRel& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_PathCurvetoArgs.cpp 0000644 0000024 0000024 00000004044 11574437254 020336 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_PathCurvetoArgs()
{
class_< Magick::PathCurvetoArgs >("PathCurvetoArgs", init< >())
.def(init< double, double, double, double, double, double >())
.def(init< const Magick::PathCurvetoArgs& >())
.def("x1", (void (Magick::PathCurvetoArgs::*)(double) )&Magick::PathCurvetoArgs::x1)
.def("x1", (double (Magick::PathCurvetoArgs::*)() const)&Magick::PathCurvetoArgs::x1)
.def("y1", (void (Magick::PathCurvetoArgs::*)(double) )&Magick::PathCurvetoArgs::y1)
.def("y1", (double (Magick::PathCurvetoArgs::*)() const)&Magick::PathCurvetoArgs::y1)
.def("x2", (void (Magick::PathCurvetoArgs::*)(double) )&Magick::PathCurvetoArgs::x2)
.def("x2", (double (Magick::PathCurvetoArgs::*)() const)&Magick::PathCurvetoArgs::x2)
.def("y2", (void (Magick::PathCurvetoArgs::*)(double) )&Magick::PathCurvetoArgs::y2)
.def("y2", (double (Magick::PathCurvetoArgs::*)() const)&Magick::PathCurvetoArgs::y2)
.def("x", (void (Magick::PathCurvetoArgs::*)(double) )&Magick::PathCurvetoArgs::x)
.def("x", (double (Magick::PathCurvetoArgs::*)() const)&Magick::PathCurvetoArgs::x)
.def("y", (void (Magick::PathCurvetoArgs::*)(double) )&Magick::PathCurvetoArgs::y)
.def("y", (double (Magick::PathCurvetoArgs::*)() const)&Magick::PathCurvetoArgs::y)
.def( self <= self )
.def( self < self )
.def( self >= self )
.def( self != self )
.def( self > self )
.def( self == self )
;
}
PythonMagick-0.9.8/pythonmagick_src/_PathLinetoHorizontalAbs.cpp 0000644 0000024 0000024 00000002354 11574437254 022026 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathLinetoHorizontalAbs_Wrapper: Magick::PathLinetoHorizontalAbs
{
Magick_PathLinetoHorizontalAbs_Wrapper(PyObject* py_self_, double p0):
Magick::PathLinetoHorizontalAbs(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathLinetoHorizontalAbs()
{
class_< Magick::PathLinetoHorizontalAbs, boost::noncopyable, Magick_PathLinetoHorizontalAbs_Wrapper >("PathLinetoHorizontalAbs", init< double >())
.def("x", (void (Magick::PathLinetoHorizontalAbs::*)(double) )&Magick::PathLinetoHorizontalAbs::x)
.def("x", (double (Magick::PathLinetoHorizontalAbs::*)() const)&Magick::PathLinetoHorizontalAbs::x)
;
}
PythonMagick-0.9.8/pythonmagick_src/_PathQuadraticCurvetoRel.cpp 0000644 0000024 0000024 00000003047 11574437254 022024 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathQuadraticCurvetoRel_Wrapper: Magick::PathQuadraticCurvetoRel
{
Magick_PathQuadraticCurvetoRel_Wrapper(PyObject* py_self_, const Magick::PathQuadraticCurvetoArgs& p0):
Magick::PathQuadraticCurvetoRel(p0), py_self(py_self_) {}
Magick_PathQuadraticCurvetoRel_Wrapper(PyObject* py_self_, const Magick::PathQuadraticCurvetoArgsList& p0):
Magick::PathQuadraticCurvetoRel(p0), py_self(py_self_) {}
Magick_PathQuadraticCurvetoRel_Wrapper(PyObject* py_self_, const Magick::PathQuadraticCurvetoRel& p0):
Magick::PathQuadraticCurvetoRel(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathQuadraticCurvetoRel()
{
class_< Magick::PathQuadraticCurvetoRel, Magick_PathQuadraticCurvetoRel_Wrapper >("PathQuadraticCurvetoRel", init< const Magick::PathQuadraticCurvetoArgs& >())
.def(init< const Magick::PathQuadraticCurvetoArgsList& >())
.def(init< const Magick::PathQuadraticCurvetoRel& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableSkewX.cpp 0000644 0000024 0000024 00000002305 11620751064 017744 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableSkewX_Wrapper: Magick::DrawableSkewX
{
Magick_DrawableSkewX_Wrapper(PyObject* py_self_, double p0):
Magick::DrawableSkewX(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableSkewX()
{
class_< Magick::DrawableSkewX, boost::noncopyable, Magick_DrawableSkewX_Wrapper >("DrawableSkewX", init< double >())
.def("angle", (void (Magick::DrawableSkewX::*)(double) )&Magick::DrawableSkewX::angle)
.def("angle", (double (Magick::DrawableSkewX::*)() const)&Magick::DrawableSkewX::angle)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableFillColor.cpp 0000644 0000024 0000024 00000002753 11620751063 020576 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableFillColor_Wrapper: Magick::DrawableFillColor
{
Magick_DrawableFillColor_Wrapper(PyObject* py_self_, const Magick::Color& p0):
Magick::DrawableFillColor(p0), py_self(py_self_) {}
Magick_DrawableFillColor_Wrapper(PyObject* py_self_, const Magick::DrawableFillColor& p0):
Magick::DrawableFillColor(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableFillColor()
{
class_< Magick::DrawableFillColor, Magick_DrawableFillColor_Wrapper >("DrawableFillColor", init< const Magick::Color& >())
.def(init< const Magick::DrawableFillColor& >())
.def("color", (void (Magick::DrawableFillColor::*)(const Magick::Color&) )&Magick::DrawableFillColor::color)
.def("color", (Magick::Color (Magick::DrawableFillColor::*)() const)&Magick::DrawableFillColor::color)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_PathSmoothCurvetoAbs.cpp 0000644 0000024 0000024 00000002705 11574437254 021343 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathSmoothCurvetoAbs_Wrapper: Magick::PathSmoothCurvetoAbs
{
Magick_PathSmoothCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::Coordinate& p0):
Magick::PathSmoothCurvetoAbs(p0), py_self(py_self_) {}
Magick_PathSmoothCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::PathSmoothCurvetoAbs(p0), py_self(py_self_) {}
Magick_PathSmoothCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::PathSmoothCurvetoAbs& p0):
Magick::PathSmoothCurvetoAbs(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathSmoothCurvetoAbs()
{
class_< Magick::PathSmoothCurvetoAbs, Magick_PathSmoothCurvetoAbs_Wrapper >("PathSmoothCurvetoAbs", init< const Magick::Coordinate& >())
.def(init< const Magick::CoordinateList& >())
.def(init< const Magick::PathSmoothCurvetoAbs& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_CompositeOperator.cpp 0000664 0000024 0000024 00000010466 11202574433 020727 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_CompositeOperator()
{
enum_< MagickCore::CompositeOperator >("CompositeOperator")
.value("SrcAtopCompositeOp", MagickCore::SrcAtopCompositeOp)
.value("SaturateCompositeOp", MagickCore::SaturateCompositeOp)
.value("CopyCyanCompositeOp", MagickCore::CopyCyanCompositeOp)
.value("BumpmapCompositeOp", MagickCore::BumpmapCompositeOp)
.value("ExclusionCompositeOp", MagickCore::ExclusionCompositeOp)
.value("SrcOutCompositeOp", MagickCore::SrcOutCompositeOp)
.value("CopyBlackCompositeOp", MagickCore::CopyBlackCompositeOp)
.value("ScreenCompositeOp", MagickCore::ScreenCompositeOp)
.value("NoCompositeOp", MagickCore::NoCompositeOp)
.value("HardLightCompositeOp", MagickCore::HardLightCompositeOp)
.value("DstInCompositeOp", MagickCore::DstInCompositeOp)
.value("LuminizeCompositeOp", MagickCore::LuminizeCompositeOp)
.value("DifferenceCompositeOp", MagickCore::DifferenceCompositeOp)
.value("BlendCompositeOp", MagickCore::BlendCompositeOp)
.value("DisplaceCompositeOp", MagickCore::DisplaceCompositeOp)
.value("DarkenCompositeOp", MagickCore::DarkenCompositeOp)
.value("OverlayCompositeOp", MagickCore::OverlayCompositeOp)
.value("CopyYellowCompositeOp", MagickCore::CopyYellowCompositeOp)
.value("MinusCompositeOp", MagickCore::MinusCompositeOp)
.value("UndefinedCompositeOp", MagickCore::UndefinedCompositeOp)
.value("HueCompositeOp", MagickCore::HueCompositeOp)
.value("DstOutCompositeOp", MagickCore::DstOutCompositeOp)
.value("CopyMagentaCompositeOp", MagickCore::CopyMagentaCompositeOp)
.value("DstAtopCompositeOp", MagickCore::DstAtopCompositeOp)
.value("ModulateCompositeOp", MagickCore::ModulateCompositeOp)
.value("ThresholdCompositeOp", MagickCore::ThresholdCompositeOp)
.value("OutCompositeOp", MagickCore::OutCompositeOp)
.value("LinearLightCompositeOp", MagickCore::LinearLightCompositeOp)
.value("ChangeMaskCompositeOp", MagickCore::ChangeMaskCompositeOp)
.value("SrcInCompositeOp", MagickCore::SrcInCompositeOp)
.value("CopyCompositeOp", MagickCore::CopyCompositeOp)
.value("DstOverCompositeOp", MagickCore::DstOverCompositeOp)
.value("CopyOpacityCompositeOp", MagickCore::CopyOpacityCompositeOp)
.value("ColorBurnCompositeOp", MagickCore::ColorBurnCompositeOp)
.value("DstCompositeOp", MagickCore::DstCompositeOp)
.value("CopyBlueCompositeOp", MagickCore::CopyBlueCompositeOp)
.value("DissolveCompositeOp", MagickCore::DissolveCompositeOp)
.value("MultiplyCompositeOp", MagickCore::MultiplyCompositeOp)
.value("DivideCompositeOp", MagickCore::DivideCompositeOp)
.value("ColorDodgeCompositeOp", MagickCore::ColorDodgeCompositeOp)
.value("SrcOverCompositeOp", MagickCore::SrcOverCompositeOp)
.value("AtopCompositeOp", MagickCore::AtopCompositeOp)
.value("SoftLightCompositeOp", MagickCore::SoftLightCompositeOp)
.value("AddCompositeOp", MagickCore::AddCompositeOp)
.value("OverCompositeOp", MagickCore::OverCompositeOp)
.value("SrcCompositeOp", MagickCore::SrcCompositeOp)
.value("ClearCompositeOp", MagickCore::ClearCompositeOp)
.value("InCompositeOp", MagickCore::InCompositeOp)
.value("PlusCompositeOp", MagickCore::PlusCompositeOp)
.value("CopyGreenCompositeOp", MagickCore::CopyGreenCompositeOp)
.value("LightenCompositeOp", MagickCore::LightenCompositeOp)
.value("ReplaceCompositeOp", MagickCore::ReplaceCompositeOp)
.value("SubtractCompositeOp", MagickCore::SubtractCompositeOp)
.value("ColorizeCompositeOp", MagickCore::ColorizeCompositeOp)
.value("CopyRedCompositeOp", MagickCore::CopyRedCompositeOp)
.value("XorCompositeOp", MagickCore::XorCompositeOp)
;
}
PythonMagick-0.9.8/pythonmagick_src/_PathSmoothQuadraticCurvetoAbs.cpp 0000644 0000024 0000024 00000003103 11574437254 023172 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathSmoothQuadraticCurvetoAbs_Wrapper: Magick::PathSmoothQuadraticCurvetoAbs
{
Magick_PathSmoothQuadraticCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::Coordinate& p0):
Magick::PathSmoothQuadraticCurvetoAbs(p0), py_self(py_self_) {}
Magick_PathSmoothQuadraticCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::PathSmoothQuadraticCurvetoAbs(p0), py_self(py_self_) {}
Magick_PathSmoothQuadraticCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::PathSmoothQuadraticCurvetoAbs& p0):
Magick::PathSmoothQuadraticCurvetoAbs(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathSmoothQuadraticCurvetoAbs()
{
class_< Magick::PathSmoothQuadraticCurvetoAbs, Magick_PathSmoothQuadraticCurvetoAbs_Wrapper >("PathSmoothQuadraticCurvetoAbs", init< const Magick::Coordinate& >())
.def(init< const Magick::CoordinateList& >())
.def(init< const Magick::PathSmoothQuadraticCurvetoAbs& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableClipPath.cpp 0000644 0000024 0000024 00000002742 11620751063 020413 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableClipPath_Wrapper: Magick::DrawableClipPath
{
Magick_DrawableClipPath_Wrapper(PyObject* py_self_, const std::string& p0):
Magick::DrawableClipPath(p0), py_self(py_self_) {}
Magick_DrawableClipPath_Wrapper(PyObject* py_self_, const Magick::DrawableClipPath& p0):
Magick::DrawableClipPath(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableClipPath()
{
class_< Magick::DrawableClipPath, Magick_DrawableClipPath_Wrapper >("DrawableClipPath", init< const std::string& >())
.def(init< const Magick::DrawableClipPath& >())
.def("clip_path", (void (Magick::DrawableClipPath::*)(const std::string&) )&Magick::DrawableClipPath::clip_path)
.def("clip_path", (std::string (Magick::DrawableClipPath::*)() const)&Magick::DrawableClipPath::clip_path)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_PathClosePath.cpp 0000644 0000024 0000024 00000001662 11574437254 017757 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathClosePath_Wrapper: Magick::PathClosePath
{
Magick_PathClosePath_Wrapper(PyObject* py_self_):
Magick::PathClosePath(), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathClosePath()
{
class_< Magick::PathClosePath, boost::noncopyable, Magick_PathClosePath_Wrapper >("PathClosePath", init< >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_PathLinetoVerticalAbs.cpp 0000644 0000024 0000024 00000002324 11574437254 021443 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathLinetoVerticalAbs_Wrapper: Magick::PathLinetoVerticalAbs
{
Magick_PathLinetoVerticalAbs_Wrapper(PyObject* py_self_, double p0):
Magick::PathLinetoVerticalAbs(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathLinetoVerticalAbs()
{
class_< Magick::PathLinetoVerticalAbs, boost::noncopyable, Magick_PathLinetoVerticalAbs_Wrapper >("PathLinetoVerticalAbs", init< double >())
.def("y", (void (Magick::PathLinetoVerticalAbs::*)(double) )&Magick::PathLinetoVerticalAbs::y)
.def("y", (double (Magick::PathLinetoVerticalAbs::*)() const)&Magick::PathLinetoVerticalAbs::y)
;
}
PythonMagick-0.9.8/pythonmagick_src/_Coordinate.cpp 0000644 0000024 0000024 00000002126 11146664706 017342 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_Coordinate()
{
class_< Magick::Coordinate, boost::noncopyable >("Coordinate", init< >())
.def(init< double, double >())
.def("x", (void (Magick::Coordinate::*)(double) )&Magick::Coordinate::x)
.def("x", (double (Magick::Coordinate::*)() const)&Magick::Coordinate::x)
.def("y", (void (Magick::Coordinate::*)(double) )&Magick::Coordinate::y)
.def("y", (double (Magick::Coordinate::*)() const)&Magick::Coordinate::y)
.def( self >= self )
.def( self <= self )
.def( self > self )
.def( self < self )
.def( self == self )
.def( self != self )
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableTranslation.cpp 0000644 0000024 0000024 00000002741 11620751064 021205 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableTranslation_Wrapper: Magick::DrawableTranslation
{
Magick_DrawableTranslation_Wrapper(PyObject* py_self_, double p0, double p1):
Magick::DrawableTranslation(p0, p1), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableTranslation()
{
class_< Magick::DrawableTranslation, boost::noncopyable, Magick_DrawableTranslation_Wrapper >("DrawableTranslation", init< double, double >())
.def("x", (void (Magick::DrawableTranslation::*)(double) )&Magick::DrawableTranslation::x)
.def("x", (double (Magick::DrawableTranslation::*)() const)&Magick::DrawableTranslation::x)
.def("y", (void (Magick::DrawableTranslation::*)(double) )&Magick::DrawableTranslation::y)
.def("y", (double (Magick::DrawableTranslation::*)() const)&Magick::DrawableTranslation::y)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawablePointSize.cpp 0000644 0000024 0000024 00000002411 11620751064 020625 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawablePointSize_Wrapper: Magick::DrawablePointSize
{
Magick_DrawablePointSize_Wrapper(PyObject* py_self_, double p0):
Magick::DrawablePointSize(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawablePointSize()
{
class_< Magick::DrawablePointSize, boost::noncopyable, Magick_DrawablePointSize_Wrapper >("DrawablePointSize", init< double >())
.def("pointSize", (void (Magick::DrawablePointSize::*)(double) )&Magick::DrawablePointSize::pointSize)
.def("pointSize", (double (Magick::DrawablePointSize::*)() const)&Magick::DrawablePointSize::pointSize)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableStrokeAntialias.cpp 0000644 0000024 0000024 00000002473 11620751064 022006 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableStrokeAntialias_Wrapper: Magick::DrawableStrokeAntialias
{
Magick_DrawableStrokeAntialias_Wrapper(PyObject* py_self_, bool p0):
Magick::DrawableStrokeAntialias(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableStrokeAntialias()
{
class_< Magick::DrawableStrokeAntialias, boost::noncopyable, Magick_DrawableStrokeAntialias_Wrapper >("DrawableStrokeAntialias", init< bool >())
.def("flag", (void (Magick::DrawableStrokeAntialias::*)(bool) )&Magick::DrawableStrokeAntialias::flag)
.def("flag", (bool (Magick::DrawableStrokeAntialias::*)() const)&Magick::DrawableStrokeAntialias::flag)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_Color.cpp 0000644 0000024 0000024 00000005510 11146664706 016331 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_Color()
{
class_< Magick::Color >("Color", init< >())
.def(init< MagickCore::Quantum, MagickCore::Quantum, MagickCore::Quantum >())
.def(init< MagickCore::Quantum, MagickCore::Quantum, MagickCore::Quantum, MagickCore::Quantum >())
.def(init< const std::string& >())
.def(init< const char* >())
.def(init< const Magick::Color& >())
.def(init< const MagickCore::PixelPacket& >())
.def("redQuantum", (void (Magick::Color::*)(MagickCore::Quantum) )&Magick::Color::redQuantum)
.def("redQuantum", (MagickCore::Quantum (Magick::Color::*)() const)&Magick::Color::redQuantum)
.def("greenQuantum", (void (Magick::Color::*)(MagickCore::Quantum) )&Magick::Color::greenQuantum)
.def("greenQuantum", (MagickCore::Quantum (Magick::Color::*)() const)&Magick::Color::greenQuantum)
.def("blueQuantum", (void (Magick::Color::*)(MagickCore::Quantum) )&Magick::Color::blueQuantum)
.def("blueQuantum", (MagickCore::Quantum (Magick::Color::*)() const)&Magick::Color::blueQuantum)
.def("alphaQuantum", (void (Magick::Color::*)(MagickCore::Quantum) )&Magick::Color::alphaQuantum)
.def("alphaQuantum", (MagickCore::Quantum (Magick::Color::*)() const)&Magick::Color::alphaQuantum)
.def("alpha", (void (Magick::Color::*)(double) )&Magick::Color::alpha)
.def("alpha", (double (Magick::Color::*)() const)&Magick::Color::alpha)
.def("isValid", (void (Magick::Color::*)(bool) )&Magick::Color::isValid)
.def("isValid", (bool (Magick::Color::*)() const)&Magick::Color::isValid)
.def("intensity", &Magick::Color::intensity)
.def("scaleDoubleToQuantum", &Magick::Color::scaleDoubleToQuantum)
.def("scaleQuantumToDouble", (double (*)(const MagickCore::Quantum))&Magick::Color::scaleQuantumToDouble)
.def("scaleQuantumToDouble", (double (*)(const double))&Magick::Color::scaleQuantumToDouble)
.staticmethod("scaleDoubleToQuantum")
.staticmethod("scaleQuantumToDouble")
.def( self > self )
.def( self < self )
.def( self == self )
.def( self != self )
.def( self <= self )
.def( self >= self )
.def("to_std_string", &Magick::Color::operator std::string)
.def("to_MagickCore_PixelPacket", &Magick::Color::operator MagickCore::PixelPacket)
;
implicitly_convertible();}
PythonMagick-0.9.8/pythonmagick_src/_DrawableBezier.cpp 0000644 0000024 0000024 00000002362 11620751063 020125 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableBezier_Wrapper: Magick::DrawableBezier
{
Magick_DrawableBezier_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::DrawableBezier(p0), py_self(py_self_) {}
Magick_DrawableBezier_Wrapper(PyObject* py_self_, const Magick::DrawableBezier& p0):
Magick::DrawableBezier(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableBezier()
{
class_< Magick::DrawableBezier, Magick_DrawableBezier_Wrapper >("DrawableBezier", init< const Magick::CoordinateList& >())
.def(init< const Magick::DrawableBezier& >())
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_PathLinetoVerticalRel.cpp 0000644 0000024 0000024 00000002324 11574437254 021460 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathLinetoVerticalRel_Wrapper: Magick::PathLinetoVerticalRel
{
Magick_PathLinetoVerticalRel_Wrapper(PyObject* py_self_, double p0):
Magick::PathLinetoVerticalRel(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathLinetoVerticalRel()
{
class_< Magick::PathLinetoVerticalRel, boost::noncopyable, Magick_PathLinetoVerticalRel_Wrapper >("PathLinetoVerticalRel", init< double >())
.def("y", (void (Magick::PathLinetoVerticalRel::*)(double) )&Magick::PathLinetoVerticalRel::y)
.def("y", (double (Magick::PathLinetoVerticalRel::*)() const)&Magick::PathLinetoVerticalRel::y)
;
}
PythonMagick-0.9.8/pythonmagick_src/_PathSmoothCurvetoRel.cpp 0000644 0000024 0000024 00000002705 11574437254 021360 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathSmoothCurvetoRel_Wrapper: Magick::PathSmoothCurvetoRel
{
Magick_PathSmoothCurvetoRel_Wrapper(PyObject* py_self_, const Magick::Coordinate& p0):
Magick::PathSmoothCurvetoRel(p0), py_self(py_self_) {}
Magick_PathSmoothCurvetoRel_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::PathSmoothCurvetoRel(p0), py_self(py_self_) {}
Magick_PathSmoothCurvetoRel_Wrapper(PyObject* py_self_, const Magick::PathSmoothCurvetoRel& p0):
Magick::PathSmoothCurvetoRel(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathSmoothCurvetoRel()
{
class_< Magick::PathSmoothCurvetoRel, Magick_PathSmoothCurvetoRel_Wrapper >("PathSmoothCurvetoRel", init< const Magick::Coordinate& >())
.def(init< const Magick::CoordinateList& >())
.def(init< const Magick::PathSmoothCurvetoRel& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableTextDecoration.cpp 0000644 0000024 0000024 00000003163 11620751064 021642 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableTextDecoration_Wrapper: Magick::DrawableTextDecoration
{
Magick_DrawableTextDecoration_Wrapper(PyObject* py_self_, MagickCore::DecorationType p0):
Magick::DrawableTextDecoration(p0), py_self(py_self_) {}
Magick_DrawableTextDecoration_Wrapper(PyObject* py_self_, const Magick::DrawableTextDecoration& p0):
Magick::DrawableTextDecoration(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableTextDecoration()
{
class_< Magick::DrawableTextDecoration, Magick_DrawableTextDecoration_Wrapper >("DrawableTextDecoration", init< MagickCore::DecorationType >())
.def(init< const Magick::DrawableTextDecoration& >())
.def("decoration", (void (Magick::DrawableTextDecoration::*)(MagickCore::DecorationType) )&Magick::DrawableTextDecoration::decoration)
.def("decoration", (MagickCore::DecorationType (Magick::DrawableTextDecoration::*)() const)&Magick::DrawableTextDecoration::decoration)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_TypeMetric.cpp 0000644 0000024 0000024 00000001557 11146674112 017337 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_TypeMetric()
{
class_< Magick::TypeMetric, boost::noncopyable >("TypeMetric", init< >())
.def("ascent", &Magick::TypeMetric::ascent)
.def("descent", &Magick::TypeMetric::descent)
.def("textWidth", &Magick::TypeMetric::textWidth)
.def("textHeight", &Magick::TypeMetric::textHeight)
.def("maxHorizontalAdvance", &Magick::TypeMetric::maxHorizontalAdvance)
;
}
PythonMagick-0.9.8/pythonmagick_src/_PathQuadraticCurvetoAbs.cpp 0000644 0000024 0000024 00000003047 11574437254 022007 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathQuadraticCurvetoAbs_Wrapper: Magick::PathQuadraticCurvetoAbs
{
Magick_PathQuadraticCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::PathQuadraticCurvetoArgs& p0):
Magick::PathQuadraticCurvetoAbs(p0), py_self(py_self_) {}
Magick_PathQuadraticCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::PathQuadraticCurvetoArgsList& p0):
Magick::PathQuadraticCurvetoAbs(p0), py_self(py_self_) {}
Magick_PathQuadraticCurvetoAbs_Wrapper(PyObject* py_self_, const Magick::PathQuadraticCurvetoAbs& p0):
Magick::PathQuadraticCurvetoAbs(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathQuadraticCurvetoAbs()
{
class_< Magick::PathQuadraticCurvetoAbs, Magick_PathQuadraticCurvetoAbs_Wrapper >("PathQuadraticCurvetoAbs", init< const Magick::PathQuadraticCurvetoArgs& >())
.def(init< const Magick::PathQuadraticCurvetoArgsList& >())
.def(init< const Magick::PathQuadraticCurvetoAbs& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableMiterLimit.cpp 0000644 0000024 0000024 00000002432 11620751064 020763 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableMiterLimit_Wrapper: Magick::DrawableMiterLimit
{
Magick_DrawableMiterLimit_Wrapper(PyObject* py_self_, size_t p0):
Magick::DrawableMiterLimit(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableMiterLimit()
{
class_< Magick::DrawableMiterLimit, boost::noncopyable, Magick_DrawableMiterLimit_Wrapper >("DrawableMiterLimit", init< size_t >())
.def("miterlimit", (void (Magick::DrawableMiterLimit::*)(size_t) )&Magick::DrawableMiterLimit::miterlimit)
.def("miterlimit", (size_t (Magick::DrawableMiterLimit::*)() const)&Magick::DrawableMiterLimit::miterlimit)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawablePolygon.cpp 0000644 0000024 0000024 00000002377 11620751064 020343 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawablePolygon_Wrapper: Magick::DrawablePolygon
{
Magick_DrawablePolygon_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::DrawablePolygon(p0), py_self(py_self_) {}
Magick_DrawablePolygon_Wrapper(PyObject* py_self_, const Magick::DrawablePolygon& p0):
Magick::DrawablePolygon(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawablePolygon()
{
class_< Magick::DrawablePolygon, Magick_DrawablePolygon_Wrapper >("DrawablePolygon", init< const Magick::CoordinateList& >())
.def(init< const Magick::DrawablePolygon& >())
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawablePopClipPath.cpp 0000644 0000024 0000024 00000002051 11620751064 021064 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawablePopClipPath_Wrapper: Magick::DrawablePopClipPath
{
Magick_DrawablePopClipPath_Wrapper(PyObject* py_self_):
Magick::DrawablePopClipPath(), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawablePopClipPath()
{
class_< Magick::DrawablePopClipPath, boost::noncopyable, Magick_DrawablePopClipPath_Wrapper >("DrawablePopClipPath", init< >())
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_PathArcRel.cpp 0000644 0000024 0000024 00000002475 11574437254 017250 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathArcRel_Wrapper: Magick::PathArcRel
{
Magick_PathArcRel_Wrapper(PyObject* py_self_, const Magick::PathArcArgs& p0):
Magick::PathArcRel(p0), py_self(py_self_) {}
Magick_PathArcRel_Wrapper(PyObject* py_self_, const Magick::PathArcArgsList& p0):
Magick::PathArcRel(p0), py_self(py_self_) {}
Magick_PathArcRel_Wrapper(PyObject* py_self_, const Magick::PathArcRel& p0):
Magick::PathArcRel(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathArcRel()
{
class_< Magick::PathArcRel, Magick_PathArcRel_Wrapper >("PathArcRel", init< const Magick::PathArcArgs& >())
.def(init< const Magick::PathArcArgsList& >())
.def(init< const Magick::PathArcRel& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableCircle.cpp 0000644 0000024 0000024 00000003570 11620751063 020110 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableCircle_Wrapper: Magick::DrawableCircle
{
Magick_DrawableCircle_Wrapper(PyObject* py_self_, double p0, double p1, double p2, double p3):
Magick::DrawableCircle(p0, p1, p2, p3), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableCircle()
{
class_< Magick::DrawableCircle, boost::noncopyable, Magick_DrawableCircle_Wrapper >("DrawableCircle", init< double, double, double, double >())
.def("originX", (void (Magick::DrawableCircle::*)(double) )&Magick::DrawableCircle::originX)
.def("originX", (double (Magick::DrawableCircle::*)() const)&Magick::DrawableCircle::originX)
.def("originY", (void (Magick::DrawableCircle::*)(double) )&Magick::DrawableCircle::originY)
.def("originY", (double (Magick::DrawableCircle::*)() const)&Magick::DrawableCircle::originY)
.def("perimX", (void (Magick::DrawableCircle::*)(double) )&Magick::DrawableCircle::perimX)
.def("perimX", (double (Magick::DrawableCircle::*)() const)&Magick::DrawableCircle::perimX)
.def("perimY", (void (Magick::DrawableCircle::*)(double) )&Magick::DrawableCircle::perimY)
.def("perimY", (double (Magick::DrawableCircle::*)() const)&Magick::DrawableCircle::perimY)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableStrokeColor.cpp 0000644 0000024 0000024 00000003015 11620751064 021150 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableStrokeColor_Wrapper: Magick::DrawableStrokeColor
{
Magick_DrawableStrokeColor_Wrapper(PyObject* py_self_, const Magick::Color& p0):
Magick::DrawableStrokeColor(p0), py_self(py_self_) {}
Magick_DrawableStrokeColor_Wrapper(PyObject* py_self_, const Magick::DrawableStrokeColor& p0):
Magick::DrawableStrokeColor(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableStrokeColor()
{
class_< Magick::DrawableStrokeColor, Magick_DrawableStrokeColor_Wrapper >("DrawableStrokeColor", init< const Magick::Color& >())
.def(init< const Magick::DrawableStrokeColor& >())
.def("color", (void (Magick::DrawableStrokeColor::*)(const Magick::Color&) )&Magick::DrawableStrokeColor::color)
.def("color", (Magick::Color (Magick::DrawableStrokeColor::*)() const)&Magick::DrawableStrokeColor::color)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableAffine.cpp 0000644 0000024 0000024 00000004570 11620751063 020100 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableAffine_Wrapper: Magick::DrawableAffine
{
Magick_DrawableAffine_Wrapper(PyObject* py_self_, double p0, double p1, double p2, double p3, double p4, double p5):
Magick::DrawableAffine(p0, p1, p2, p3, p4, p5), py_self(py_self_) {}
Magick_DrawableAffine_Wrapper(PyObject* py_self_):
Magick::DrawableAffine(), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableAffine()
{
class_< Magick::DrawableAffine, boost::noncopyable, Magick_DrawableAffine_Wrapper >("DrawableAffine", init< >())
.def(init< double, double, double, double, double, double >())
.def("sx", (void (Magick::DrawableAffine::*)(const double) )&Magick::DrawableAffine::sx)
.def("sx", (double (Magick::DrawableAffine::*)() const)&Magick::DrawableAffine::sx)
.def("sy", (void (Magick::DrawableAffine::*)(const double) )&Magick::DrawableAffine::sy)
.def("sy", (double (Magick::DrawableAffine::*)() const)&Magick::DrawableAffine::sy)
.def("rx", (void (Magick::DrawableAffine::*)(const double) )&Magick::DrawableAffine::rx)
.def("rx", (double (Magick::DrawableAffine::*)() const)&Magick::DrawableAffine::rx)
.def("ry", (void (Magick::DrawableAffine::*)(const double) )&Magick::DrawableAffine::ry)
.def("ry", (double (Magick::DrawableAffine::*)() const)&Magick::DrawableAffine::ry)
.def("tx", (void (Magick::DrawableAffine::*)(const double) )&Magick::DrawableAffine::tx)
.def("tx", (double (Magick::DrawableAffine::*)() const)&Magick::DrawableAffine::tx)
.def("ty", (void (Magick::DrawableAffine::*)(const double) )&Magick::DrawableAffine::ty)
.def("ty", (double (Magick::DrawableAffine::*)() const)&Magick::DrawableAffine::ty)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_Drawable.cpp 0000644 0000024 0000024 00000001633 11574437254 016777 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_Drawable()
{
class_< Magick::Drawable >("Drawable", init< >())
.def(init< const Magick::DrawableBase& >())
.def(init< const Magick::Drawable& >())
.def( self != self )
.def( self == self )
.def( self < self )
.def( self > self )
.def( self <= self )
.def( self >= self )
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableStrokeOpacity.cpp 0000644 0000024 0000024 00000002465 11620751064 021512 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableStrokeOpacity_Wrapper: Magick::DrawableStrokeOpacity
{
Magick_DrawableStrokeOpacity_Wrapper(PyObject* py_self_, double p0):
Magick::DrawableStrokeOpacity(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableStrokeOpacity()
{
class_< Magick::DrawableStrokeOpacity, boost::noncopyable, Magick_DrawableStrokeOpacity_Wrapper >("DrawableStrokeOpacity", init< double >())
.def("opacity", (void (Magick::DrawableStrokeOpacity::*)(double) )&Magick::DrawableStrokeOpacity::opacity)
.def("opacity", (double (Magick::DrawableStrokeOpacity::*)() const)&Magick::DrawableStrokeOpacity::opacity)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableRectangle.cpp 0000644 0000024 0000024 00000004003 11620751064 020604 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableRectangle_Wrapper: Magick::DrawableRectangle
{
Magick_DrawableRectangle_Wrapper(PyObject* py_self_, double p0, double p1, double p2, double p3):
Magick::DrawableRectangle(p0, p1, p2, p3), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableRectangle()
{
class_< Magick::DrawableRectangle, boost::noncopyable, Magick_DrawableRectangle_Wrapper >("DrawableRectangle", init< double, double, double, double >())
.def("upperLeftX", (void (Magick::DrawableRectangle::*)(double) )&Magick::DrawableRectangle::upperLeftX)
.def("upperLeftX", (double (Magick::DrawableRectangle::*)() const)&Magick::DrawableRectangle::upperLeftX)
.def("upperLeftY", (void (Magick::DrawableRectangle::*)(double) )&Magick::DrawableRectangle::upperLeftY)
.def("upperLeftY", (double (Magick::DrawableRectangle::*)() const)&Magick::DrawableRectangle::upperLeftY)
.def("lowerRightX", (void (Magick::DrawableRectangle::*)(double) )&Magick::DrawableRectangle::lowerRightX)
.def("lowerRightX", (double (Magick::DrawableRectangle::*)() const)&Magick::DrawableRectangle::lowerRightX)
.def("lowerRightY", (void (Magick::DrawableRectangle::*)(double) )&Magick::DrawableRectangle::lowerRightY)
.def("lowerRightY", (double (Magick::DrawableRectangle::*)() const)&Magick::DrawableRectangle::lowerRightY)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_PathQuadraticCurvetoArgs.cpp 0000644 0000024 0000024 00000003522 11574437254 022174 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_PathQuadraticCurvetoArgs()
{
class_< Magick::PathQuadraticCurvetoArgs >("PathQuadraticCurvetoArgs", init< >())
.def(init< double, double, double, double >())
.def(init< const Magick::PathQuadraticCurvetoArgs& >())
.def("x1", (void (Magick::PathQuadraticCurvetoArgs::*)(double) )&Magick::PathQuadraticCurvetoArgs::x1)
.def("x1", (double (Magick::PathQuadraticCurvetoArgs::*)() const)&Magick::PathQuadraticCurvetoArgs::x1)
.def("y1", (void (Magick::PathQuadraticCurvetoArgs::*)(double) )&Magick::PathQuadraticCurvetoArgs::y1)
.def("y1", (double (Magick::PathQuadraticCurvetoArgs::*)() const)&Magick::PathQuadraticCurvetoArgs::y1)
.def("x", (void (Magick::PathQuadraticCurvetoArgs::*)(double) )&Magick::PathQuadraticCurvetoArgs::x)
.def("x", (double (Magick::PathQuadraticCurvetoArgs::*)() const)&Magick::PathQuadraticCurvetoArgs::x)
.def("y", (void (Magick::PathQuadraticCurvetoArgs::*)(double) )&Magick::PathQuadraticCurvetoArgs::y)
.def("y", (double (Magick::PathQuadraticCurvetoArgs::*)() const)&Magick::PathQuadraticCurvetoArgs::y)
.def( self < self )
.def( self > self )
.def( self != self )
.def( self == self )
.def( self <= self )
.def( self >= self )
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawablePoint.cpp 0000644 0000024 0000024 00000002573 11620751064 020003 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawablePoint_Wrapper: Magick::DrawablePoint
{
Magick_DrawablePoint_Wrapper(PyObject* py_self_, double p0, double p1):
Magick::DrawablePoint(p0, p1), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawablePoint()
{
class_< Magick::DrawablePoint, boost::noncopyable, Magick_DrawablePoint_Wrapper >("DrawablePoint", init< double, double >())
.def("x", (void (Magick::DrawablePoint::*)(double) )&Magick::DrawablePoint::x)
.def("x", (double (Magick::DrawablePoint::*)() const)&Magick::DrawablePoint::x)
.def("y", (void (Magick::DrawablePoint::*)(double) )&Magick::DrawablePoint::y)
.def("y", (double (Magick::DrawablePoint::*)() const)&Magick::DrawablePoint::y)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_PathLinetoAbs.cpp 0000644 0000024 0000024 00000002543 11574437254 017754 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathLinetoAbs_Wrapper: Magick::PathLinetoAbs
{
Magick_PathLinetoAbs_Wrapper(PyObject* py_self_, const Magick::Coordinate& p0):
Magick::PathLinetoAbs(p0), py_self(py_self_) {}
Magick_PathLinetoAbs_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::PathLinetoAbs(p0), py_self(py_self_) {}
Magick_PathLinetoAbs_Wrapper(PyObject* py_self_, const Magick::PathLinetoAbs& p0):
Magick::PathLinetoAbs(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathLinetoAbs()
{
class_< Magick::PathLinetoAbs, Magick_PathLinetoAbs_Wrapper >("PathLinetoAbs", init< const Magick::Coordinate& >())
.def(init< const Magick::CoordinateList& >())
.def(init< const Magick::PathLinetoAbs& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_FilterTypes.cpp 0000664 0000024 0000024 00000003541 11202574433 017517 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_FilterTypes()
{
enum_< MagickCore::FilterTypes >("FilterTypes")
.value("BesselFilter", MagickCore::BesselFilter)
.value("QuadraticFilter", MagickCore::QuadraticFilter)
.value("BartlettFilter", MagickCore::BartlettFilter)
.value("CatromFilter", MagickCore::CatromFilter)
.value("TriangleFilter", MagickCore::TriangleFilter)
.value("SincFilter", MagickCore::SincFilter)
.value("BohmanFilter", MagickCore::BohmanFilter)
.value("BoxFilter", MagickCore::BoxFilter)
.value("CubicFilter", MagickCore::CubicFilter)
.value("KaiserFilter", MagickCore::KaiserFilter)
.value("HammingFilter", MagickCore::HammingFilter)
.value("ParzenFilter", MagickCore::ParzenFilter)
.value("SentinelFilter", MagickCore::SentinelFilter)
.value("LanczosFilter", MagickCore::LanczosFilter)
.value("WelshFilter", MagickCore::WelshFilter)
.value("MitchellFilter", MagickCore::MitchellFilter)
.value("BlackmanFilter", MagickCore::BlackmanFilter)
.value("GaussianFilter", MagickCore::GaussianFilter)
.value("HanningFilter", MagickCore::HanningFilter)
.value("PointFilter", MagickCore::PointFilter)
.value("HermiteFilter", MagickCore::HermiteFilter)
.value("LagrangeFilter", MagickCore::LagrangeFilter)
.value("UndefinedFilter", MagickCore::UndefinedFilter)
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableTextAntialias.cpp 0000644 0000024 0000024 00000002762 11620751064 021464 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableTextAntialias_Wrapper: Magick::DrawableTextAntialias
{
Magick_DrawableTextAntialias_Wrapper(PyObject* py_self_, bool p0):
Magick::DrawableTextAntialias(p0), py_self(py_self_) {}
Magick_DrawableTextAntialias_Wrapper(PyObject* py_self_, const Magick::DrawableTextAntialias& p0):
Magick::DrawableTextAntialias(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableTextAntialias()
{
class_< Magick::DrawableTextAntialias, Magick_DrawableTextAntialias_Wrapper >("DrawableTextAntialias", init< bool >())
.def(init< const Magick::DrawableTextAntialias& >())
.def("flag", (void (Magick::DrawableTextAntialias::*)(bool) )&Magick::DrawableTextAntialias::flag)
.def("flag", (bool (Magick::DrawableTextAntialias::*)() const)&Magick::DrawableTextAntialias::flag)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/Makefile.am 0000644 0000024 0000024 00000005312 11727504737 016446 0000000 0000000 noinst_LTLIBRARIES = libpymagick.la
libpymagick_la_SOURCES = _DrawableFillRule.cpp \
_PathMovetoAbs.cpp \
_DrawableText.cpp \
_Blob.cpp \
_DrawableRotation.cpp \
_DrawableCompositeImage.cpp \
_PathSmoothCurvetoAbs.cpp \
_PathLinetoVerticalAbs.cpp \
_DrawableCircle.cpp \
_DrawablePoint.cpp \
_PathArcRel.cpp \
_DrawableClipPath.cpp \
_DrawableArc.cpp \
_PathLinetoAbs.cpp \
_DrawablePushPattern.cpp \
_Image.cpp \
_DrawableTextDecoration.cpp \
_PathQuadraticCurvetoAbs.cpp \
_DrawableSkewX.cpp \
_DrawableDashArray.cpp \
_DrawableFont.cpp \
_DrawableAffine.cpp \
_DrawableTextAntialias.cpp \
_DrawableScaling.cpp \
_DrawableViewbox.cpp \
_PathQuadraticCurvetoRel.cpp \
_DrawableRoundRectangle.cpp \
_DrawableEllipse.cpp \
_Pixels.cpp \
_PathArcAbs.cpp \
_DrawableSkewY.cpp \
_PathArcArgs.cpp \
_PathLinetoRel.cpp \
_DrawableBezier.cpp \
_DrawableMatte.cpp \
_DrawableStrokeWidth.cpp \
_DrawablePushClipPath.cpp \
_PathLinetoVerticalRel.cpp \
_Color.cpp \
_DrawableTranslation.cpp \
_DrawableColor.cpp \
_PathCurvetoAbs.cpp \
_Exception.cpp \
_DrawablePointSize.cpp \
_DrawableDashOffset.cpp \
_VPath.cpp \
_DrawableStrokeColor.cpp \
_PathSmoothQuadraticCurvetoRel.cpp \
_DrawableStrokeAntialias.cpp \
_DrawableLine.cpp \
_DrawablePushGraphicContext.cpp \
_PathCurvetoRel.cpp \
_TypeMetric.cpp \
_DrawableStrokeOpacity.cpp \
_DrawablePopClipPath.cpp \
_DrawablePath.cpp \
_Coordinate.cpp \
_PathQuadraticCurvetoArgs.cpp \
_DrawableGravity.cpp \
_PathCurvetoArgs.cpp \
_DrawablePolyline.cpp \
_DrawableStrokeLineJoin.cpp \
_DrawableFillColor.cpp \
_PathLinetoHorizontalAbs.cpp \
_DrawableStrokeLineCap.cpp \
_DrawablePopGraphicContext.cpp \
_Geometry.cpp \
_CompositeOperator.cpp \
_GravityType.cpp \
_FilterTypes.cpp \
_DecorationType.cpp \
_CompressionType.cpp \
_DrawablePopPattern.cpp \
_PathSmoothQuadraticCurvetoAbs.cpp \
_DrawableFillOpacity.cpp \
_DrawableTextUnderColor.cpp \
_DrawablePolygon.cpp \
_main.cpp \
_DrawableRectangle.cpp \
_PathMovetoRel.cpp \
_Drawable.cpp \
_DrawableMiterLimit.cpp \
_PathClosePath.cpp \
_PathSmoothCurvetoRel.cpp \
_PathLinetoHorizontalRel.cpp
libpymagick_la_CXXFLAGS = -I$(PYTHON_INCLUDE_DIR) $(BOOST_CPPFLAGS) $(MAGICKPP_CFLAGS)
PythonMagick-0.9.8/pythonmagick_src/_PathCurvetoRel.cpp 0000644 0000024 0000024 00000002605 11574437254 020165 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathCurvetoRel_Wrapper: Magick::PathCurvetoRel
{
Magick_PathCurvetoRel_Wrapper(PyObject* py_self_, const Magick::PathCurvetoArgs& p0):
Magick::PathCurvetoRel(p0), py_self(py_self_) {}
Magick_PathCurvetoRel_Wrapper(PyObject* py_self_, const Magick::PathCurveToArgsList& p0):
Magick::PathCurvetoRel(p0), py_self(py_self_) {}
Magick_PathCurvetoRel_Wrapper(PyObject* py_self_, const Magick::PathCurvetoRel& p0):
Magick::PathCurvetoRel(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathCurvetoRel()
{
class_< Magick::PathCurvetoRel, Magick_PathCurvetoRel_Wrapper >("PathCurvetoRel", init< const Magick::PathCurvetoArgs& >())
.def(init< const Magick::PathCurveToArgsList& >())
.def(init< const Magick::PathCurvetoRel& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_Image.cpp 0000644 0000024 0000024 00000074561 12026352720 016275 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Declarations ================================================================
namespace {
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_adaptiveThreshold_overloads_2_3, adaptiveThreshold, 2, 3)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_blur_overloads_0_2, blur, 0, 2)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_border_overloads_0_1, border, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_charcoal_overloads_0_2, charcoal, 0, 2)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_composite_overloads_3_4, composite, 3, 4)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_composite_overloads_2_3, composite, 2, 3)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_edge_overloads_0_1, edge, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_emboss_overloads_0_2, emboss, 0, 2)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_frame_overloads_0_1, frame, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_frame_overloads_2_4, frame, 2, 4)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_map_overloads_1_2, map, 1, 2)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_medianFilter_overloads_0_1, medianFilter, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_negate_overloads_0_1, negate, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_oilPaint_overloads_0_1, oilPaint, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_quantize_overloads_0_1, quantize, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_raise_overloads_0_2, raise, 0, 2)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_segment_overloads_0_2, segment, 0, 2)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_shade_overloads_0_3, shade, 0, 3)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_sharpen_overloads_0_2, sharpen, 0, 2)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_solarize_overloads_0_1, solarize, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_spread_overloads_0_1, spread, 0, 1)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_wave_overloads_0_2, wave, 0, 2)
BOOST_PYTHON_MEMBER_FUNCTION_OVERLOADS(Magick_Image_signature_overloads_0_1, signature, 0, 1)
}// namespace
// Module ======================================================================
void Export_pyste_src_Image()
{
class_< Magick::Image >("Image", init< >())
.def(init< const std::string& >())
.def(init< const Magick::Geometry&, const Magick::Color& >())
.def(init< const Magick::Blob& >())
.def(init< const Magick::Blob&, const Magick::Geometry& >())
.def(init< const Magick::Blob&, const Magick::Geometry&, const size_t >())
.def(init< const Magick::Blob&, const Magick::Geometry&, const size_t, const std::string& >())
.def(init< const Magick::Blob&, const Magick::Geometry&, const std::string& >())
.def(init< const size_t, const size_t, const std::string&, const MagickCore::StorageType, const void* >())
.def(init< const Magick::Image& >())
.def(init< MagickCore::Image* >())
.def("adaptiveThreshold", &Magick::Image::adaptiveThreshold, Magick_Image_adaptiveThreshold_overloads_2_3())
.def("addNoise", &Magick::Image::addNoise)
.def("affineTransform", &Magick::Image::affineTransform)
.def("annotate", (void (Magick::Image::*)(const std::string&, const Magick::Geometry&) )&Magick::Image::annotate)
.def("annotate", (void (Magick::Image::*)(const std::string&, const Magick::Geometry&, const MagickCore::GravityType) )&Magick::Image::annotate)
.def("annotate", (void (Magick::Image::*)(const std::string&, const Magick::Geometry&, const MagickCore::GravityType, const double) )&Magick::Image::annotate)
.def("annotate", (void (Magick::Image::*)(const std::string&, const MagickCore::GravityType) )&Magick::Image::annotate)
.def("blur", &Magick::Image::blur, Magick_Image_blur_overloads_0_2())
.def("border", &Magick::Image::border, Magick_Image_border_overloads_0_1())
.def("channel", &Magick::Image::channel)
.def("channelDepth", (void (Magick::Image::*)(const MagickCore::ChannelType, const size_t) )&Magick::Image::channelDepth)
.def("channelDepth", (size_t (Magick::Image::*)(const MagickCore::ChannelType) )&Magick::Image::channelDepth)
.def("charcoal", &Magick::Image::charcoal, Magick_Image_charcoal_overloads_0_2())
.def("chop", &Magick::Image::chop)
.def("colorize", (void (Magick::Image::*)(const unsigned int, const unsigned int, const unsigned int, const Magick::Color&) )&Magick::Image::colorize)
.def("colorize", (void (Magick::Image::*)(const unsigned int, const Magick::Color&) )&Magick::Image::colorize)
.def("comment", (void (Magick::Image::*)(const std::string&) )&Magick::Image::comment)
.def("compare", &Magick::Image::compare)
.def("composite", (void (Magick::Image::*)(const Magick::Image&, const ::ssize_t, const ::ssize_t, const MagickCore::CompositeOperator) )&Magick::Image::composite, Magick_Image_composite_overloads_3_4())
.def("composite", (void (Magick::Image::*)(const Magick::Image&, const Magick::Geometry&, const MagickCore::CompositeOperator) )&Magick::Image::composite, Magick_Image_composite_overloads_2_3())
.def("composite", (void (Magick::Image::*)(const Magick::Image&, const MagickCore::GravityType, const MagickCore::CompositeOperator) )&Magick::Image::composite, Magick_Image_composite_overloads_2_3())
.def("contrast", &Magick::Image::contrast)
.def("convolve", &Magick::Image::convolve)
.def("crop", &Magick::Image::crop)
.def("cycleColormap", &Magick::Image::cycleColormap)
.def("despeckle", &Magick::Image::despeckle)
.def("display", &Magick::Image::display)
.def("draw", (void (Magick::Image::*)(const Magick::Drawable&) )&Magick::Image::draw)
.def("draw", (void (Magick::Image::*)(const std::list >&) )&Magick::Image::draw)
.def("edge", &Magick::Image::edge, Magick_Image_edge_overloads_0_1())
.def("emboss", &Magick::Image::emboss, Magick_Image_emboss_overloads_0_2())
.def("enhance", &Magick::Image::enhance)
.def("equalize", &Magick::Image::equalize)
.def("erase", &Magick::Image::erase)
.def("flip", &Magick::Image::flip)
.def("floodFillColor", (void (Magick::Image::*)(const ::ssize_t, const ::ssize_t, const Magick::Color&) )&Magick::Image::floodFillColor)
.def("floodFillColor", (void (Magick::Image::*)(const Magick::Geometry&, const Magick::Color&) )&Magick::Image::floodFillColor)
.def("floodFillColor", (void (Magick::Image::*)(const ::ssize_t, const ::ssize_t, const Magick::Color&, const Magick::Color&) )&Magick::Image::floodFillColor)
.def("floodFillColor", (void (Magick::Image::*)(const Magick::Geometry&, const Magick::Color&, const Magick::Color&) )&Magick::Image::floodFillColor)
.def("floodFillOpacity", &Magick::Image::floodFillOpacity)
.def("floodFillTexture", (void (Magick::Image::*)(const ::ssize_t, const ::ssize_t, const Magick::Image&) )&Magick::Image::floodFillTexture)
.def("floodFillTexture", (void (Magick::Image::*)(const Magick::Geometry&, const Magick::Image&) )&Magick::Image::floodFillTexture)
.def("floodFillTexture", (void (Magick::Image::*)(const ::ssize_t, const ::ssize_t, const Magick::Image&, const Magick::Color&) )&Magick::Image::floodFillTexture)
.def("floodFillTexture", (void (Magick::Image::*)(const Magick::Geometry&, const Magick::Image&, const Magick::Color&) )&Magick::Image::floodFillTexture)
.def("flop", &Magick::Image::flop)
.def("frame", (void (Magick::Image::*)(const Magick::Geometry&) )&Magick::Image::frame, Magick_Image_frame_overloads_0_1())
.def("frame", (void (Magick::Image::*)(const size_t, const size_t, const ::ssize_t, const ::ssize_t) )&Magick::Image::frame, Magick_Image_frame_overloads_2_4())
.def("gamma", (void (Magick::Image::*)(const double) )&Magick::Image::gamma)
.def("gamma", (void (Magick::Image::*)(const double, const double, const double) )&Magick::Image::gamma)
.def("gaussianBlur", &Magick::Image::gaussianBlur)
.def("implode", &Magick::Image::implode)
.def("label", (void (Magick::Image::*)(const std::string&) )&Magick::Image::label)
.def("magnify", &Magick::Image::magnify)
.def("map", &Magick::Image::map, Magick_Image_map_overloads_1_2())
.def("matteFloodfill", &Magick::Image::matteFloodfill)
.def("medianFilter", &Magick::Image::medianFilter, Magick_Image_medianFilter_overloads_0_1())
.def("minify", &Magick::Image::minify)
.def("modulate", &Magick::Image::modulate)
.def("negate", &Magick::Image::negate, Magick_Image_negate_overloads_0_1())
.def("normalize", &Magick::Image::normalize)
.def("oilPaint", &Magick::Image::oilPaint, Magick_Image_oilPaint_overloads_0_1())
.def("opacity", &Magick::Image::opacity)
.def("opaque", &Magick::Image::opaque)
.def("ping", (void (Magick::Image::*)(const std::string&) )&Magick::Image::ping)
.def("ping", (void (Magick::Image::*)(const Magick::Blob&) )&Magick::Image::ping)
.def("quantize", &Magick::Image::quantize, Magick_Image_quantize_overloads_0_1())
.def("process", &Magick::Image::process)
.def("raise", &Magick::Image::raise, Magick_Image_raise_overloads_0_2())
.def("read", (void (Magick::Image::*)(const std::string&) )&Magick::Image::read)
.def("read", (void (Magick::Image::*)(const Magick::Geometry&, const std::string&) )&Magick::Image::read)
.def("read", (void (Magick::Image::*)(const Magick::Blob&) )&Magick::Image::read)
.def("read", (void (Magick::Image::*)(const Magick::Blob&, const Magick::Geometry&) )&Magick::Image::read)
.def("read", (void (Magick::Image::*)(const Magick::Blob&, const Magick::Geometry&, const size_t) )&Magick::Image::read)
.def("read", (void (Magick::Image::*)(const Magick::Blob&, const Magick::Geometry&, const size_t, const std::string&) )&Magick::Image::read)
.def("read", (void (Magick::Image::*)(const Magick::Blob&, const Magick::Geometry&, const std::string&) )&Magick::Image::read)
.def("read", (void (Magick::Image::*)(const size_t, const size_t, const std::string&, const MagickCore::StorageType, const void*) )&Magick::Image::read)
.def("reduceNoise", (void (Magick::Image::*)() )&Magick::Image::reduceNoise)
.def("reduceNoise", (void (Magick::Image::*)(const double) )&Magick::Image::reduceNoise)
.def("resize", &Magick::Image::resize)
.def("roll", (void (Magick::Image::*)(const Magick::Geometry&) )&Magick::Image::roll)
.def("roll", (void (Magick::Image::*)(const size_t, const size_t) )&Magick::Image::roll)
.def("rotate", &Magick::Image::rotate)
.def("sample", &Magick::Image::sample)
.def("scale", &Magick::Image::scale)
.def("segment", &Magick::Image::segment, Magick_Image_segment_overloads_0_2())
.def("shade", &Magick::Image::shade, Magick_Image_shade_overloads_0_3())
.def("sharpen", &Magick::Image::sharpen, Magick_Image_sharpen_overloads_0_2())
.def("shave", &Magick::Image::shave)
.def("shear", &Magick::Image::shear)
.def("solarize", &Magick::Image::solarize, Magick_Image_solarize_overloads_0_1())
.def("spread", &Magick::Image::spread, Magick_Image_spread_overloads_0_1())
.def("stegano", &Magick::Image::stegano)
.def("stereo", &Magick::Image::stereo)
.def("strip", &Magick::Image::strip)
.def("swirl", &Magick::Image::swirl)
.def("texture", &Magick::Image::texture)
.def("threshold", &Magick::Image::threshold)
.def("transform", (void (Magick::Image::*)(const Magick::Geometry&) )&Magick::Image::transform)
.def("transform", (void (Magick::Image::*)(const Magick::Geometry&, const Magick::Geometry&) )&Magick::Image::transform)
.def("transparent", &Magick::Image::transparent)
.def("trim", &Magick::Image::trim)
.def("type", (void (Magick::Image::*)(const MagickCore::ImageType) )&Magick::Image::type)
.def("unsharpmask", &Magick::Image::unsharpmask)
.def("wave", &Magick::Image::wave, Magick_Image_wave_overloads_0_2())
.def("write", (void (Magick::Image::*)(const std::string&) )&Magick::Image::write)
.def("write", (void (Magick::Image::*)(Magick::Blob*) )&Magick::Image::write)
.def("write", (void (Magick::Image::*)(Magick::Blob*, const std::string&) )&Magick::Image::write)
.def("write", (void (Magick::Image::*)(Magick::Blob*, const std::string&, const size_t) )&Magick::Image::write)
.def("write", (void (Magick::Image::*)(const ::ssize_t, const ::ssize_t, const size_t, const size_t, const std::string&, const MagickCore::StorageType, void*) )&Magick::Image::write)
.def("zoom", &Magick::Image::zoom)
.def("adjoin", (void (Magick::Image::*)(const bool) )&Magick::Image::adjoin)
.def("adjoin", (bool (Magick::Image::*)() const)&Magick::Image::adjoin)
.def("antiAlias", (void (Magick::Image::*)(const bool) )&Magick::Image::antiAlias)
.def("antiAlias", (bool (Magick::Image::*)() )&Magick::Image::antiAlias)
.def("animationDelay", (void (Magick::Image::*)(const size_t) )&Magick::Image::animationDelay)
.def("animationDelay", (size_t (Magick::Image::*)() const)&Magick::Image::animationDelay)
.def("animationIterations", (void (Magick::Image::*)(const size_t) )&Magick::Image::animationIterations)
.def("animationIterations", (size_t (Magick::Image::*)() const)&Magick::Image::animationIterations)
.def("attribute", (void (Magick::Image::*)(const std::string, const std::string) )&Magick::Image::attribute)
.def("attribute", (std::string (Magick::Image::*)(const std::string) )&Magick::Image::attribute)
.def("backgroundColor", (void (Magick::Image::*)(const Magick::Color&) )&Magick::Image::backgroundColor)
.def("backgroundColor", (Magick::Color (Magick::Image::*)() const)&Magick::Image::backgroundColor)
.def("backgroundTexture", (void (Magick::Image::*)(const std::string&) )&Magick::Image::backgroundTexture)
.def("backgroundTexture", (std::string (Magick::Image::*)() const)&Magick::Image::backgroundTexture)
.def("baseColumns", &Magick::Image::baseColumns)
.def("baseFilename", &Magick::Image::baseFilename)
.def("baseRows", &Magick::Image::baseRows)
.def("borderColor", (void (Magick::Image::*)(const Magick::Color&) )&Magick::Image::borderColor)
.def("borderColor", (Magick::Color (Magick::Image::*)() const)&Magick::Image::borderColor)
.def("boundingBox", &Magick::Image::boundingBox)
.def("boxColor", (void (Magick::Image::*)(const Magick::Color&) )&Magick::Image::boxColor)
.def("boxColor", (Magick::Color (Magick::Image::*)() const)&Magick::Image::boxColor)
.def("cacheThreshold", &Magick::Image::cacheThreshold)
.def("chromaBluePrimary", (void (Magick::Image::*)(const double, const double) )&Magick::Image::chromaBluePrimary)
.def("chromaBluePrimary", (void (Magick::Image::*)(double*, double*) const)&Magick::Image::chromaBluePrimary)
.def("chromaGreenPrimary", (void (Magick::Image::*)(const double, const double) )&Magick::Image::chromaGreenPrimary)
.def("chromaGreenPrimary", (void (Magick::Image::*)(double*, double*) const)&Magick::Image::chromaGreenPrimary)
.def("chromaRedPrimary", (void (Magick::Image::*)(const double, const double) )&Magick::Image::chromaRedPrimary)
.def("chromaRedPrimary", (void (Magick::Image::*)(double*, double*) const)&Magick::Image::chromaRedPrimary)
.def("chromaWhitePoint", (void (Magick::Image::*)(const double, const double) )&Magick::Image::chromaWhitePoint)
.def("chromaWhitePoint", (void (Magick::Image::*)(double*, double*) const)&Magick::Image::chromaWhitePoint)
.def("classType", (void (Magick::Image::*)(const MagickCore::ClassType) )&Magick::Image::classType)
.def("classType", (MagickCore::ClassType (Magick::Image::*)() const)&Magick::Image::classType)
.def("clipMask", (void (Magick::Image::*)(const Magick::Image&) )&Magick::Image::clipMask)
.def("clipMask", (Magick::Image (Magick::Image::*)() const)&Magick::Image::clipMask)
.def("colorFuzz", (void (Magick::Image::*)(const double) )&Magick::Image::colorFuzz)
.def("colorFuzz", (double (Magick::Image::*)() const)&Magick::Image::colorFuzz)
.def("colorMap", (void (Magick::Image::*)(const size_t, const Magick::Color&) )&Magick::Image::colorMap)
.def("colorMap", (Magick::Color (Magick::Image::*)(const size_t) const)&Magick::Image::colorMap)
.def("colorMapSize", (void (Magick::Image::*)(const size_t) )&Magick::Image::colorMapSize)
.def("colorMapSize", (size_t (Magick::Image::*)() )&Magick::Image::colorMapSize)
.def("colorSpace", (void (Magick::Image::*)(const MagickCore::ColorspaceType) )&Magick::Image::colorSpace)
.def("colorSpace", (MagickCore::ColorspaceType (Magick::Image::*)() const)&Magick::Image::colorSpace)
.def("columns", &Magick::Image::columns)
.def("comment", (std::string (Magick::Image::*)() const)&Magick::Image::comment)
.def("compose", (void (Magick::Image::*)(const MagickCore::CompositeOperator) )&Magick::Image::compose)
.def("compose", (MagickCore::CompositeOperator (Magick::Image::*)() const)&Magick::Image::compose)
.def("compressType", (void (Magick::Image::*)(const MagickCore::CompressionType) )&Magick::Image::compressType)
.def("compressType", (MagickCore::CompressionType (Magick::Image::*)() const)&Magick::Image::compressType)
.def("debug", (void (Magick::Image::*)(const bool) )&Magick::Image::debug)
.def("debug", (bool (Magick::Image::*)() const)&Magick::Image::debug)
.def("defineValue", (void (Magick::Image::*)(const std::string&, const std::string&, const std::string&) )&Magick::Image::defineValue)
.def("defineValue", (std::string (Magick::Image::*)(const std::string&, const std::string&) const)&Magick::Image::defineValue)
.def("defineSet", (void (Magick::Image::*)(const std::string&, const std::string&, bool) )&Magick::Image::defineSet)
.def("defineSet", (bool (Magick::Image::*)(const std::string&, const std::string&) const)&Magick::Image::defineSet)
.def("density", (void (Magick::Image::*)(const Magick::Geometry&) )&Magick::Image::density)
.def("density", (Magick::Geometry (Magick::Image::*)() const)&Magick::Image::density)
.def("depth", (void (Magick::Image::*)(const size_t) )&Magick::Image::depth)
.def("depth", (size_t (Magick::Image::*)() const)&Magick::Image::depth)
.def("directory", &Magick::Image::directory)
.def("endian", (void (Magick::Image::*)(const MagickCore::EndianType) )&Magick::Image::endian)
.def("endian", (MagickCore::EndianType (Magick::Image::*)() const)&Magick::Image::endian)
.def("fileName", (void (Magick::Image::*)(const std::string&) )&Magick::Image::fileName)
.def("fileName", (std::string (Magick::Image::*)() const)&Magick::Image::fileName)
.def("fileSize", &Magick::Image::fileSize)
.def("fillColor", (void (Magick::Image::*)(const Magick::Color&) )&Magick::Image::fillColor)
.def("fillColor", (Magick::Color (Magick::Image::*)() const)&Magick::Image::fillColor)
.def("fillRule", (void (Magick::Image::*)(const MagickCore::FillRule&) )&Magick::Image::fillRule)
.def("fillRule", (MagickCore::FillRule (Magick::Image::*)() const)&Magick::Image::fillRule)
.def("fillPattern", (void (Magick::Image::*)(const Magick::Image&) )&Magick::Image::fillPattern)
.def("fillPattern", (Magick::Image (Magick::Image::*)() const)&Magick::Image::fillPattern)
.def("filterType", (void (Magick::Image::*)(const MagickCore::FilterTypes) )&Magick::Image::filterType)
.def("filterType", (MagickCore::FilterTypes (Magick::Image::*)() const)&Magick::Image::filterType)
.def("font", (void (Magick::Image::*)(const std::string&) )&Magick::Image::font)
.def("font", (std::string (Magick::Image::*)() const)&Magick::Image::font)
.def("fontPointsize", (void (Magick::Image::*)(const double) )&Magick::Image::fontPointsize)
.def("fontPointsize", (double (Magick::Image::*)() const)&Magick::Image::fontPointsize)
.def("fontTypeMetrics", &Magick::Image::fontTypeMetrics)
.def("format", &Magick::Image::format)
.def("gamma", (double (Magick::Image::*)() const)&Magick::Image::gamma)
.def("geometry", &Magick::Image::geometry)
.def("gifDisposeMethod", (void (Magick::Image::*)(const size_t) )&Magick::Image::gifDisposeMethod)
.def("gifDisposeMethod", (size_t (Magick::Image::*)() const)&Magick::Image::gifDisposeMethod)
.def("iccColorProfile", (void (Magick::Image::*)(const Magick::Blob&) )&Magick::Image::iccColorProfile)
.def("iccColorProfile", (Magick::Blob (Magick::Image::*)() const)&Magick::Image::iccColorProfile)
.def("interlaceType", (void (Magick::Image::*)(const MagickCore::InterlaceType) )&Magick::Image::interlaceType)
.def("interlaceType", (MagickCore::InterlaceType (Magick::Image::*)() const)&Magick::Image::interlaceType)
.def("iptcProfile", (void (Magick::Image::*)(const Magick::Blob&) )&Magick::Image::iptcProfile)
.def("iptcProfile", (Magick::Blob (Magick::Image::*)() const)&Magick::Image::iptcProfile)
.def("isValid", (void (Magick::Image::*)(const bool) )&Magick::Image::isValid)
.def("isValid", (bool (Magick::Image::*)() const)&Magick::Image::isValid)
.def("label", (std::string (Magick::Image::*)() const)&Magick::Image::label)
.def("lineWidth", (void (Magick::Image::*)(const double) )&Magick::Image::lineWidth)
.def("lineWidth", (double (Magick::Image::*)() const)&Magick::Image::lineWidth)
.def("magick", (void (Magick::Image::*)(const std::string&) )&Magick::Image::magick)
.def("magick", (std::string (Magick::Image::*)() const)&Magick::Image::magick)
.def("matte", (void (Magick::Image::*)(const bool) )&Magick::Image::matte)
.def("matte", (bool (Magick::Image::*)() const)&Magick::Image::matte)
.def("matteColor", (void (Magick::Image::*)(const Magick::Color&) )&Magick::Image::matteColor)
.def("matteColor", (Magick::Color (Magick::Image::*)() const)&Magick::Image::matteColor)
.def("meanErrorPerPixel", &Magick::Image::meanErrorPerPixel)
.def("modulusDepth", (void (Magick::Image::*)(const size_t) )&Magick::Image::modulusDepth)
.def("modulusDepth", (size_t (Magick::Image::*)() const)&Magick::Image::modulusDepth)
.def("montageGeometry", &Magick::Image::montageGeometry)
.def("monochrome", (void (Magick::Image::*)(const bool) )&Magick::Image::monochrome)
.def("monochrome", (bool (Magick::Image::*)() const)&Magick::Image::monochrome)
.def("normalizedMaxError", &Magick::Image::normalizedMaxError)
.def("normalizedMeanError", &Magick::Image::normalizedMeanError)
.def("page", (void (Magick::Image::*)(const Magick::Geometry&) )&Magick::Image::page)
.def("page", (Magick::Geometry (Magick::Image::*)() const)&Magick::Image::page)
.def("penColor", (void (Magick::Image::*)(const Magick::Color&) )&Magick::Image::penColor)
.def("penColor", (Magick::Color (Magick::Image::*)() const)&Magick::Image::penColor)
.def("penTexture", (void (Magick::Image::*)(const Magick::Image&) )&Magick::Image::penTexture)
.def("penTexture", (Magick::Image (Magick::Image::*)() const)&Magick::Image::penTexture)
.def("pixelColor", (void (Magick::Image::*)(const ::ssize_t, const ::ssize_t, const Magick::Color&) )&Magick::Image::pixelColor)
.def("pixelColor", (Magick::Color (Magick::Image::*)(const ::ssize_t, const ::ssize_t) const)&Magick::Image::pixelColor)
.def("profile", (void (Magick::Image::*)(const std::string, const Magick::Blob&) )&Magick::Image::profile)
.def("profile", (Magick::Blob (Magick::Image::*)(const std::string) const)&Magick::Image::profile)
.def("quality", (void (Magick::Image::*)(const size_t) )&Magick::Image::quality)
.def("quality", (size_t (Magick::Image::*)() const)&Magick::Image::quality)
.def("quantizeColors", (void (Magick::Image::*)(const size_t) )&Magick::Image::quantizeColors)
.def("quantizeColors", (size_t (Magick::Image::*)() const)&Magick::Image::quantizeColors)
.def("quantizeColorSpace", (void (Magick::Image::*)(const MagickCore::ColorspaceType) )&Magick::Image::quantizeColorSpace)
.def("quantizeColorSpace", (MagickCore::ColorspaceType (Magick::Image::*)() const)&Magick::Image::quantizeColorSpace)
.def("quantizeDither", (void (Magick::Image::*)(const bool) )&Magick::Image::quantizeDither)
.def("quantizeDither", (bool (Magick::Image::*)() const)&Magick::Image::quantizeDither)
.def("quantizeTreeDepth", (void (Magick::Image::*)(const size_t) )&Magick::Image::quantizeTreeDepth)
.def("quantizeTreeDepth", (size_t (Magick::Image::*)() const)&Magick::Image::quantizeTreeDepth)
.def("renderingIntent", (void (Magick::Image::*)(const MagickCore::RenderingIntent) )&Magick::Image::renderingIntent)
.def("renderingIntent", (MagickCore::RenderingIntent (Magick::Image::*)() const)&Magick::Image::renderingIntent)
.def("resolutionUnits", (void (Magick::Image::*)(const MagickCore::ResolutionType) )&Magick::Image::resolutionUnits)
.def("resolutionUnits", (MagickCore::ResolutionType (Magick::Image::*)() const)&Magick::Image::resolutionUnits)
.def("rows", &Magick::Image::rows)
.def("scene", (void (Magick::Image::*)(const size_t) )&Magick::Image::scene)
.def("scene", (size_t (Magick::Image::*)() const)&Magick::Image::scene)
.def("signature", &Magick::Image::signature, Magick_Image_signature_overloads_0_1())
.def("size", (void (Magick::Image::*)(const Magick::Geometry&) )&Magick::Image::size)
.def("size", (Magick::Geometry (Magick::Image::*)() const)&Magick::Image::size)
.def("statistics", &Magick::Image::statistics)
.def("strokeAntiAlias", (void (Magick::Image::*)(const bool) )&Magick::Image::strokeAntiAlias)
.def("strokeAntiAlias", (bool (Magick::Image::*)() const)&Magick::Image::strokeAntiAlias)
.def("strokeColor", (void (Magick::Image::*)(const Magick::Color&) )&Magick::Image::strokeColor)
.def("strokeColor", (Magick::Color (Magick::Image::*)() const)&Magick::Image::strokeColor)
.def("strokeDashOffset", (void (Magick::Image::*)(const double) )&Magick::Image::strokeDashOffset)
.def("strokeDashOffset", (double (Magick::Image::*)() const)&Magick::Image::strokeDashOffset)
.def("strokeLineCap", (void (Magick::Image::*)(const MagickCore::LineCap) )&Magick::Image::strokeLineCap)
.def("strokeLineCap", (MagickCore::LineCap (Magick::Image::*)() const)&Magick::Image::strokeLineCap)
.def("strokeLineJoin", (void (Magick::Image::*)(const MagickCore::LineJoin) )&Magick::Image::strokeLineJoin)
.def("strokeLineJoin", (MagickCore::LineJoin (Magick::Image::*)() const)&Magick::Image::strokeLineJoin)
.def("strokeMiterLimit", (void (Magick::Image::*)(const size_t) )&Magick::Image::strokeMiterLimit)
.def("strokeMiterLimit", (size_t (Magick::Image::*)() const)&Magick::Image::strokeMiterLimit)
.def("strokePattern", (void (Magick::Image::*)(const Magick::Image&) )&Magick::Image::strokePattern)
.def("strokePattern", (Magick::Image (Magick::Image::*)() const)&Magick::Image::strokePattern)
.def("strokeWidth", (void (Magick::Image::*)(const double) )&Magick::Image::strokeWidth)
.def("strokeWidth", (double (Magick::Image::*)() const)&Magick::Image::strokeWidth)
.def("subImage", (void (Magick::Image::*)(const size_t) )&Magick::Image::subImage)
.def("subImage", (size_t (Magick::Image::*)() const)&Magick::Image::subImage)
.def("subRange", (void (Magick::Image::*)(const size_t) )&Magick::Image::subRange)
.def("subRange", (size_t (Magick::Image::*)() const)&Magick::Image::subRange)
.def("textEncoding", (void (Magick::Image::*)(const std::string&) )&Magick::Image::textEncoding)
.def("textEncoding", (std::string (Magick::Image::*)() const)&Magick::Image::textEncoding)
.def("tileName", (void (Magick::Image::*)(const std::string&) )&Magick::Image::tileName)
.def("tileName", (std::string (Magick::Image::*)() const)&Magick::Image::tileName)
.def("totalColors", &Magick::Image::totalColors)
.def("transformOrigin", &Magick::Image::transformOrigin)
.def("transformRotation", &Magick::Image::transformRotation)
.def("transformReset", &Magick::Image::transformReset)
.def("transformScale", &Magick::Image::transformScale)
.def("transformSkewX", &Magick::Image::transformSkewX)
.def("transformSkewY", &Magick::Image::transformSkewY)
.def("verbose", (void (Magick::Image::*)(const bool) )&Magick::Image::verbose)
.def("verbose", (bool (Magick::Image::*)() const)&Magick::Image::verbose)
.def("view", (void (Magick::Image::*)(const std::string&) )&Magick::Image::view)
.def("view", (std::string (Magick::Image::*)() const)&Magick::Image::view)
.def("x11Display", (void (Magick::Image::*)(const std::string&) )&Magick::Image::x11Display)
.def("x11Display", (std::string (Magick::Image::*)() const)&Magick::Image::x11Display)
.def("xResolution", &Magick::Image::xResolution)
.def("yResolution", &Magick::Image::yResolution)
.def("syncPixels", &Magick::Image::syncPixels)
.def("readPixels", &Magick::Image::readPixels)
.def("writePixels", &Magick::Image::writePixels)
.def("modifyImage", &Magick::Image::modifyImage)
.def("throwImageException", &Magick::Image::throwImageException)
.def("registerId", &Magick::Image::registerId)
.def("unregisterId", &Magick::Image::unregisterId)
.staticmethod("cacheThreshold")
.def( self == self )
.def( self != self )
.def( self > self )
.def( self < self )
.def( self >= self )
.def( self <= self )
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableArc.cpp 0000644 0000024 0000024 00000004341 11620751063 017411 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableArc_Wrapper: Magick::DrawableArc
{
Magick_DrawableArc_Wrapper(PyObject* py_self_, double p0, double p1, double p2, double p3, double p4, double p5):
Magick::DrawableArc(p0, p1, p2, p3, p4, p5), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableArc()
{
class_< Magick::DrawableArc, boost::noncopyable, Magick_DrawableArc_Wrapper >("DrawableArc", init< double, double, double, double, double, double >())
.def("startX", (void (Magick::DrawableArc::*)(double) )&Magick::DrawableArc::startX)
.def("startX", (double (Magick::DrawableArc::*)() const)&Magick::DrawableArc::startX)
.def("startY", (void (Magick::DrawableArc::*)(double) )&Magick::DrawableArc::startY)
.def("startY", (double (Magick::DrawableArc::*)() const)&Magick::DrawableArc::startY)
.def("endX", (void (Magick::DrawableArc::*)(double) )&Magick::DrawableArc::endX)
.def("endX", (double (Magick::DrawableArc::*)() const)&Magick::DrawableArc::endX)
.def("endY", (void (Magick::DrawableArc::*)(double) )&Magick::DrawableArc::endY)
.def("endY", (double (Magick::DrawableArc::*)() const)&Magick::DrawableArc::endY)
.def("startDegrees", (void (Magick::DrawableArc::*)(double) )&Magick::DrawableArc::startDegrees)
.def("startDegrees", (double (Magick::DrawableArc::*)() const)&Magick::DrawableArc::startDegrees)
.def("endDegrees", (void (Magick::DrawableArc::*)(double) )&Magick::DrawableArc::endDegrees)
.def("endDegrees", (double (Magick::DrawableArc::*)() const)&Magick::DrawableArc::endDegrees)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawablePopGraphicContext.cpp 0000644 0000024 0000024 00000002137 11620751064 022307 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawablePopGraphicContext_Wrapper: Magick::DrawablePopGraphicContext
{
Magick_DrawablePopGraphicContext_Wrapper(PyObject* py_self_):
Magick::DrawablePopGraphicContext(), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawablePopGraphicContext()
{
class_< Magick::DrawablePopGraphicContext, boost::noncopyable, Magick_DrawablePopGraphicContext_Wrapper >("DrawablePopGraphicContext", init< >())
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_GravityType.cpp 0000664 0000024 0000024 00000002370 11202574433 017533 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Using =======================================================================
using namespace boost::python;
// Module ======================================================================
void Export_pyste_src_GravityType()
{
enum_< MagickCore::GravityType >("GravityType")
.value("SouthEastGravity", MagickCore::SouthEastGravity)
.value("UndefinedGravity", MagickCore::UndefinedGravity)
.value("CenterGravity", MagickCore::CenterGravity)
.value("SouthWestGravity", MagickCore::SouthWestGravity)
.value("StaticGravity", MagickCore::StaticGravity)
.value("SouthGravity", MagickCore::SouthGravity)
.value("ForgetGravity", MagickCore::ForgetGravity)
.value("EastGravity", MagickCore::EastGravity)
.value("NorthGravity", MagickCore::NorthGravity)
.value("NorthWestGravity", MagickCore::NorthWestGravity)
.value("NorthEastGravity", MagickCore::NorthEastGravity)
.value("WestGravity", MagickCore::WestGravity)
;
}
PythonMagick-0.9.8/pythonmagick_src/_PathMovetoAbs.cpp 0000644 0000024 0000024 00000002543 11574437254 017773 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_PathMovetoAbs_Wrapper: Magick::PathMovetoAbs
{
Magick_PathMovetoAbs_Wrapper(PyObject* py_self_, const Magick::Coordinate& p0):
Magick::PathMovetoAbs(p0), py_self(py_self_) {}
Magick_PathMovetoAbs_Wrapper(PyObject* py_self_, const Magick::CoordinateList& p0):
Magick::PathMovetoAbs(p0), py_self(py_self_) {}
Magick_PathMovetoAbs_Wrapper(PyObject* py_self_, const Magick::PathMovetoAbs& p0):
Magick::PathMovetoAbs(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_PathMovetoAbs()
{
class_< Magick::PathMovetoAbs, Magick_PathMovetoAbs_Wrapper >("PathMovetoAbs", init< const Magick::Coordinate& >())
.def(init< const Magick::CoordinateList& >())
.def(init< const Magick::PathMovetoAbs& >())
;
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableFillRule.cpp 0000644 0000024 0000024 00000002502 11620751063 020417 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include
// Declarations ================================================================
#include
// Using =======================================================================
using namespace boost::python;
namespace {
struct Magick_DrawableFillRule_Wrapper: Magick::DrawableFillRule
{
Magick_DrawableFillRule_Wrapper(PyObject* py_self_, const MagickCore::FillRule p0):
Magick::DrawableFillRule(p0), py_self(py_self_) {}
PyObject* py_self;
};
}// namespace
// Module ======================================================================
void Export_pyste_src_DrawableFillRule()
{
class_< Magick::DrawableFillRule, boost::noncopyable, Magick_DrawableFillRule_Wrapper >("DrawableFillRule", init< const MagickCore::FillRule >())
.def("fillRule", (void (Magick::DrawableFillRule::*)(const MagickCore::FillRule) )&Magick::DrawableFillRule::fillRule)
.def("fillRule", (MagickCore::FillRule (Magick::DrawableFillRule::*)() const)&Magick::DrawableFillRule::fillRule)
;
implicitly_convertible();
}
PythonMagick-0.9.8/pythonmagick_src/_DrawableScaling.cpp 0000644 0000024 0000024 00000002635 11620751064 020271 0000000 0000000
// Boost Includes ==============================================================
#include
#include
// Includes ====================================================================
#include