2004-09-28 Sven Neumann <sven@gimp.org> * app/config/gimpxmlparser.[ch]: added new convenience function gimp_xml_parser_parse_fd(). * app/file/Makefile.am * app/file/gimprecentitem.[ch] * app/file/gimprecentlist.[ch]: added an implementation of the recent-files spec as found on freedesktop.org. This code is taken from libegg and has been edited to fit the GIMP needs. * app/file/file-open.c * app/file/file-save.c: update the ~/.recently-used file. Fixes bug #131206.
28 lines
509 B
Makefile
28 lines
509 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappfile.a
|
|
|
|
libappfile_a_SOURCES = \
|
|
file-open.c \
|
|
file-open.h \
|
|
file-save.c \
|
|
file-save.h \
|
|
file-utils.c \
|
|
file-utils.h \
|
|
gimprecentitem.c \
|
|
gimprecentitem.h \
|
|
gimprecentlist.c \
|
|
gimprecentlist.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-File\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GDK_PIXBUF_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
EXTRA_DIST = makefile.msc
|