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 /app/xcf/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 'app/xcf/Makefile.am')
-rw-r--r-- | app/xcf/Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app/xcf/Makefile.am b/app/xcf/Makefile.am new file mode 100644 index 0000000..a95a87c --- /dev/null +++ b/app/xcf/Makefile.am @@ -0,0 +1,31 @@ +## Process this file with automake to produce Makefile.in + +AM_CPPFLAGS = \ + -DG_LOG_DOMAIN=\"Gimp-XCF\" \ + -I$(top_builddir) \ + -I$(top_srcdir) \ + -I$(top_builddir)/app \ + -I$(top_srcdir)/app \ + $(CAIRO_CFLAGS) \ + $(GEGL_CFLAGS) \ + $(GDK_PIXBUF_CFLAGS) \ + -I$(includedir) + +noinst_LIBRARIES = libappxcf.a + +libappxcf_a_SOURCES = \ + xcf.c \ + xcf.h \ + xcf-load.c \ + xcf-load.h \ + xcf-read.c \ + xcf-read.h \ + xcf-private.h \ + xcf-save.c \ + xcf-save.h \ + xcf-seek.c \ + xcf-seek.h \ + xcf-utils.c \ + xcf-utils.h \ + xcf-write.c \ + xcf-write.h |