mirror of https://github.com/GNOME/gimp.git
33 lines
528 B
Makefile
33 lines
528 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
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-write.c \
|
|
xcf-write.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-XCF\"
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
$(GLIB_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = makefile.msc
|