Makefile_insert revision 273e421813f295d65aab512f508e8fb575d997d4
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt## Makefile.am fragment, included by src/Makefile.am.
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# ################################################
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# ################################################
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Huntif PLATFORM_WIN32
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Huntwin32_sources = winmain.cpp registrytool.cpp registrytool.h
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Huntwin32ldflags = -lcomdlg32
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Huntinkjar_dir = inkjar
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# ################################################
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# I N K S C A P E
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# ################################################
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# libinkpre.a: any object that's sharable between inkscape & inkview,
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# and isn't needed by object files in subdirectories (i.e. libinkpre.a
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# comes before subdirectory libraries on the link line).
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# Excludes winmain.cpp (a gui wrapper around main): I'm guessing that
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# it needs to be explicitly listed as a source of each graphical
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# binary: it isn't (to my knowledge) called by main (whether directly
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# or indirectly), so I don't think that putting it in a library will
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt# suffice to get it linked in. Windows devel please confirm. -- pjrm.
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Huntlibinkpre_a_SOURCES = \
b66b333f59cf51ef87f973084a5023acd9317fb2Evan Hunt console-output-undo-observer.h console-output-undo-observer.cpp \
prefix.h \
# Force libinkpost.a to be rebuilt if we add files to libinkpost_a_SOURCES.
# libinkpost.a: Any object file that needs to be near the end of the link line.
# gradient-chemistry.o is called by some things in display/.
gc.cpp \
memeq.h \
round.h \
streq.h \
strneq.h \
desktop.$(OBJEXT): helper/sp-marshal.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
inkscape_SOURCES = main.cpp $(win32_sources)
inkview_SOURCES = inkview.cpp $(win32_sources)
style_test_SOURCES = style-test.cpp
echo '#define INKSCAPE_VERSION "$(VERSION)"' > inkscape_version.h
$(srcdir)/attributes-test.h \
$(srcdir)/color-profile-test.h \
$(srcdir)/MultiPrinter.h \
$(srcdir)/TRPIFormatter.h \
$(srcdir)/PylogFormatter.h \
$(srcdir)/dir-util-test.h \
$(srcdir)/extract-uri-test.h \
$(srcdir)/mod360-test.h \
$(srcdir)/round-test.h \
$(srcdir)/sp-gradient-test.h \
$(srcdir)/sp-style-elem-test.h \
$(srcdir)/style-test.h \
$(srcdir)/test-helpers.h \
$(srcdir)/verbs-test.h