diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:30:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:30:19 +0000 |
commit | 5c1676dfe6d2f3c837a5e074117b45613fd29a72 (patch) | |
tree | cbffb45144febf451e54061db2b21395faf94bfe /plug-ins/screenshot/Makefile.am | |
parent | Initial commit. (diff) | |
download | gimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.tar.xz gimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.zip |
Adding upstream version 2.10.34.upstream/2.10.34upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | plug-ins/screenshot/Makefile.am | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/plug-ins/screenshot/Makefile.am b/plug-ins/screenshot/Makefile.am new file mode 100644 index 0000000..3db7e5b --- /dev/null +++ b/plug-ins/screenshot/Makefile.am @@ -0,0 +1,73 @@ +## Process this file with automake to produce Makefile.in + +libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la +libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la + +if OS_WIN32 +mwindows = -mwindows +screenshot_RC = screenshot-win32-res.o +endif + +AM_LDFLAGS = $(mwindows) + +AM_CPPFLAGS = \ + -I$(top_srcdir) \ + $(GTK_CFLAGS) \ + $(GEGL_CFLAGS) \ + $(XFIXES_CFLAGS) \ + -I$(includedir) + +LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimpconfig) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpmath) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(GEGL_LIBS) \ + $(SCREENSHOT_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) \ + $(screenshot_RC) + +libexecdir = $(gimpplugindir)/plug-ins/screenshot + +libexec_PROGRAMS = screenshot + +EXTRA_PROGRAMS = screenshot + +screenshot_SOURCES = \ + screenshot.c \ + screenshot.h \ + screenshot-freedesktop.c \ + screenshot-freedesktop.h \ + screenshot-icon.h \ + screenshot-kwin.c \ + screenshot-kwin.h \ + screenshot-osx.c \ + screenshot-osx.h \ + screenshot-x11.c \ + screenshot-x11.h \ + screenshot-win32.rc \ + screenshot-win32.c \ + screenshot-win32.h \ + screenshot-win32-dwm-api.h \ + screenshot-win32-magnification-api.h \ + screenshot-win32-resource.h + +EXTRA_DIST = \ + screenshot-win32-select.cur \ + screenshot-win32-small.ico \ + screenshot-win32.ico + +if OS_WIN32 +screenshot-win32-res.o: screenshot-win32.rc screenshot-win32-select.cur screenshot-win32-small.ico screenshot-win32.ico + $(WINDRES) $(srcdir)/screenshot-win32.rc screenshot-win32-res.o +endif |