mirror of https://github.com/GNOME/gimp.git
245 lines
5.6 KiB
Makefile
245 lines
5.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
|
|
if PLATFORM_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
if PLATFORM_WIN32
|
|
else
|
|
libm = -lm
|
|
endif
|
|
|
|
if OS_WIN32
|
|
gimpwidgets_def = gimpwidgets.def
|
|
libgimpwidgets_export_symbols = -export-symbols gimpwidgets.def
|
|
|
|
install-libtool-import-lib:
|
|
$(INSTALL) .libs/libgimpwidgets-$(GIMP_API_VERSION).dll.a $(DESTDIR)$(libdir)
|
|
$(INSTALL) gimpwidgets.def $(DESTDIR)$(libdir)
|
|
|
|
uninstall-libtool-import-lib:
|
|
-rm $(DESTDIR)$(libdir)/libgimpwidgets-$(GIMP_API_VERSION).dll.a
|
|
-rm $(DESTDIR)$(libdir)/gimpwidgets.def
|
|
else
|
|
install-libtool-import-lib:
|
|
uninstall-libtool-import-lib:
|
|
endif
|
|
|
|
if MS_LIB_AVAILABLE
|
|
noinst_DATA = gimpwidgets-$(GIMP_API_VERSION).lib
|
|
|
|
install-ms-lib:
|
|
$(INSTALL) gimpwidgets-$(GIMP_API_VERSION).lib $(DESTDIR)$(libdir)
|
|
|
|
uninstall-ms-lib:
|
|
-rm $(DESTDIR)$(libdir)/gimpwidgets-$(GIMP_API_VERSION).lib
|
|
|
|
gimpwidgets-@GIMP_API_VERSION@.lib: gimpwidgets.def
|
|
lib -name:libgimpwidgets-$(GIMP_API_VERSION)-@LT_CURRENT_MINUS_AGE@.dll -def:gimpwidgets.def -out:$@
|
|
|
|
else
|
|
install-ms-lib:
|
|
uninstall-ms-lib:
|
|
endif
|
|
|
|
libgimpwidgetsincludedir = $(includedir)/gimp-$(GIMP_API_VERSION)/libgimpwidgets
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"LibGimpWidgets\" \
|
|
@GIMP_THREAD_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
lib_LTLIBRARIES = libgimpwidgets-2.0.la
|
|
|
|
libgimpwidgets_2_0_la_sources = \
|
|
gimpwidgets.c \
|
|
gimpwidgets.h \
|
|
gimpwidgetstypes.h \
|
|
gimpbutton.c \
|
|
gimpbutton.h \
|
|
gimpcellrenderercolor.c \
|
|
gimpcellrenderercolor.h \
|
|
gimpcellrenderertoggle.c\
|
|
gimpcellrenderertoggle.h\
|
|
gimpchainbutton.c \
|
|
gimpchainbutton.h \
|
|
gimpcolorarea.c \
|
|
gimpcolorarea.h \
|
|
gimpcolorbutton.c \
|
|
gimpcolorbutton.h \
|
|
gimpcolordisplay.c \
|
|
gimpcolordisplay.h \
|
|
gimpcolordisplaystack.c \
|
|
gimpcolordisplaystack.h \
|
|
gimpcolorhexentry.c \
|
|
gimpcolorhexentry.h \
|
|
gimpcolornotebook.c \
|
|
gimpcolornotebook.h \
|
|
gimpcolorscale.c \
|
|
gimpcolorscale.h \
|
|
gimpcolorscales.c \
|
|
gimpcolorscales.h \
|
|
gimpcolorselector.c \
|
|
gimpcolorselector.h \
|
|
gimpcolorselect.c \
|
|
gimpcolorselect.h \
|
|
gimpcolorselection.c \
|
|
gimpcolorselection.h \
|
|
gimpcontroller.c \
|
|
gimpcontroller.h \
|
|
gimpdialog.c \
|
|
gimpdialog.h \
|
|
gimpfileentry.c \
|
|
gimpfileentry.h \
|
|
gimpframe.c \
|
|
gimpframe.h \
|
|
gimphelpui.c \
|
|
gimphelpui.h \
|
|
gimpintcombobox.c \
|
|
gimpintcombobox.h \
|
|
gimpintstore.c \
|
|
gimpintstore.h \
|
|
gimpmemsizeentry.c \
|
|
gimpmemsizeentry.h \
|
|
gimpoldwidgets.c \
|
|
gimpoldwidgets.h \
|
|
gimpoffsetarea.c \
|
|
gimpoffsetarea.h \
|
|
gimppatheditor.c \
|
|
gimppatheditor.h \
|
|
gimppickbutton.c \
|
|
gimppickbutton.h \
|
|
gimppixmap.c \
|
|
gimppixmap.h \
|
|
gimppreview.c \
|
|
gimppreview.h \
|
|
gimppreviewarea.c \
|
|
gimppreviewarea.h \
|
|
gimpquerybox.c \
|
|
gimpquerybox.h \
|
|
gimpscrolledpreview.c \
|
|
gimpscrolledpreview.h \
|
|
gimpsizeentry.c \
|
|
gimpsizeentry.h \
|
|
gimpstock.c \
|
|
gimpstock.h \
|
|
gimpunitmenu.c \
|
|
gimpunitmenu.h \
|
|
gimpwidgets-private.c \
|
|
gimpwidgets-private.h
|
|
|
|
libgimpwidgets_2_0_la_built_sources = \
|
|
gimpwidgetsmarshal.c \
|
|
gimpwidgetsmarshal.h
|
|
|
|
libgimpwidgets_2_0_la_extra_sources = gimpwidgetsmarshal.list
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc \
|
|
gimpwidgets.def \
|
|
$(libgimpwidgets_2_0_la_extra_sources)
|
|
|
|
libgimpwidgets_2_0_la_SOURCES = \
|
|
$(libgimpwidgets_2_0_la_built_sources) \
|
|
$(libgimpwidgets_2_0_la_sources)
|
|
|
|
libgimpwidgetsinclude_HEADERS = \
|
|
gimpwidgets.h \
|
|
gimpwidgetstypes.h \
|
|
gimpbutton.h \
|
|
gimpcellrenderercolor.h \
|
|
gimpcellrenderertoggle.h\
|
|
gimpchainbutton.h \
|
|
gimpcolorarea.h \
|
|
gimpcolorbutton.h \
|
|
gimpcolordisplay.h \
|
|
gimpcolordisplaystack.h \
|
|
gimpcolorhexentry.h \
|
|
gimpcolornotebook.h \
|
|
gimpcolorscale.h \
|
|
gimpcolorscales.h \
|
|
gimpcolorselector.h \
|
|
gimpcolorselect.h \
|
|
gimpcolorselection.h \
|
|
gimpcontroller.h \
|
|
gimpdialog.h \
|
|
gimpfileentry.h \
|
|
gimpframe.h \
|
|
gimphelpui.h \
|
|
gimpintcombobox.h \
|
|
gimpintstore.h \
|
|
gimpmemsizeentry.h \
|
|
gimpoldwidgets.h \
|
|
gimpoffsetarea.h \
|
|
gimppatheditor.h \
|
|
gimppickbutton.h \
|
|
gimppixmap.h \
|
|
gimppreview.h \
|
|
gimppreviewarea.h \
|
|
gimpquerybox.h \
|
|
gimpscrolledpreview.h \
|
|
gimpsizeentry.h \
|
|
gimpstock.h \
|
|
gimpunitmenu.h
|
|
|
|
libgimpwidgets_2_0_la_LDFLAGS = \
|
|
-version-info $(LT_VERSION_INFO) \
|
|
$(no_undefined) \
|
|
$(libgimpwidgets_export_symbols)
|
|
|
|
libgimpwidgets_2_0_la_LIBADD = \
|
|
$(libgimpbase) \
|
|
$(libgimpcolor) \
|
|
$(GTK_LIBS) \
|
|
$(libm)
|
|
|
|
libgimpwidgets_2_0_la_DEPENDENCIES = $(gimpwidgets_def)
|
|
|
|
#
|
|
# rules to generate built sources
|
|
#
|
|
# setup autogeneration dependancies
|
|
gen_sources = xgen-gwmh xgen-gwmc
|
|
CLEANFILES = $(gen_sources)
|
|
|
|
$(srcdir)/gimpwidgetsmarshal.h: $(srcdir)/gimpwidgetsmarshal.list
|
|
$(GLIB_GENMARSHAL) --prefix=_gimp_widgets_marshal $(srcdir)/gimpwidgetsmarshal.list --header >> xgen-gwmh \
|
|
&& (cmp -s xgen-gwmh $(@F) || cp xgen-gwmh $(@F)) \
|
|
&& rm -f xgen-gwmh xgen-gwmh~
|
|
|
|
$(srcdir)/gimpwidgetsmarshal.c: $(srcdir)/gimpwidgetsmarshal.h
|
|
echo "#include \"gimpwidgetsmarshal.h\"" >> xgen-gwmc \
|
|
&& $(GLIB_GENMARSHAL) --prefix=_gimp_widgets_marshal $(srcdir)/gimpwidgetsmarshal.list --body >> xgen-gwmc \
|
|
&& cp xgen-gwmc $(@F) \
|
|
&& rm -f xgen-gwmc xgen-gwmc~
|
|
|
|
|
|
#
|
|
# test programs, not to be built by default and never installed
|
|
#
|
|
|
|
EXTRA_PROGRAMS = test-preview-area
|
|
|
|
test_preview_area_SOURCES = test-preview-area.c
|
|
|
|
test_preview_area_DEPENDENCIES = \
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \
|
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
|
|
test_preview_area_LDADD = \
|
|
$(GTK_LIBS) \
|
|
$(test_preview_area_DEPENDENCIES)
|
|
|
|
|
|
|
|
install-data-local: install-ms-lib install-libtool-import-lib
|
|
|
|
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
|