mirror of https://github.com/GNOME/gimp.git
32 lines
576 B
Makefile
32 lines
576 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Plug-In\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/app \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
noinst_LIBRARIES = libappplug-in.a
|
|
|
|
libappplug_in_a_SOURCES = \
|
|
plug-in-types.h \
|
|
plug-in.c \
|
|
plug-in.h \
|
|
plug-ins.c \
|
|
plug-ins.h \
|
|
plug-in-def.c \
|
|
plug-in-def.h \
|
|
plug-in-params.c \
|
|
plug-in-params.h \
|
|
plug-in-proc.c \
|
|
plug-in-proc.h \
|
|
plug-in-progress.c \
|
|
plug-in-progress.h \
|
|
plug-in-rc.c \
|
|
plug-in-rc.h
|