summaryrefslogtreecommitdiff
path: root/cairo/Makefile
diff options
context:
space:
mode:
authorFabien Costantini <fabien@onepost.net>2008-10-19 01:42:35 +0000
committerFabien Costantini <fabien@onepost.net>2008-10-19 01:42:35 +0000
commit268ffc6ef2477f83a0d48af2d64baf3c00e6cddc (patch)
tree4a500fa6716a5334f705d7d2d761771d6e28fba7 /cairo/Makefile
parent7a5e64a4f3c8e1126dba6909ba7379c2100b055c (diff)
Cairo increment 2: Finer cairo granularity, less deps, new fltk_cairo lib
+ added new USE_CAIRO config preprocessor def. to differentiate from HAVE_CAIRO so that we can use the cairo lib without forcing the full fltk lib to be linked against it. In that case, cairo autolink context functionality which needs fltk lib instrumentation is disabled. + added new --enable-cairoext, which correspond to previous --enable-cairo. now, --enable-cairo only adds HAVE_CAIRO def. and keeps fltk lib from referencing cairo. In both cases (--enable-cairo & --enable-cairoext), a new fltk_cairo lib is created. This lib, similarly to local versions of png,jpeg and zlib, is not generated if cairo is not enabled. + added cairo to fltk-config : now new --use-cairo flag is available + modified all unix like makefiles to now generate minimum cairo deps and also new libfltk_cairo lib. + added new cairo subdir to permit conditional fltk_cairo lib generation. + vc2005 project minimum update to compile without be broken, but still needs to create a similar fltk_cairo independent lib. For now, it works as before with a dedicated cairo env. similar to --enable-cairoext context in unix. + regression tested ok with cairo disabled on win32, mac osx, mingw. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6462 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'cairo/Makefile')
-rw-r--r--cairo/Makefile173
1 files changed, 173 insertions, 0 deletions
diff --git a/cairo/Makefile b/cairo/Makefile
new file mode 100644
index 000000000..8381369de
--- /dev/null
+++ b/cairo/Makefile
@@ -0,0 +1,173 @@
+#
+# "$Id: Makefile 5667 2007-02-07 02:35:44Z mike $"
+#
+# PNG library makefile for the Fast Light Toolkit (FLTK).
+#
+# Copyright 1997-2007 by Easy Software Products.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library 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
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+# USA.
+#
+# Please report all bugs and problems to "fltk-bugs@fltk.org".
+#
+
+include ../makeinclude
+
+#
+# Object files...
+#
+
+CAIROOBJECTS = Fl_Cairo.o
+
+$(CAIROLIBNAME): $(CAIROOBJECTS)
+ echo $(LIBCOMMAND) $@ ...
+ $(RM) $@
+ $(LIBCOMMAND) $@ $(CAIROOBJECTS)
+ $(RANLIB) $@
+
+libfltk_cairo.so.1.3: $(CAIROOBJECTS) libfltk.so.1.3
+ echo $(DSOCOMMAND) $@ ...
+ $(DSOCOMMAND) $@ $(CAIROOBJECTS) -L. $(IMAGELIBS) -lfltk
+ $(RM) libfltk_cairo.so
+ $(LN) libfltk_cairo.so.1.3 libfltk_cairo.so
+
+libfltk_cairo.sl.1.3: $(CAIROOBJECTS) libfltk.sl.1.3
+ echo $(DSOCOMMAND) $@ ...
+ $(DSOCOMMAND) $@ $(CAIROOBJECTS) -L. $(IMAGELIBS) -lfltk
+ $(RM) libfltk_cairo.sl
+ $(LN) libfltk_cairo.sl.1.3 libfltk_cairo.sl
+
+libfltk_cairo.1.3.dylib: $(CAIROOBJECTS) libfltk.1.3.dylib
+ echo $(DSOCOMMAND) $@ ...
+ $(DSOCOMMAND) $@ \
+ -install_name $(libdir)/$@ \
+ -current_version 1.3.0 \
+ -compatibility_version 1.3.0 \
+ $(CAIROOBJECTS) -L. $(LDLIBS) $(IMAGELIBS) -lfltk
+ $(RM) libfltk_cairo.dylib
+ $(LN) libfltk_cairo.1.3.dylib libfltk_cairo.dylib
+
+libfltk_cairo_s.a: $(CAIROOBJECTS)
+ echo $(DSOCOMMAND) libfltk_cairo_s.o ...
+ $(DSOCOMMAND) libfltk_cairo_s.o $(CAIROOBJECTS)
+ echo $(LIBCOMMAND) libfltk_cairo_s.a libfltk_cairo_s.o
+ $(RM) $@
+ $(LIBCOMMAND) libfltk_cairo_s.a libfltk_cairo_s.o
+ $(CHMOD) +x libfltk_cairo_s.a
+
+
+cygfltknox_cairo-1.3.dll: $(CAIROLIBNAME) cygfltknox-1.3.dll
+ echo $(DSOCOMMAND) $(CAIROLIBNAME) ...
+ $(DSOCOMMAND) $(CAIROLIBNAME) -Wl,--no-whole-archive \
+ -Wl,--out-implib=libfltk_cairo.dll.a \
+ -L. -lfltk $(CAIROLIBS) $(LDLIBS)
+
+mgwfltknox_cairo-1.3.dll: $(CAIROLIBNAME) mgwfltknox-1.3.dll
+ echo $(DSOCOMMAND) $(CAIROLIBNAME) ...
+ $(DSOCOMMAND) $(CAIROLIBNAME) -Wl,--no-whole-archive \
+ -Wl,--out-implib=libfltk_cairo.dll.a \
+ -L. -lfltk $(CAIROLIBS) $(LDLIBS)
+
+#
+# Make all of the targets...
+#
+
+all: $(CAIROLIBNAME) $(CAIRODSONAME)
+
+
+#
+# Clean all of the targets and object files...
+#
+
+clean:
+ -$(RM) *.o *.dll.a core.* *~ *.bak *.bck
+ -$(RM) $(CAIROOBJECTS) $(CAIROLIBNAME) $(CAIRODSONAME) \
+ libfltk_cairo.so libfltk_cairo.sl libfltk_cairo.dylib
+
+#
+# Install everything...
+#
+
+install: $(CAIROLIBNAME) $(CAIRODSONAME)
+ echo "Installing libfltk_cairo$(LIBEXT) in $(libdir)..."
+ -$(INSTALL_DIR) $(DESTDIR)$(libdir)
+ $(INSTALL_LIB) $(CAIROLIBNAME) $(DESTDIR)$(libdir)
+
+ if test x$(CAIRODSONAME) = xlibfltk_cairo.so.1.3; then\
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.so*;\
+ $(INSTALL_LIB) libfltk_cairo.so.1.3 $(DESTDIR)$(libdir); \
+ $(LN) libfltk_cairo.so.1.3 $(DESTDIR)$(libdir)/libfltk_cairo.so;\
+ fi
+ if test x$(CAIRODSONAME) = xlibfltk_cairo.sl.1.3; then\
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.sl*;\
+ $(INSTALL_LIB) libfltk_cairo.sl.1.3 $(DESTDIR)$(libdir); \
+ $(LN) libfltk_cairo.sl.1.3 $(DESTDIR)$(libdir)/libfltk_cairo.sl;\
+ fi
+ if test x$(CAIRODSONAME) = xlibfltk_cairo.1.3.dylib; then\
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.*dylib;\
+ $(INSTALL_LIB) libfltk_cairo.1.3.dylib $(DESTDIR)$(libdir); \
+ $(LN) libfltk_cairo.1.3.dylib $(DESTDIR)$(libdir)/libfltk_cairo.dylib;\
+ fi
+ if test x$(CAIRODSONAME) = xlibfltk_cairo_s.a; then\
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo_s.a;\
+ $(INSTALL_LIB) libfltk_cairo_s.a $(DESTDIR)$(libdir); \
+ fi
+ if test x$(CAIRODSONAME) = xcygfltknox_cairo-1.3.dll; then\
+ $(RM) $(DESTDIR)$(bindir)/$(CAIRODSONAME); \
+ $(INSTALL_LIB) $(CAIRODSONAME) $(DESTDIR)$(bindir); \
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.dll.a;\
+ $(INSTALL_LIB) libfltk_cairo.dll.a $(DESTDIR)$(libdir); \
+ fi
+ if test x$(CAIRODSONAME) = xmgwfltknox_cairo-1.3.dll; then\
+ $(RM) $(DESTDIR)$(bindir)/$(CAIRODSONAME); \
+ $(INSTALL_LIB) $(CAIRODSONAME) $(DESTDIR)$(bindir); \
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.dll.a;\
+ $(INSTALL_LIB) libfltk_cairo.dll.a $(DESTDIR)$(libdir); \
+ fi
+#
+# Uninstall everything...
+#
+
+uninstall:
+ echo "Uninstalling libfltk_cairo$(LIBEXT) in $(libdir)..."
+ if test x$(CAIROLIBNAME) != x; then\
+ $(RM) $(DESTDIR)$(libdir)/$(CAIROLIBNAME);\
+ fi
+ if test x$(CAIRODSONAME) = xlibfltk_cairo.so.1.3; then\
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.so*;\
+ fi
+ if test x$(CAIRODSONAME) = xlibfltk_cairo.sl.1.3; then\
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.sl*;\
+ fi
+ if test x$(CAIRODSONAME) = xlibfltk_cairo.1.3.dylib; then\
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.*dylib;\
+ fi
+ if test x$(CAIRODSONAME) = xlibfltk_cairo_s.a; then\
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo_s.a;\
+ fi
+ if test x$(CAIRODSONAME) = xcygfltknox_cairo-1.3.dll; then\
+ $(RM) $(DESTDIR)$(bindir)/$(CAIRODSONAME); \
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.dll.a;\
+ fi
+ if test x$(CAIRODSONAME) = xmgwfltknox_cairo-1.3.dll; then\
+ $(RM) $(DESTDIR)$(bindir)/$(CAIRODSONAME); \
+ $(RM) $(DESTDIR)$(libdir)/libfltk_cairo.dll.a;\
+ fi
+
+$(CAIROOBJECTS): ../makeinclude
+
+#
+# End of "$Id: Makefile 5667 2007-02-07 02:35:44Z mike $".
+#