2004-07-17 Sven Neumann <sven@gimp.org> * app/actions/Makefile.am * app/actions/file-dialog-actions.[ch] * app/actions/file-open-actions.[ch] * app/actions/file-save-actions.[ch]: these aren't needed any longer. * app/actions/actions.c: changed accordingly. * app/menus/Makefile.am * app/menus/file-dialog-menu.[ch] * app/menus/file-open-menu.[ch] * app/menus/file-save-menu.[ch]: these aren't needed any longer. * app/menus/menus.c: changed accordingly. * menus/Makefile.am * menus/file-open-menu.xml * menus/file-save-menu.xml: these are also not needed any longer.
35 lines
611 B
Makefile
35 lines
611 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libappmenus.a
|
|
|
|
libappmenus_a_SOURCES = \
|
|
menus-types.h \
|
|
menus.c \
|
|
menus.h \
|
|
file-menu.c \
|
|
file-menu.h \
|
|
image-menu.c \
|
|
image-menu.h \
|
|
plug-in-menus.c \
|
|
plug-in-menus.h \
|
|
tool-options-menu.c \
|
|
tool-options-menu.h \
|
|
toolbox-menu.c \
|
|
toolbox-menu.h
|
|
|
|
|
|
EXTRA_DIST = \
|
|
makefile.msc
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_LOG_DOMAIN=\"Gimp-Menus\" \
|
|
@GIMP_THREAD_FLAGS@ \
|
|
@GIMP_MP_FLAGS@
|
|
|
|
INCLUDES = \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/app \
|
|
-I$(top_srcdir)/app \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|