Makefile_insert revision 29c54358e58809867ecea08ad077d54cf7208e8a
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico## Makefile.am fragment, included by src/Makefile.am.
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# ################################################
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# E X T R A
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# ################################################
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNicoif OS_WIN32
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNicowin32_sources = winmain.cpp
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNicowin32ldflags = -lcomdlg32
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNicoendif
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNicoif INKJAR
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNicoinkjar_dir = inkjar
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNicoinkjar_libs = inkjar/libinkjar.a
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNicoendif
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# ################################################
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# I N K S C A P E
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico#
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# ################################################
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico# libinkpre.a: any object that's sharable between inkscape & inkview,
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# and isn't needed by object files in subdirectories (i.e. libinkpre.a
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# comes before subdirectory libraries on the link line).
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico#
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# Excludes winmain.cpp (a gui wrapper around main): I'm guessing that
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# it needs to be explicitly listed as a source of each graphical
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# binary: it isn't (to my knowledge) called by main (whether directly
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# or indirectly), so I don't think that putting it in a library will
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# suffice to get it linked in. Windows devel please confirm. -- pjrm.
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNicolibinkpre_a_SOURCES = \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico algorithms/find-last-if.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico algorithms/longest-common-suffix.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico approx-equal.h remove-last.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico arc-context.cpp arc-context.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico attributes.cpp attributes.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico bad-uri-exception.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico brokenimage.xpm \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico color-rgba.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico color-profile.cpp color-profile.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico color-profile-fns.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico conditions.cpp conditions.h\
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico conn-avoid-ref.cpp conn-avoid-ref.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico connector-context.cpp connector-context.h \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico context-fns.cpp context-fns.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico desktop-affine.cpp desktop-affine.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico desktop-events.cpp desktop-events.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico desktop-handles.cpp desktop-handles.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico desktop-style.cpp desktop-style.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico desktop.cpp desktop.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico document-undo.cpp \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico document.cpp document.h document-private.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico document-subset.cpp document-subset.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico doxygen-main.cpp \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico draw-anchor.cpp \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico draw-anchor.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico draw-context.cpp draw-context.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico dropper-context.cpp dropper-context.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico dyna-draw-context.cpp dyna-draw-context.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico enums.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico event-context.cpp event-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico extract-uri.cpp extract-uri.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico file.cpp file.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico fontsize-expansion.cpp fontsize-expansion.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico forward.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico geom.cpp geom.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico gnuc-attribute.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico gradient-context.cpp gradient-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico gradient-drag.cpp gradient-drag.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico help.cpp help.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico inkscape-stock.cpp inkscape-stock.h\
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico inkscape.cpp inkscape.h inkscape-private.h \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico interface.cpp interface.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico isnan.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico knot-enums.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico knot-holder-entity.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico knot.cpp knot.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico knotholder.cpp knotholder.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico layer-fns.cpp layer-fns.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico macros.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico marker-status.cpp marker-status.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico media.cpp media.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico message-context.cpp message-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico message-stack.cpp message-stack.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico message.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico mod360.cpp mod360.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico modifier-fns.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico node-context.cpp node-context.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico nodepath.cpp nodepath.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico object-edit.cpp object-edit.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico object-hierarchy.cpp object-hierarchy.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico ui/context-menu.cpp \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico ui/context-menu.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico path-chemistry.cpp path-chemistry.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico path-prefix.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico pen-context.cpp \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico pen-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico pencil-context.cpp \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico pencil-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico preferences.cpp preferences.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico preferences-skeleton.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico menus-skeleton.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico prefix.cpp \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico prefix.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico prefs-utils.cpp \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico prefs-utils.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico print.cpp print.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico rect-context.cpp rect-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico require-config.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico rubberband.cpp rubberband.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico satisfied-guide-cns.cpp satisfied-guide-cns.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico selcue.cpp selcue.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico select-context.cpp select-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico selection-chemistry.cpp selection-chemistry.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico selection-describer.cpp selection-describer.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico selection.cpp selection.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico seltrans-handles.cpp seltrans-handles.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico seltrans.cpp seltrans.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico shortcuts.cpp shortcuts.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico slideshow.cpp slideshow.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico snap.cpp snap.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico snapped-point.cpp snapped-point.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico snapper.cpp snapper.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico line-snapper.cpp line-snapper.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico grid-snapper.cpp grid-snapper.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico guide-snapper.cpp guide-snapper.h \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico object-snapper.cpp object-snapper.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-anchor.cpp sp-anchor.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-clippath.cpp sp-clippath.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-conn-end-pair.cpp sp-conn-end-pair.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-conn-end.cpp sp-conn-end.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-cursor.cpp sp-cursor.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-defs.cpp sp-defs.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-ellipse.cpp sp-ellipse.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-flowdiv.h sp-flowdiv.cpp \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-flowregion.h sp-flowregion.cpp \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-flowtext.h sp-flowtext.cpp \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-gradient-fns.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-gradient-reference.cpp \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-gradient-reference.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-gradient-spread.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-gradient-units.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-gradient-vector.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-gradient.cpp sp-gradient.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-guide-attachment.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-guide-constraint.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-guide.cpp sp-guide.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-image.cpp sp-image.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-item-group.cpp sp-item-group.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-item-notify-moveto.cpp sp-item-notify-moveto.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-item-rm-unsatisfied-cns.cpp sp-item-rm-unsatisfied-cns.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-item-transform.cpp sp-item-transform.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-item-update-cns.cpp sp-item-update-cns.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-item.cpp sp-item.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-line.cpp sp-line.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-linear-gradient-fns.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-linear-gradient.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-marker-loc.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-marker.cpp sp-marker.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-mask.cpp sp-mask.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-metadata.cpp sp-metadata.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-metric.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-metrics.cpp sp-metrics.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-namedview.cpp sp-namedview.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-object-group.cpp sp-object-group.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-object-repr.cpp sp-object-repr.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-object.cpp sp-object.h \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico sp-offset.cpp sp-offset.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-paint-server.cpp sp-paint-server.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-path.cpp sp-path.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-pattern.cpp sp-pattern.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-polygon.cpp sp-polygon.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-polyline.cpp sp-polyline.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-radial-gradient-fns.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-radial-gradient.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-rect.cpp sp-rect.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-root.cpp sp-root.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-shape.cpp sp-shape.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-spiral.cpp sp-spiral.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-star.cpp sp-star.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-stop-fns.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-stop.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-string.cpp sp-string.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-symbol.cpp sp-symbol.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-switch.cpp sp-switch.h\
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico sp-text.cpp sp-text.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-textpath.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-tspan.cpp sp-tspan.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-use-reference.cpp sp-use-reference.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico sp-use.cpp sp-use.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico spiral-context.cpp spiral-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico splivarot.cpp splivarot.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico star-context.cpp star-context.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico streams-gzip.h streams-gzip.cpp \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico streams-handles.h streams-handles.cpp \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico streams-jar.h streams-jar.cpp \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico streams-zlib.h streams-zlib.cpp \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico style.cpp style.h \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico sp-style-elem.cpp sp-style-elem.h \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico svg-profile.h \
40e5cf3e8f0ddda79b1650df77d0f847a22822bfJazzyNico svg-view.cpp svg-view.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico svg-view-widget.cpp svg-view-widget.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico text-chemistry.cpp text-chemistry.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico text-context.cpp text-context.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico text-editing.cpp text-editing.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico text-tag-attributes.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico tools-switch.cpp tools-switch.h\
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico uri-references.cpp uri-references.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico verbs.cpp verbs.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico version.cpp version.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico zoom-context.cpp zoom-context.h
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# Force libinkpost.a to be rebuilt if we add files to libinkpost_a_SOURCES.
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNicolibinkpost_a_DEPENDENCIES = Makefile_insert
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# libinkpost.a: Any object file that needs to be near the end of the link line.
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico# gradient-chemistry.o is called by some things in display/.
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNicolibinkpost_a_SOURCES = \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico color.cpp color.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico decimal-round.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico dir-util.cpp dir-util.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico fill-or-stroke.h \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico fixes.cpp \
09d8c881485db7f6fa367e8f60da0f0a12f83ff8JazzyNico gc-alloc.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico gc-anchored.h gc-anchored.cpp \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico gc-core.h \
88395eed42de4d59f54795b60c8c0a7ab881e153JazzyNico gc-finalized.h gc-finalized.cpp \
gc-managed.h \
gc-soft-ptr.h \
gc.cpp \
gradient-chemistry.cpp gradient-chemistry.h \
memeq.h \
round.h \
streq.h \
strneq.h \
composite-undo-stack-observer.h \
composite-undo-stack-observer.cpp \
undo-stack-observer.h \
unit-constants.h \
uri.cpp uri.h
inkscape_private_libs = \
libinkpre.a \
application/libinkapp.a \
ui/dialog/libuidialog.a \
dialogs/libspdialogs.a \
jabber_whiteboard/libjabber_whiteboard.a \
trace/libtrace.a \
svg/libspsvg.a \
widgets/libspwidgets.a \
display/libspdisplay.a \
helper/libspchelp.a \
libcroco/libcroco.a \
libnrtype/libnrtype.a \
libnr/libnr.a \
libavoid/libavoid.a \
livarot/libvarot.a \
ui/view/libuiview.a \
ui/libui.a \
ui/widget/libuiwidget.a \
graphlayout/libgraphlayout.a \
removeoverlap/libremoveoverlap.a \
extension/libextension.a \
extension/implementation/libimplementation.a \
extension/internal/libinternal.a \
extension/script/libscript.a \
dom/libdom.a \
xml/libspxml.a \
util/libinkutil.a \
io/libio.a \
$(inkjar_libs) \
libinkpost.a \
debug/libinkdebug.a
all_libs = \
$(inkscape_private_libs) \
$(INKSCAPE_LIBS) \
$(GNOME_PRINT_LIBS) \
$(GNOME_VFS_LIBS) \
$(XFT_LIBS) \
$(FREETYPE_LIBS) \
$(kdeldadd) \
$(win32ldflags) \
$(PERL_LIBS) \
$(PYTHON_LIBS) \
$(LIBLOUDMOUTH_LIBS)
desktop.$(OBJEXT): helper/sp-marshal.h
document.$(OBJEXT): helper/sp-marshal.h inkscape_version.h
extension/internal/latex-pstricks.$(OBJEXT): inkscape_version.h
extension/internal/ps.$(OBJEXT): inkscape_version.h
inkscape.$(OBJEXT): helper/sp-marshal.h inkscape_version.h
knot.$(OBJEXT): helper/sp-marshal.h
main.$(OBJEXT): inkscape_version.h
selection.$(OBJEXT): helper/sp-marshal.h
sp-object.$(OBJEXT): helper/sp-marshal.h
sp-root.$(OBJEXT): inkscape_version.h
view.$(OBJEXT): helper/sp-marshal.h
help.$(OBJEXT): inkscape_version.h
# ################################################
#
# B I N A R I E S
#
# ################################################
inkscape_SOURCES = main.cpp $(win32_sources)
inkscape_LDADD = $(all_libs)
inkscape_LDFLAGS = --export-dynamic $(kdeldflags)
inkview_SOURCES = inkview.cpp $(win32_sources)
inkview_LDADD = $(all_libs)
style_test_SOURCES = style-test.cpp
style_test_LDADD = $(all_libs)
inkscape_version.h: ../configure.ac
echo '#define INKSCAPE_VERSION "$(VERSION)"' > inkscape_version.h
test_all_includes = \
attributes-test.h \
color-profile-test.h \
dir-util-test.h \
extract-uri-test.h \
mod360-test.h \
round-test.h \
sp-gradient-test.h \
sp-style-elem-test.h \
style-test.h \
verbs-test.h