mirror of https://github.com/GNOME/gimp.git
added zh_TW.Big5 to ALL_LINGUAS. Added the STRIP_BEGIN and STRIP_END
2001-06-07 Michael Natterer <mitch@gimp.org> * configure.in: added zh_TW.Big5 to ALL_LINGUAS. Added the STRIP_BEGIN and STRIP_END macros from gtk+. * app/base/makefile.msc: unmodified copy of app/core/makefile.msc (just to make "make dist" work). * */Makefile.am: use @STRIP_BEGIN@ and @STRIP_END@ all over the place. The Makefiles are a bit uglier now but it makes compiling output much more readable.
This commit is contained in:
parent
c618e19410
commit
69491ddc34
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
||||||
|
2001-06-07 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* configure.in: added zh_TW.Big5 to ALL_LINGUAS. Added the
|
||||||
|
STRIP_BEGIN and STRIP_END macros from gtk+.
|
||||||
|
|
||||||
|
* app/base/makefile.msc: unmodified copy of app/core/makefile.msc
|
||||||
|
(just to make "make dist" work).
|
||||||
|
|
||||||
|
* */Makefile.am: use @STRIP_BEGIN@ and @STRIP_END@ all over the
|
||||||
|
place. The Makefiles are a bit uglier now but it makes compiling
|
||||||
|
output much more readable.
|
||||||
|
|
||||||
2001-06-06 Adam D. Moss <adam@gimp.org>
|
2001-06-06 Adam D. Moss <adam@gimp.org>
|
||||||
|
|
||||||
* tools/pdbgen/pdb/image.pdb: gimp_image_list(),
|
* tools/pdbgen/pdb/image.pdb: gimp_image_list(),
|
||||||
|
|
|
@ -21,7 +21,7 @@ endif
|
||||||
|
|
||||||
bin_PROGRAMS = gimp
|
bin_PROGRAMS = gimp
|
||||||
|
|
||||||
gimp_SOURCES = \
|
gimp_SOURCES = @STRIP_BEGIN@ \
|
||||||
##
|
##
|
||||||
## gui stuff that needs to go to libgimp/, gui/ or /dev/null
|
## gui stuff that needs to go to libgimp/, gui/ or /dev/null
|
||||||
##
|
##
|
||||||
|
@ -145,7 +145,8 @@ gimp_SOURCES = \
|
||||||
xcf.c \
|
xcf.c \
|
||||||
xcf.h \
|
xcf.h \
|
||||||
$(regex_sources) \
|
$(regex_sources) \
|
||||||
$(mmx_sources)
|
$(mmx_sources) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.mingw \
|
makefile.mingw \
|
||||||
|
@ -162,21 +163,23 @@ EXTRA_DIST = \
|
||||||
|
|
||||||
gimp_LDFLAGS = -export-dynamic -export-symbols $(srcdir)/gimp.sym
|
gimp_LDFLAGS = -export-dynamic -export-symbols $(srcdir)/gimp.sym
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLIBDIR=\""$(gimpplugindir)"\" \
|
-DLIBDIR=\""$(gimpplugindir)"\" \
|
||||||
-DLOCALEDIR=\""$(localedir)"\" \
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
-DREGEX_MALLOC \
|
-DREGEX_MALLOC \
|
||||||
-DG_LOG_DOMAIN=\"Gimp\" \
|
-DG_LOG_DOMAIN=\"Gimp\" \
|
||||||
@GIMP_THREAD_FLAGS@ \
|
@GIMP_THREAD_FLAGS@ \
|
||||||
@GIMP_MP_FLAGS@
|
@GIMP_MP_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/intl \
|
-I$(top_srcdir)/intl \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
gimp_LDADD = \
|
gimp_LDADD = @STRIP_BEGIN@ \
|
||||||
paint-funcs/libapppaint-funcs.a \
|
paint-funcs/libapppaint-funcs.a \
|
||||||
pdb/libapppdb.a \
|
pdb/libapppdb.a \
|
||||||
tools/libapptools.a \
|
tools/libapptools.a \
|
||||||
|
@ -191,7 +194,8 @@ gimp_LDADD = \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(GIMP_THREAD_LIBS) \
|
$(GIMP_THREAD_LIBS) \
|
||||||
$(GIMP_MP_LIBS) \
|
$(GIMP_MP_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
noinst_LIBRARIES = libappbase.a
|
noinst_LIBRARIES = libappbase.a
|
||||||
|
|
||||||
libappbase_a_SOURCES = \
|
libappbase_a_SOURCES = @STRIP_BEGIN@ \
|
||||||
base.c \
|
base.c \
|
||||||
base.h \
|
base.h \
|
||||||
base-types.h \
|
base-types.h \
|
||||||
|
@ -35,19 +35,24 @@ libappbase_a_SOURCES = \
|
||||||
tile-manager.h \
|
tile-manager.h \
|
||||||
tile-manager-private.h \
|
tile-manager-private.h \
|
||||||
tile-swap.c \
|
tile-swap.c \
|
||||||
tile-swap.h
|
tile-swap.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.msc
|
makefile.msc
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Base\"
|
-DG_LOG_DOMAIN=\"Gimp-Base\" \
|
||||||
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@GIMP_MP_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/app \
|
-I$(top_srcdir)/app \
|
||||||
$(GLIB_CFLAGS) \
|
$(GLIB_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,98 @@
|
||||||
|
# autogenerated from automake.am with automake.py
|
||||||
|
TOP = ..\..\..
|
||||||
|
PRJ_TOP = ..\..
|
||||||
|
PACKAGE = appcore
|
||||||
|
PKG_VER = 1.3
|
||||||
|
!INCLUDE $(TOP)\build\win32\make.msc
|
||||||
|
|
||||||
|
top_srcdir = $(PRJ_TOP)
|
||||||
|
top_builddir = $(PRJ_TOP)
|
||||||
|
includedir = $(PRJ_TOP)
|
||||||
|
LT_RELEASE = $(PKG_VER)
|
||||||
|
|
||||||
|
PKG_LINK = \
|
||||||
|
$(GLIB_LIBS) $(GTK_LIBS) \
|
||||||
|
..\base\appbase-$(PKG_VER).lib \
|
||||||
|
..\paint-funcs\apppaint-funcs-$(PKG_VER).lib \
|
||||||
|
..\..\libgimpbase\gimpbase-$(PKG_VER).lib \
|
||||||
|
..\..\libgimpcolor\gimpcolor-$(PKG_VER).lib
|
||||||
|
|
||||||
|
OBJECTS = \
|
||||||
|
gimpbrush.obj \
|
||||||
|
gimpbrushgenerated.obj \
|
||||||
|
gimpbrushpipe.obj \
|
||||||
|
gimpchannel.obj \
|
||||||
|
gimpcontainer.obj \
|
||||||
|
gimpcontext.obj \
|
||||||
|
gimpdata.obj \
|
||||||
|
gimpdatafactory.obj \
|
||||||
|
gimpdatalist.obj \
|
||||||
|
gimpdrawable.obj \
|
||||||
|
gimpdrawable-desaturate.obj \
|
||||||
|
gimpdrawable-equalize.obj \
|
||||||
|
gimpdrawable-histogram.obj \
|
||||||
|
gimpdrawable-invert.obj \
|
||||||
|
gimpdrawable-offset.obj \
|
||||||
|
gimpdrawable-preview.obj \
|
||||||
|
gimpgradient.obj \
|
||||||
|
gimpimage.obj \
|
||||||
|
gimpimage-convert.obj \
|
||||||
|
gimpimage-colorhash.obj \
|
||||||
|
gimpimage-duplicate.obj \
|
||||||
|
gimpimage-mask.obj \
|
||||||
|
gimpimage-undo.obj \
|
||||||
|
gimplayer.obj \
|
||||||
|
gimplayermask.obj \
|
||||||
|
gimplist.obj \
|
||||||
|
gimpmarshal.obj \
|
||||||
|
gimpobject.obj \
|
||||||
|
gimppattern.obj \
|
||||||
|
gimppalette.obj \
|
||||||
|
gimppalette-import.obj \
|
||||||
|
gimppreviewcache.obj \
|
||||||
|
gimptoolinfo.obj \
|
||||||
|
gimpundo.obj \
|
||||||
|
gimpundostack.obj \
|
||||||
|
gimpviewable.obj \
|
||||||
|
|
||||||
|
OTHER_FILES = \
|
||||||
|
\
|
||||||
|
..\floating_sel.obj \
|
||||||
|
..\gimpparasite.obj \
|
||||||
|
..\parasitelist.obj \
|
||||||
|
..\drawable.obj \
|
||||||
|
..\datafiles.obj \
|
||||||
|
..\undo.obj \
|
||||||
|
..\path.obj
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
INCLUDES = \
|
||||||
|
-I$(top_srcdir) \
|
||||||
|
-I$(top_srcdir)/app \
|
||||||
|
$(GTK_CFLAGS) \
|
||||||
|
-I$(includedir)
|
||||||
|
|
||||||
|
all : \
|
||||||
|
$(PRJ_TOP)\config.h \
|
||||||
|
$(PACKAGE).lib \
|
||||||
|
$(PACKAGE)-$(PKG_VER).dll
|
||||||
|
|
||||||
|
|
||||||
|
$(PRJ_TOP)\config.h: $(PRJ_TOP)\config.h.win32
|
||||||
|
copy $(PRJ_TOP)\config.h.win32 $(PRJ_TOP)\config.h
|
||||||
|
|
||||||
|
RESOURCE = $(PACKAGE).res
|
||||||
|
|
||||||
|
$(PACKAGE).lib : $(OBJECTS)
|
||||||
|
lib /out:$(PACKAGE).lib $(OBJECTS)
|
||||||
|
|
||||||
|
$(PACKAGE)-$(PKG_VER).dll : $(OBJECTS) $(PACKAGE).def
|
||||||
|
$(CC) $(CFLAGS) -LD -Fe$(PACKAGE)-$(PKG_VER).dll $(OBJECTS) $(PKG_LINK) user32.lib advapi32.lib wsock32.lib $(LDFLAGS) /def:$(PACKAGE).def
|
||||||
|
|
||||||
|
$(PACKAGE).exe : $(OBJECTS) $(PACKAGE).def $(PACKAGE).res
|
||||||
|
$(CC) $(CFLAGS) -Fe$(PACKAGE).exe $(PACKAGE).res $(OBJECTS) $(PKG_LINK) \
|
||||||
|
user32.lib advapi32.lib shell32.lib wsock32.lib winspool.lib $(LDFLAGS) /def:$(PACKAGE).def
|
||||||
|
|
||||||
|
.c.obj :
|
||||||
|
$(CC) $(CFLAGS) -GD -c $(PKG_CFLAGS) $<
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
noinst_LIBRARIES = libappcore.a
|
noinst_LIBRARIES = libappcore.a
|
||||||
|
|
||||||
libappcore_a_SOURCES = \
|
libappcore_a_SOURCES = @STRIP_BEGIN@ \
|
||||||
core-types.h \
|
core-types.h \
|
||||||
gimpbrush.c \
|
gimpbrush.c \
|
||||||
gimpbrush.h \
|
gimpbrush.h \
|
||||||
|
@ -80,19 +80,24 @@ libappcore_a_SOURCES = \
|
||||||
gimpundostack.c \
|
gimpundostack.c \
|
||||||
gimpundostack.h \
|
gimpundostack.h \
|
||||||
gimpviewable.c \
|
gimpviewable.c \
|
||||||
gimpviewable.h
|
gimpviewable.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRS_DIST = \
|
EXTRS_DIST = \
|
||||||
makefile.msc
|
makefile.msc
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Core\"
|
-DG_LOG_DOMAIN=\"Gimp-Core\" \
|
||||||
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@GIMP_MP_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/app \
|
-I$(top_srcdir)/app \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
noinst_LIBRARIES = libappgui.a
|
noinst_LIBRARIES = libappgui.a
|
||||||
|
|
||||||
libappgui_a_SOURCES = \
|
libappgui_a_SOURCES = @STRIP_BEGIN@ \
|
||||||
about-dialog.c \
|
about-dialog.c \
|
||||||
about-dialog.h \
|
about-dialog.h \
|
||||||
authors.h \
|
authors.h \
|
||||||
|
@ -85,19 +85,25 @@ libappgui_a_SOURCES = \
|
||||||
tool-options-dialog.c \
|
tool-options-dialog.c \
|
||||||
tool-options-dialog.h \
|
tool-options-dialog.h \
|
||||||
toolbox.c \
|
toolbox.c \
|
||||||
toolbox.h
|
toolbox.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = @STRIP_BEGIN@ \
|
||||||
makefile.msc
|
makefile.msc \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DG_LOG_DOMAIN=\"Gimp-GUI\"
|
-DG_LOG_DOMAIN=\"Gimp-GUI\" \
|
||||||
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@GIMP_MP_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/app \
|
-I$(top_srcdir)/app \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -9,23 +9,28 @@ else
|
||||||
mmx_sources =
|
mmx_sources =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
libapppaint_funcs_a_SOURCES = \
|
libapppaint_funcs_a_SOURCES = @STRIP_BEGIN@ \
|
||||||
paint-funcs.c \
|
paint-funcs.c \
|
||||||
paint-funcs.h \
|
paint-funcs.h \
|
||||||
$(mmx_sources)
|
$(mmx_sources) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.msc \
|
makefile.msc \
|
||||||
paint-funcs-simd.S
|
paint-funcs-simd.S
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\"
|
-DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\" \
|
||||||
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@GIMP_MP_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/app \
|
-I$(top_srcdir)/app \
|
||||||
$(GLIB_CFLAGS) \
|
$(GLIB_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
noinst_LIBRARIES = libapppdb.a
|
noinst_LIBRARIES = libapppdb.a
|
||||||
|
|
||||||
libapppdb_a_SOURCES = \
|
libapppdb_a_SOURCES = @STRIP_BEGIN@ \
|
||||||
pdb_glue.h \
|
pdb_glue.h \
|
||||||
internal_procs.c \
|
internal_procs.c \
|
||||||
internal_procs.h \
|
internal_procs.h \
|
||||||
|
@ -38,17 +38,21 @@ libapppdb_a_SOURCES = \
|
||||||
text_tool_cmds.c \
|
text_tool_cmds.c \
|
||||||
tools_cmds.c \
|
tools_cmds.c \
|
||||||
undo_cmds.c \
|
undo_cmds.c \
|
||||||
unit_cmds.c
|
unit_cmds.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DG_LOG_DOMAIN=\"Gimp-PDB\" \
|
||||||
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@GIMP_MP_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-DG_LOG_DOMAIN=\"Gimp-PDB\"
|
|
||||||
|
|
||||||
INCLUDES = \
|
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/app \
|
-I$(top_srcdir)/app \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
noinst_LIBRARIES = libapptools.a
|
noinst_LIBRARIES = libapptools.a
|
||||||
|
|
||||||
libapptools_a_SOURCES = \
|
libapptools_a_SOURCES = @STRIP_BEGIN@ \
|
||||||
tools.c \
|
tools.c \
|
||||||
tools.h \
|
tools.h \
|
||||||
tools-types.h \
|
tools-types.h \
|
||||||
|
@ -114,16 +114,21 @@ libapptools_a_SOURCES = \
|
||||||
tool_manager.h \
|
tool_manager.h \
|
||||||
path_tool.h \
|
path_tool.h \
|
||||||
path_tool.c \
|
path_tool.c \
|
||||||
path_toolP.h
|
path_toolP.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Tools\"
|
-DG_LOG_DOMAIN=\"Gimp-Tools\" \
|
||||||
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@GIMP_MP_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/app \
|
-I$(top_srcdir)/app \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
noinst_LIBRARIES = libappwidgets.a
|
noinst_LIBRARIES = libappwidgets.a
|
||||||
|
|
||||||
libappwidgets_a_SOURCES = \
|
libappwidgets_a_SOURCES = @STRIP_BEGIN@ \
|
||||||
widgets-types.h \
|
widgets-types.h \
|
||||||
gimpbrushpreview.c \
|
gimpbrushpreview.c \
|
||||||
gimpbrushpreview.h \
|
gimpbrushpreview.h \
|
||||||
|
@ -81,16 +81,21 @@ libappwidgets_a_SOURCES = \
|
||||||
gtkvwrapbox.c \
|
gtkvwrapbox.c \
|
||||||
gtkvwrapbox.h \
|
gtkvwrapbox.h \
|
||||||
gimpconstrainedhwrapbox.c \
|
gimpconstrainedhwrapbox.c \
|
||||||
gimpconstrainedhwrapbox.h
|
gimpconstrainedhwrapbox.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Widgets\"
|
-DG_LOG_DOMAIN=\"Gimp-Widgets\" \
|
||||||
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@GIMP_MP_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/app \
|
-I$(top_srcdir)/app \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
16
configure.in
16
configure.in
|
@ -71,9 +71,23 @@ if test -n "$DEBUGFLAG"; then
|
||||||
CFLAGS="$DEBUGFLAG $CFLAGS"
|
CFLAGS="$DEBUGFLAG $CFLAGS"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AC_MSG_CHECKING(whether make is GNU Make)
|
||||||
|
STRIP_BEGIN=
|
||||||
|
STRIP_END=
|
||||||
|
if $ac_make --version 2>/dev/null | grep '^GNU Make ' >/dev/null ; then
|
||||||
|
STRIP_BEGIN='$(strip $(STRIP_DUMMY)'
|
||||||
|
STRIP_END=')'
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
STRIP_DUMMY=
|
||||||
|
AC_SUBST(STRIP_DUMMY)
|
||||||
|
AC_SUBST(STRIP_BEGIN)
|
||||||
|
AC_SUBST(STRIP_END)
|
||||||
|
|
||||||
dnl i18n stuff
|
dnl i18n stuff
|
||||||
ALL_LINGUAS="ca cs da de en_GB es fi fr ga gl hu hr it ja ko nl no pl pt_BR ro ru sk sv tr uk"
|
ALL_LINGUAS="ca cs da de en_GB es fi fr ga gl hu hr it ja ko nl no pl pt_BR ro ru sk sv tr uk zh_TW.Big5"
|
||||||
|
|
||||||
AM_GNU_GETTEXT
|
AM_GNU_GETTEXT
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,21 @@
|
||||||
|
|
||||||
gimpincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimp
|
gimpincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimp
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DGIMPDIR=\""$(gimpdir)"\" \
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
||||||
-DDATADIR=\""$(gimpdatadir)"\" \
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
||||||
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
||||||
-DG_LOG_DOMAIN=\"LibGimp\" \
|
-DG_LOG_DOMAIN=\"LibGimp\" \
|
||||||
@GIMP_THREAD_FLAGS@
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/intl \
|
-I$(top_srcdir)/intl \
|
||||||
-I../intl \
|
-I../intl \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.mingw \
|
makefile.mingw \
|
||||||
|
@ -92,7 +94,7 @@ PDB_WRAPPERS_H = \
|
||||||
gimpundo_pdb.h \
|
gimpundo_pdb.h \
|
||||||
gimpunit_pdb.h
|
gimpunit_pdb.h
|
||||||
|
|
||||||
libgimp_1_3_la_SOURCES = \
|
libgimp_1_3_la_SOURCES = @STRIP_BEGIN@ \
|
||||||
gimp.c \
|
gimp.c \
|
||||||
gimp.h \
|
gimp.h \
|
||||||
gimptypes.h \
|
gimptypes.h \
|
||||||
|
@ -121,9 +123,10 @@ libgimp_1_3_la_SOURCES = \
|
||||||
\
|
\
|
||||||
gimpintl.h \
|
gimpintl.h \
|
||||||
stdplugins-intl.h \
|
stdplugins-intl.h \
|
||||||
libgimp-intl.h
|
libgimp-intl.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpui_1_3_la_SOURCES = \
|
libgimpui_1_3_la_SOURCES = @STRIP_BEGIN@ \
|
||||||
gimpui.c \
|
gimpui.c \
|
||||||
gimpui.h \
|
gimpui.h \
|
||||||
gimpuitypes.h \
|
gimpuitypes.h \
|
||||||
|
@ -135,9 +138,10 @@ libgimpui_1_3_la_SOURCES = \
|
||||||
gimppatternmenu.c \
|
gimppatternmenu.c \
|
||||||
\
|
\
|
||||||
gimpexport.c \
|
gimpexport.c \
|
||||||
gimpexport.h
|
gimpexport.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
gimpinclude_HEADERS = \
|
gimpinclude_HEADERS = @STRIP_BEGIN@ \
|
||||||
gimpcolordisplay.h \
|
gimpcolordisplay.h \
|
||||||
gimpcolorselector.h \
|
gimpcolorselector.h \
|
||||||
\
|
\
|
||||||
|
@ -163,15 +167,20 @@ gimpinclude_HEADERS = \
|
||||||
gimpui.h \
|
gimpui.h \
|
||||||
gimpuitypes.h \
|
gimpuitypes.h \
|
||||||
\
|
\
|
||||||
gimpmenu.h
|
gimpmenu.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimp_1_3_la_LDFLAGS = \
|
EXTRA_HEADERS +=
|
||||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
||||||
|
libgimp_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimp_1_3_la_LIBADD = $(GLIB_LIBS)
|
libgimp_1_3_la_LIBADD = $(GLIB_LIBS)
|
||||||
|
|
||||||
libgimpui_1_3_la_LDFLAGS = \
|
libgimpui_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpui_1_3_la_LIBADD = $(GTK_LIBS)
|
libgimpui_1_3_la_LIBADD = $(GTK_LIBS)
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,21 @@
|
||||||
|
|
||||||
libgimpbaseincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpbase
|
libgimpbaseincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpbase
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DGIMPDIR=\""$(gimpdir)"\" \
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
||||||
-DDATADIR=\""$(gimpdatadir)"\" \
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
||||||
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
||||||
-DG_LOG_DOMAIN=\"LibGimpBase\" \
|
-DG_LOG_DOMAIN=\"LibGimpBase\" \
|
||||||
@GIMP_THREAD_FLAGS@
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/intl \
|
-I$(top_srcdir)/intl \
|
||||||
-I../intl \
|
-I../intl \
|
||||||
$(GLIB_CFLAGS) \
|
$(GLIB_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
gimpversion.h.in \
|
gimpversion.h.in \
|
||||||
|
@ -30,7 +32,7 @@ lib_LTLIBRARIES = libgimpbase-1.3.la
|
||||||
../libgimpbase/gimpversion.h: gimpversion.h
|
../libgimpbase/gimpversion.h: gimpversion.h
|
||||||
@:
|
@:
|
||||||
|
|
||||||
libgimpbase_1_3_la_SOURCES = \
|
libgimpbase_1_3_la_SOURCES = @STRIP_BEGIN@ \
|
||||||
gimpbase.h \
|
gimpbase.h \
|
||||||
gimpbasetypes.h \
|
gimpbasetypes.h \
|
||||||
gimpenv.c \
|
gimpenv.c \
|
||||||
|
@ -49,9 +51,10 @@ libgimpbase_1_3_la_SOURCES = \
|
||||||
gimpunit.h \
|
gimpunit.h \
|
||||||
gimpversion.h \
|
gimpversion.h \
|
||||||
gimpwire.c \
|
gimpwire.c \
|
||||||
gimpwire.h
|
gimpwire.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpbaseinclude_HEADERS = \
|
libgimpbaseinclude_HEADERS = @STRIP_BEGIN@ \
|
||||||
gimpbase.h \
|
gimpbase.h \
|
||||||
gimpbasetypes.h \
|
gimpbasetypes.h \
|
||||||
gimpenv.h \
|
gimpenv.h \
|
||||||
|
@ -61,10 +64,14 @@ libgimpbaseinclude_HEADERS = \
|
||||||
gimpparasite.h \
|
gimpparasite.h \
|
||||||
gimpparasiteio.h \
|
gimpparasiteio.h \
|
||||||
gimpunit.h \
|
gimpunit.h \
|
||||||
gimpversion.h
|
gimpversion.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpbase_1_3_la_LDFLAGS = \
|
EXTRA_HEADERS +=
|
||||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
||||||
|
libgimpbase_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpbase_1_3_la_LIBADD = $(GLIB_LIBS)
|
libgimpbase_1_3_la_LIBADD = $(GLIB_LIBS)
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,21 @@
|
||||||
|
|
||||||
libgimpcolorincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpcolor
|
libgimpcolorincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpcolor
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DGIMPDIR=\""$(gimpdir)"\" \
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
||||||
-DDATADIR=\""$(gimpdatadir)"\" \
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
||||||
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
||||||
-DG_LOG_DOMAIN=\"LibGimpColor\" \
|
-DG_LOG_DOMAIN=\"LibGimpColor\" \
|
||||||
@GIMP_THREAD_FLAGS@
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/intl \
|
-I$(top_srcdir)/intl \
|
||||||
-I../intl \
|
-I../intl \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.mingw \
|
makefile.mingw \
|
||||||
|
@ -24,7 +26,7 @@ EXTRA_DIST = \
|
||||||
|
|
||||||
lib_LTLIBRARIES = libgimpcolor-1.3.la
|
lib_LTLIBRARIES = libgimpcolor-1.3.la
|
||||||
|
|
||||||
libgimpcolor_1_3_la_SOURCES = \
|
libgimpcolor_1_3_la_SOURCES = @STRIP_BEGIN@ \
|
||||||
gimpcolor.h \
|
gimpcolor.h \
|
||||||
gimpcolortypes.h \
|
gimpcolortypes.h \
|
||||||
gimpadaptivesupersample.c \
|
gimpadaptivesupersample.c \
|
||||||
|
@ -36,19 +38,24 @@ libgimpcolor_1_3_la_SOURCES = \
|
||||||
gimphsv.c \
|
gimphsv.c \
|
||||||
gimphsv.h \
|
gimphsv.h \
|
||||||
gimprgb.c \
|
gimprgb.c \
|
||||||
gimprgb.h
|
gimprgb.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpcolorinclude_HEADERS = \
|
libgimpcolorinclude_HEADERS = @STRIP_BEGIN@ \
|
||||||
gimpcolor.h \
|
gimpcolor.h \
|
||||||
gimpcolortypes.h \
|
gimpcolortypes.h \
|
||||||
gimpadaptivesupersample.h \
|
gimpadaptivesupersample.h \
|
||||||
gimpbilinear.h \
|
gimpbilinear.h \
|
||||||
gimpcolorspace.h \
|
gimpcolorspace.h \
|
||||||
gimphsv.h \
|
gimphsv.h \
|
||||||
gimprgb.h
|
gimprgb.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpcolor_1_3_la_LDFLAGS = \
|
EXTRA_HEADERS +=
|
||||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
||||||
|
libgimpcolor_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpcolor_1_3_la_LIBADD = $(GLIB_LIBS) -lm
|
libgimpcolor_1_3_la_LIBADD = $(GLIB_LIBS) -lm
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,21 @@
|
||||||
|
|
||||||
libgimpmathincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpmath
|
libgimpmathincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpmath
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DGIMPDIR=\""$(gimpdir)"\" \
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
||||||
-DDATADIR=\""$(gimpdatadir)"\" \
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
||||||
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
||||||
-DG_LOG_DOMAIN=\"LibGimpMath\" \
|
-DG_LOG_DOMAIN=\"LibGimpMath\" \
|
||||||
@GIMP_THREAD_FLAGS@
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/intl \
|
-I$(top_srcdir)/intl \
|
||||||
-I../intl \
|
-I../intl \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.mingw \
|
makefile.mingw \
|
||||||
|
@ -24,22 +26,27 @@ EXTRA_DIST = \
|
||||||
|
|
||||||
lib_LTLIBRARIES = libgimpmath-1.3.la
|
lib_LTLIBRARIES = libgimpmath-1.3.la
|
||||||
|
|
||||||
libgimpmath_1_3_la_SOURCES = \
|
libgimpmath_1_3_la_SOURCES = @STRIP_BEGIN@ \
|
||||||
gimpmath.h \
|
gimpmath.h \
|
||||||
gimpmathtypes.h \
|
gimpmathtypes.h \
|
||||||
gimpmatrix.c \
|
gimpmatrix.c \
|
||||||
gimpmatrix.h \
|
gimpmatrix.h \
|
||||||
gimpvector.c \
|
gimpvector.c \
|
||||||
gimpvector.h
|
gimpvector.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpmathinclude_HEADERS = \
|
libgimpmathinclude_HEADERS = @STRIP_BEGIN@ \
|
||||||
gimpmath.h \
|
gimpmath.h \
|
||||||
gimpmathtypes.h \
|
gimpmathtypes.h \
|
||||||
gimpmatrix.h \
|
gimpmatrix.h \
|
||||||
gimpvector.h
|
gimpvector.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpmath_1_3_la_LDFLAGS = \
|
EXTRA_HEADERS +=
|
||||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
||||||
|
libgimpmath_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpmath_1_3_la_LIBADD = $(GLIB_LIBS) -lm
|
libgimpmath_1_3_la_LIBADD = $(GLIB_LIBS) -lm
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,21 @@
|
||||||
|
|
||||||
libgimpwidgetsincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpwidgets
|
libgimpwidgetsincludedir = $(includedir)/gimp-$(LT_RELEASE)/libgimpwidgets
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DGIMPDIR=\""$(gimpdir)"\" \
|
-DGIMPDIR=\""$(gimpdir)"\" \
|
||||||
-DDATADIR=\""$(gimpdatadir)"\" \
|
-DDATADIR=\""$(gimpdatadir)"\" \
|
||||||
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
-DSYSCONFDIR=\""$(gimpsysconfdir)"\" \
|
||||||
-DG_LOG_DOMAIN=\"LibGimpWidgets\" \
|
-DG_LOG_DOMAIN=\"LibGimpWidgets\" \
|
||||||
@GIMP_THREAD_FLAGS@
|
@GIMP_THREAD_FLAGS@ \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/intl \
|
-I$(top_srcdir)/intl \
|
||||||
-I../intl \
|
-I../intl \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.mingw \
|
makefile.mingw \
|
||||||
|
@ -24,7 +26,7 @@ EXTRA_DIST = \
|
||||||
|
|
||||||
lib_LTLIBRARIES = libgimpwidgets-1.3.la
|
lib_LTLIBRARIES = libgimpwidgets-1.3.la
|
||||||
|
|
||||||
libgimpwidgets_1_3_la_SOURCES = \
|
libgimpwidgets_1_3_la_SOURCES = @STRIP_BEGIN@ \
|
||||||
gimpwidgets.c \
|
gimpwidgets.c \
|
||||||
gimpwidgets.h \
|
gimpwidgets.h \
|
||||||
gimpwidgetstypes.h \
|
gimpwidgetstypes.h \
|
||||||
|
@ -53,9 +55,10 @@ libgimpwidgets_1_3_la_SOURCES = \
|
||||||
gimpsizeentry.c \
|
gimpsizeentry.c \
|
||||||
gimpsizeentry.h \
|
gimpsizeentry.h \
|
||||||
gimpunitmenu.c \
|
gimpunitmenu.c \
|
||||||
gimpunitmenu.h
|
gimpunitmenu.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpwidgetsinclude_HEADERS = \
|
libgimpwidgetsinclude_HEADERS = @STRIP_BEGIN@ \
|
||||||
gimpwidgets.h \
|
gimpwidgets.h \
|
||||||
gimpwidgetstypes.h \
|
gimpwidgetstypes.h \
|
||||||
gimpbutton.h \
|
gimpbutton.h \
|
||||||
|
@ -70,10 +73,14 @@ libgimpwidgetsinclude_HEADERS = \
|
||||||
gimppixmap.h \
|
gimppixmap.h \
|
||||||
gimpquerybox.h \
|
gimpquerybox.h \
|
||||||
gimpsizeentry.h \
|
gimpsizeentry.h \
|
||||||
gimpunitmenu.h
|
gimpunitmenu.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpwidgets_1_3_la_LDFLAGS = \
|
EXTRA_HEADERS +=
|
||||||
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
||||||
|
libgimpwidgets_1_3_la_LDFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
libgimpwidgets_1_3_la_LIBADD = $(GLIB_LIBS) -lm
|
libgimpwidgets_1_3_la_LIBADD = $(GLIB_LIBS) -lm
|
||||||
|
|
||||||
|
|
|
@ -2,14 +2,16 @@
|
||||||
|
|
||||||
libexecdir = $(gimpplugindir)/modules
|
libexecdir = $(gimpplugindir)/modules
|
||||||
|
|
||||||
CPPFLAGS = \
|
CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DMODULE_COMPILATION
|
-DMODULE_COMPILATION \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/intl \
|
-I$(top_srcdir)/intl \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
makefile.mingw \
|
makefile.mingw \
|
||||||
|
@ -19,9 +21,12 @@ EXTRA_DIST = \
|
||||||
gimpmodregister.c \
|
gimpmodregister.c \
|
||||||
gimpmodregister.h
|
gimpmodregister.h
|
||||||
|
|
||||||
libexec_LTLIBRARIES = \
|
libexec_LTLIBRARIES = @STRIP_BEGIN@ \
|
||||||
libcolorsel_triangle.la \
|
libcolorsel_triangle.la \
|
||||||
libcolorsel_water.la
|
libcolorsel_water.la \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
EXTRA_LTLIBRARIES +=
|
||||||
|
|
||||||
## libcolorsel_gtk_la_SOURCES = colorsel_gtk.c
|
## libcolorsel_gtk_la_SOURCES = colorsel_gtk.c
|
||||||
## libcolorsel_gtk_la_LDFLAGS = -avoid-version -module
|
## libcolorsel_gtk_la_LDFLAGS = -avoid-version -module
|
||||||
|
|
|
@ -6,7 +6,7 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = FractalExplorer
|
libexec_PROGRAMS = FractalExplorer
|
||||||
|
|
||||||
FractalExplorer_SOURCES = \
|
FractalExplorer_SOURCES = @STRIP_BEGIN@ \
|
||||||
Dialogs.h \
|
Dialogs.h \
|
||||||
Dialogs.c \
|
Dialogs.c \
|
||||||
Events.h \
|
Events.h \
|
||||||
|
@ -15,24 +15,28 @@ FractalExplorer_SOURCES = \
|
||||||
FractalExplorer.h \
|
FractalExplorer.h \
|
||||||
Globals.c \
|
Globals.c \
|
||||||
logo.h \
|
logo.h \
|
||||||
pix_data.h
|
pix_data.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = Lighting
|
libexec_PROGRAMS = Lighting
|
||||||
|
|
||||||
Lighting_SOURCES = \
|
Lighting_SOURCES = @STRIP_BEGIN@ \
|
||||||
amb1.xpm \
|
amb1.xpm \
|
||||||
amb2.xpm \
|
amb2.xpm \
|
||||||
diffint1.xpm \
|
diffint1.xpm \
|
||||||
|
@ -26,18 +26,21 @@ Lighting_SOURCES = \
|
||||||
lighting_ui.c \
|
lighting_ui.c \
|
||||||
lighting_ui.h \
|
lighting_ui.h \
|
||||||
specref1.xpm \
|
specref1.xpm \
|
||||||
specref2.xpm
|
specref2.xpm \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/plug-ins/libgck \
|
-I$(top_srcdir)/plug-ins/libgck \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
LDADD = \
|
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
|
@ -46,7 +49,8 @@ LDADD = \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/plug-ins/libgck/gck/libgck-$(LT_RELEASE).la \
|
$(top_builddir)/plug-ins/libgck/gck/libgck-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = MapObject
|
libexec_PROGRAMS = MapObject
|
||||||
|
|
||||||
MapObject_SOURCES = \
|
MapObject_SOURCES = @STRIP_BEGIN@ \
|
||||||
amb1.xpm \
|
amb1.xpm \
|
||||||
amb2.xpm \
|
amb2.xpm \
|
||||||
arcball.c \
|
arcball.c \
|
||||||
|
@ -28,15 +28,21 @@ MapObject_SOURCES = \
|
||||||
mapobject_ui.c \
|
mapobject_ui.c \
|
||||||
mapobject_ui.h \
|
mapobject_ui.h \
|
||||||
specref1.xpm \
|
specref1.xpm \
|
||||||
specref2.xpm
|
specref2.xpm \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/plug-ins/libgck \
|
-I$(top_srcdir)/plug-ins/libgck \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
|
@ -45,10 +51,8 @@ LDADD = \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/plug-ins/libgck/gck/libgck-$(LT_RELEASE).la \
|
$(top_builddir)/plug-ins/libgck/gck/libgck-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,28 +4,32 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = bmp
|
libexec_PROGRAMS = bmp
|
||||||
|
|
||||||
bmp_SOURCES = \
|
bmp_SOURCES = @STRIP_BEGIN@ \
|
||||||
bmp.c \
|
bmp.c \
|
||||||
bmp.h \
|
bmp.h \
|
||||||
bmpread.c \
|
bmpread.c \
|
||||||
bmpwrite.c
|
bmpwrite.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
LDADD = \
|
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -42,20 +42,24 @@ print MK <<EOT;
|
||||||
|
|
||||||
libexecdir = \$(gimpplugindir)/plug-ins
|
libexecdir = \$(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
EXTRA_DIST = \\
|
EXTRA_DIST = \@STRIP_BEGIN\@ \\
|
||||||
mkgen.pl \\
|
mkgen.pl \\
|
||||||
plugin-defs.pl$extra
|
plugin-defs.pl$extra \\
|
||||||
|
\@STRIP_END\@
|
||||||
|
|
||||||
AM_CPPFLAGS = \\
|
AM_CPPFLAGS = \@STRIP_BEGIN\@ \\
|
||||||
-DLOCALEDIR=\\""\$(localedir)"\\"
|
-DLOCALEDIR=\\""\$(localedir)"\\" \\
|
||||||
|
\@STRIP_END\@
|
||||||
|
|
||||||
INCLUDES = \\
|
INCLUDES = \@STRIP_BEGIN\@ \\
|
||||||
-I\$(top_srcdir) \\
|
-I\$(top_srcdir) \\
|
||||||
\$(GTK_CFLAGS) \\
|
\$(GTK_CFLAGS) \\
|
||||||
-I\$(includedir)
|
-I\$(includedir) \\
|
||||||
|
\@STRIP_END\@
|
||||||
|
|
||||||
libexec_PROGRAMS = \\
|
libexec_PROGRAMS = \@STRIP_BEGIN\@ \\
|
||||||
$bins
|
$bins \\
|
||||||
|
\@STRIP_END\@
|
||||||
|
|
||||||
EXTRA_PROGRAMS = \\
|
EXTRA_PROGRAMS = \\
|
||||||
$opts
|
$opts
|
||||||
|
@ -107,13 +111,15 @@ foreach (sort keys %plugins) {
|
||||||
|
|
||||||
print MK <<EOT;
|
print MK <<EOT;
|
||||||
|
|
||||||
${_}_SOURCES = \\
|
${_}_SOURCES = \@STRIP_BEGIN\@ \\
|
||||||
$_.c
|
$_.c \\
|
||||||
|
\@STRIP_END\@
|
||||||
|
|
||||||
${_}_LDADD = \\
|
${_}_LDADD = \@STRIP_BEGIN\@ \\
|
||||||
$libgimp \\$optlib
|
$libgimp \\$optlib
|
||||||
\$(\U$plugins{$_}->{libdep}\E_LIBS) \\
|
\$(\U$plugins{$_}->{libdep}\E_LIBS) \\
|
||||||
\$(INTLLIBS)
|
\$(INTLLIBS) \\
|
||||||
|
\@STRIP_END\@
|
||||||
EOT
|
EOT
|
||||||
|
|
||||||
print IGNORE "$_\n";
|
print IGNORE "$_\n";
|
||||||
|
|
|
@ -2,31 +2,35 @@
|
||||||
|
|
||||||
libexecdir = $(gimpplugindir)/plug-ins
|
libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
EXTRA_DIST = README
|
|
||||||
|
|
||||||
libexec_PROGRAMS = dbbrowser
|
libexec_PROGRAMS = dbbrowser
|
||||||
|
|
||||||
dbbrowser_SOURCES = \
|
dbbrowser_SOURCES = @STRIP_BEGIN@ \
|
||||||
dbbrowser.c \
|
dbbrowser.c \
|
||||||
dbbrowser_utils.c \
|
dbbrowser_utils.c \
|
||||||
dbbrowser_utils.h
|
dbbrowser_utils.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
EXTRA_DIST = README
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,26 +4,30 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = faxg3
|
libexec_PROGRAMS = faxg3
|
||||||
|
|
||||||
faxg3_SOURCES = \
|
faxg3_SOURCES = @STRIP_BEGIN@ \
|
||||||
faxg3.c \
|
faxg3.c \
|
||||||
g3.c \
|
g3.c \
|
||||||
g3.h \
|
g3.h \
|
||||||
run_tbl.c
|
run_tbl.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GLIB_CFLAGS) \
|
$(GLIB_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GLIB_LIBS) \
|
$(GLIB_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,27 +4,31 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = fits
|
libexec_PROGRAMS = fits
|
||||||
|
|
||||||
fits_SOURCES = \
|
fits_SOURCES = @STRIP_BEGIN@ \
|
||||||
fits.c \
|
fits.c \
|
||||||
fitsrw.c \
|
fitsrw.c \
|
||||||
fitsrw.h
|
fitsrw.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,11 +2,9 @@
|
||||||
|
|
||||||
libexecdir = $(gimpplugindir)/plug-ins
|
libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
EXTRA_DIST = README
|
|
||||||
|
|
||||||
libexec_PROGRAMS = flame
|
libexec_PROGRAMS = flame
|
||||||
|
|
||||||
flame_SOURCES = \
|
flame_SOURCES = @STRIP_BEGIN@ \
|
||||||
cmap.c \
|
cmap.c \
|
||||||
cmap.h \
|
cmap.h \
|
||||||
flame.c \
|
flame.c \
|
||||||
|
@ -14,15 +12,22 @@ flame_SOURCES = \
|
||||||
libifs.c \
|
libifs.c \
|
||||||
libifs.h \
|
libifs.h \
|
||||||
rect.c \
|
rect.c \
|
||||||
rect.h
|
rect.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\" \
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
EXTRA_DIST = README
|
||||||
|
|
||||||
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
|
@ -30,7 +35,8 @@ LDADD = \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(LIBUCB) \
|
$(LIBUCB) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,29 +4,33 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = fp
|
libexec_PROGRAMS = fp
|
||||||
|
|
||||||
fp_SOURCES = \
|
fp_SOURCES = @STRIP_BEGIN@ \
|
||||||
fp.c \
|
fp.c \
|
||||||
fp.h \
|
fp.h \
|
||||||
fp_gdk.c \
|
fp_gdk.c \
|
||||||
fp_gtk.c \
|
fp_gtk.c \
|
||||||
fp_misc.c
|
fp_misc.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -97,17 +97,18 @@ EXTRA_DIST = \
|
||||||
iter_ALT/old/plug_in_warp_iter_ALT.inc \
|
iter_ALT/old/plug_in_warp_iter_ALT.inc \
|
||||||
$(scriptdata_DATA)
|
$(scriptdata_DATA)
|
||||||
|
|
||||||
libexec_PROGRAMS = \
|
libexec_PROGRAMS = @STRIP_BEGIN@ \
|
||||||
gap_plugins \
|
gap_plugins \
|
||||||
gap_filter \
|
gap_filter \
|
||||||
gap_frontends \
|
gap_frontends \
|
||||||
gap_navigator_dialog \
|
gap_navigator_dialog \
|
||||||
$(GAP_DECODE_MPEG)
|
$(GAP_DECODE_MPEG) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_PROGRAMS = \
|
EXTRA_PROGRAMS = \
|
||||||
gap_decode_mpeg
|
gap_decode_mpeg
|
||||||
|
|
||||||
gap_plugins_SOURCES = \
|
gap_plugins_SOURCES = @STRIP_BEGIN@ \
|
||||||
gap_main.c \
|
gap_main.c \
|
||||||
gap_mov_exec.c \
|
gap_mov_exec.c \
|
||||||
gap_mov_exec.h \
|
gap_mov_exec.h \
|
||||||
|
@ -139,10 +140,11 @@ gap_plugins_SOURCES = \
|
||||||
gap_pdb_calls.c \
|
gap_pdb_calls.c \
|
||||||
gap_pdb_calls.h \
|
gap_pdb_calls.h \
|
||||||
resize.c \
|
resize.c \
|
||||||
resize.h
|
resize.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
|
||||||
gap_filter_SOURCES = \
|
gap_filter_SOURCES = @STRIP_BEGIN@ \
|
||||||
gap_filter_main.c \
|
gap_filter_main.c \
|
||||||
gap_dbbrowser_utils.c \
|
gap_dbbrowser_utils.c \
|
||||||
gap_dbbrowser_utils.h \
|
gap_dbbrowser_utils.h \
|
||||||
|
@ -156,9 +158,10 @@ gap_filter_SOURCES = \
|
||||||
gap_arr_dialog.h \
|
gap_arr_dialog.h \
|
||||||
gap_pdb_calls.c \
|
gap_pdb_calls.c \
|
||||||
gap_pdb_calls.h \
|
gap_pdb_calls.h \
|
||||||
gap_filter.h
|
gap_filter.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
gap_frontends_SOURCES = \
|
gap_frontends_SOURCES = @STRIP_BEGIN@ \
|
||||||
gap_frontends_main.c \
|
gap_frontends_main.c \
|
||||||
gap_arr_dialog.c \
|
gap_arr_dialog.c \
|
||||||
gap_arr_dialog.h \
|
gap_arr_dialog.h \
|
||||||
|
@ -175,18 +178,20 @@ gap_frontends_SOURCES = \
|
||||||
gap_mpege.c \
|
gap_mpege.c \
|
||||||
gap_mpege.h \
|
gap_mpege.h \
|
||||||
gap_decode_xanim.c \
|
gap_decode_xanim.c \
|
||||||
gap_decode_xanim.h
|
gap_decode_xanim.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
|
||||||
gap_decode_mpeg_SOURCES = \
|
gap_decode_mpeg_SOURCES = @STRIP_BEGIN@ \
|
||||||
gap_decode_mpeg_main.c \
|
gap_decode_mpeg_main.c \
|
||||||
gap_arr_dialog.c \
|
gap_arr_dialog.c \
|
||||||
gap_arr_dialog.h \
|
gap_arr_dialog.h \
|
||||||
gap_pdb_calls.c \
|
gap_pdb_calls.c \
|
||||||
gap_pdb_calls.h
|
gap_pdb_calls.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
|
||||||
gap_navigator_dialog_SOURCES = \
|
gap_navigator_dialog_SOURCES = @STRIP_BEGIN@ \
|
||||||
gap_navigator_dialog.c \
|
gap_navigator_dialog.c \
|
||||||
gap_lib.c \
|
gap_lib.c \
|
||||||
gap_lib.h \
|
gap_lib.h \
|
||||||
|
@ -197,27 +202,31 @@ gap_navigator_dialog_SOURCES = \
|
||||||
gap_layer_copy.c \
|
gap_layer_copy.c \
|
||||||
gap_layer_copy.h \
|
gap_layer_copy.h \
|
||||||
gap_exchange_image.c \
|
gap_exchange_image.c \
|
||||||
gap_exchange_image.h
|
gap_exchange_image.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
gap_decode_mpeg_LDADD = \
|
gap_decode_mpeg_LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
|
@ -225,7 +234,8 @@ gap_decode_mpeg_LDADD = \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(LIBMPEG) \
|
$(LIBMPEG) \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
files:
|
files:
|
||||||
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
||||||
|
|
|
@ -30,7 +30,7 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = gdyntext
|
libexec_PROGRAMS = gdyntext
|
||||||
|
|
||||||
gdyntext_SOURCES = \
|
gdyntext_SOURCES = @STRIP_BEGIN@ \
|
||||||
charmap.c \
|
charmap.c \
|
||||||
charmap.h \
|
charmap.h \
|
||||||
charmap_window.c \
|
charmap_window.c \
|
||||||
|
@ -44,24 +44,28 @@ gdyntext_SOURCES = \
|
||||||
gdyntext_ui.c \
|
gdyntext_ui.c \
|
||||||
gdyntext_ui.h \
|
gdyntext_ui.h \
|
||||||
message_window.c \
|
message_window.c \
|
||||||
message_window.h
|
message_window.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -1,33 +1,37 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
SUBDIRS = gfig-examples
|
SUBDIRS = gfig-examples
|
||||||
|
|
||||||
libexecdir = $(gimpplugindir)/plug-ins
|
libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
EXTRA_DIST = README
|
|
||||||
|
|
||||||
libexec_PROGRAMS = gfig
|
libexec_PROGRAMS = gfig
|
||||||
|
|
||||||
gfig_SOURCES = \
|
gfig_SOURCES = @STRIP_BEGIN@ \
|
||||||
gfig.c \
|
gfig.c \
|
||||||
pix_data.h
|
pix_data.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
EXTRA_DIST = README
|
||||||
|
|
||||||
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -1,34 +1,38 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
SUBDIRS = gflares
|
SUBDIRS = gflares
|
||||||
|
|
||||||
libexecdir = $(gimpplugindir)/plug-ins
|
libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = gflare
|
libexec_PROGRAMS = gflare
|
||||||
|
|
||||||
gflare_SOURCES = \
|
gflare_SOURCES = @STRIP_BEGIN@ \
|
||||||
asupsample.h \
|
asupsample.h \
|
||||||
asupsample.c \
|
asupsample.c \
|
||||||
gtkmultioptionmenu.h \
|
gtkmultioptionmenu.h \
|
||||||
gtkmultioptionmenu.c \
|
gtkmultioptionmenu.c \
|
||||||
gflare.c
|
gflare.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,27 +4,31 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = gfli
|
libexec_PROGRAMS = gfli
|
||||||
|
|
||||||
gfli_SOURCES = \
|
gfli_SOURCES = @STRIP_BEGIN@ \
|
||||||
fli.h \
|
fli.h \
|
||||||
fli.c \
|
fli.c \
|
||||||
gfli.c
|
gfli.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,9 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
SUBDIRS = Brushes Paper Presets
|
SUBDIRS = Brushes Paper Presets
|
||||||
|
|
||||||
EXTRA_DIST = README ChangeLog
|
|
||||||
|
|
||||||
libexec_PROGRAMS = gimpressionist
|
libexec_PROGRAMS = gimpressionist
|
||||||
|
|
||||||
gimpressionist_SOURCES = \
|
gimpressionist_SOURCES = @STRIP_BEGIN@ \
|
||||||
about.c \
|
about.c \
|
||||||
brush.c \
|
brush.c \
|
||||||
general.c \
|
general.c \
|
||||||
|
@ -27,26 +25,34 @@ gimpressionist_SOURCES = \
|
||||||
repaint.c \
|
repaint.c \
|
||||||
size.c \
|
size.c \
|
||||||
sizemap.c \
|
sizemap.c \
|
||||||
color.c
|
color.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
EXTRA_DIST = \
|
||||||
|
README \
|
||||||
|
ChangeLog
|
||||||
|
|
||||||
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DDEFAULTPATH=\""~/$(gimpdir)/gimpressionist:$(gimpdatadir)/gimpressionist"\" \
|
-DDEFAULTPATH=\""~/$(gimpdir)/gimpressionist:$(gimpdatadir)/gimpressionist"\" \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,20 +4,26 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = helpbrowser
|
libexec_PROGRAMS = helpbrowser
|
||||||
|
|
||||||
helpbrowser_SOURCES = \
|
helpbrowser_SOURCES = @STRIP_BEGIN@ \
|
||||||
back.xpm \
|
back.xpm \
|
||||||
forward.xpm \
|
forward.xpm \
|
||||||
helpbrowser.c \
|
helpbrowser.c \
|
||||||
queue.c \
|
queue.c \
|
||||||
queue.h
|
queue.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
$(GTKXMHTML_CFLAGS) \
|
$(GTKXMHTML_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
|
@ -25,10 +31,8 @@ LDADD = \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(GTKXMHTML_LIBS) \
|
$(GTKXMHTML_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,32 +2,36 @@
|
||||||
|
|
||||||
libexecdir = $(gimpplugindir)/plug-ins
|
libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
EXTRA_DIST = README.ifscompose
|
|
||||||
|
|
||||||
libexec_PROGRAMS = ifscompose
|
libexec_PROGRAMS = ifscompose
|
||||||
|
|
||||||
ifscompose_SOURCES = \
|
ifscompose_SOURCES = @STRIP_BEGIN@ \
|
||||||
ifscompose.c \
|
ifscompose.c \
|
||||||
ifscompose.h \
|
ifscompose.h \
|
||||||
ifscompose_utils.c \
|
ifscompose_utils.c \
|
||||||
ifscompose_storage.c
|
ifscompose_storage.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
EXTRA_DIST = README.ifscompose
|
||||||
|
|
||||||
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = imagemap
|
libexec_PROGRAMS = imagemap
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = @STRIP_BEGIN@ \
|
||||||
arrow.xpm \
|
arrow.xpm \
|
||||||
arrow_down.xpm \
|
arrow_down.xpm \
|
||||||
arrow_up.xpm \
|
arrow_up.xpm \
|
||||||
|
@ -36,9 +36,10 @@ EXTRA_DIST = \
|
||||||
TODO \
|
TODO \
|
||||||
imap_cern.y \
|
imap_cern.y \
|
||||||
imap_csim.y \
|
imap_csim.y \
|
||||||
imap_ncsa.y
|
imap_ncsa.y \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
imagemap_SOURCES = \
|
imagemap_SOURCES = @STRIP_BEGIN@ \
|
||||||
imap_about.c \
|
imap_about.c \
|
||||||
imap_about.h \
|
imap_about.h \
|
||||||
imap_browse.c \
|
imap_browse.c \
|
||||||
|
@ -163,25 +164,29 @@ imagemap_SOURCES = \
|
||||||
imap_toolbar.c \
|
imap_toolbar.c \
|
||||||
imap_toolbar.h \
|
imap_toolbar.h \
|
||||||
imap_tools.c \
|
imap_tools.c \
|
||||||
imap_tools.h
|
imap_tools.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,29 +4,33 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = maze
|
libexec_PROGRAMS = maze
|
||||||
|
|
||||||
maze_SOURCES = \
|
maze_SOURCES = @STRIP_BEGIN@ \
|
||||||
algorithms.c \
|
algorithms.c \
|
||||||
handy.c \
|
handy.c \
|
||||||
maze.c \
|
maze.c \
|
||||||
maze.h \
|
maze.h \
|
||||||
maze_face.c
|
maze_face.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,26 +4,30 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = mosaic
|
libexec_PROGRAMS = mosaic
|
||||||
|
|
||||||
mosaic_SOURCES = \
|
mosaic_SOURCES = @STRIP_BEGIN@ \
|
||||||
mosaic.c \
|
mosaic.c \
|
||||||
mosaic_logo.h
|
mosaic_logo.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = pagecurl
|
libexec_PROGRAMS = pagecurl
|
||||||
|
|
||||||
pagecurl_SOURCES = \
|
pagecurl_SOURCES = @STRIP_BEGIN@ \
|
||||||
pagecurl.c \
|
pagecurl.c \
|
||||||
curl0.xpm \
|
curl0.xpm \
|
||||||
curl1.xpm \
|
curl1.xpm \
|
||||||
|
@ -13,17 +13,20 @@ pagecurl_SOURCES = \
|
||||||
curl4.xpm \
|
curl4.xpm \
|
||||||
curl5.xpm \
|
curl5.xpm \
|
||||||
curl6.xpm \
|
curl6.xpm \
|
||||||
curl7.xpm
|
curl7.xpm \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
|
@ -31,7 +34,8 @@ LDADD = \
|
||||||
$(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
2001-06-07 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* Makefile.in.in: some build fixes.
|
||||||
|
|
||||||
|
* zh_TW.Big5.po: new dummy file.
|
||||||
|
|
||||||
2001-05-25 Stanislav Brabec <utx@penguin.cz>
|
2001-05-25 Stanislav Brabec <utx@penguin.cz>
|
||||||
|
|
||||||
* cs.po: Updated translation.
|
* cs.po: Updated translation.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Makefile for program source directory in GNU NLS utilities package.
|
# Makefile for program source directory in GNU NLS utilities package.
|
||||||
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
|
# Copyright (C) 1995-1997, 2000, 2001 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
|
||||||
#
|
#
|
||||||
# This file file be copied and used freely without restrictions. It can
|
# This file file be copied and used freely without restrictions. It can
|
||||||
# be used in projects which are not available under the GNU Public License
|
# be used in projects which are not available under the GNU Public License
|
||||||
|
@ -14,26 +14,27 @@ SHELL = /bin/sh
|
||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
top_srcdir = @top_srcdir@
|
top_srcdir = @top_srcdir@
|
||||||
|
top_builddir = ../../..
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
|
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
datadir = $(prefix)/@DATADIRNAME@
|
datadir = @datadir@
|
||||||
localedir = $(datadir)/locale
|
localedir = $(datadir)/locale
|
||||||
gnulocaledir = $(prefix)/share/locale
|
gettextsrcdir = $(datadir)/gettext/po
|
||||||
gettextsrcdir = $(prefix)/share/gettext/po
|
|
||||||
subdir = plug-ins/perl/po
|
subdir = plug-ins/perl/po
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
|
MKINSTALLDIRS = @MKINSTALLDIRS@
|
||||||
|
mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
|
||||||
|
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
GENCAT = @GENCAT@
|
GMSGFMT = @GMSGFMT@
|
||||||
GMSGFMT = PATH=../src:$$PATH @GMSGFMT@
|
|
||||||
MSGFMT = @MSGFMT@
|
MSGFMT = @MSGFMT@
|
||||||
|
XGETTEXT = @XGETTEXT@
|
||||||
PXGETTEXT = perl $(srcdir)/pxgettext
|
PXGETTEXT = perl $(srcdir)/pxgettext
|
||||||
MSGMERGE = PATH=../src:$$PATH msgmerge
|
MSGMERGE = msgmerge
|
||||||
|
|
||||||
DEFS = @DEFS@
|
DEFS = @DEFS@
|
||||||
CFLAGS = @CFLAGS@
|
CFLAGS = @CFLAGS@
|
||||||
|
@ -43,20 +44,17 @@ INCLUDES = -I.. -I$(top_srcdir)/intl
|
||||||
|
|
||||||
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
|
||||||
|
|
||||||
SOURCES = cat-id-tbl.c
|
|
||||||
POFILES = @POFILES@
|
POFILES = @POFILES@
|
||||||
GMOFILES = @GMOFILES@
|
GMOFILES = @GMOFILES@
|
||||||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
|
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
|
||||||
stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES) $(srcdir)/pxgettext
|
$(POFILES) $(GMOFILES)
|
||||||
|
|
||||||
POTFILES = \
|
POTFILES = \
|
||||||
|
|
||||||
CATALOGS = @CATALOGS@
|
CATALOGS = @CATALOGS@
|
||||||
CATOBJEXT = @CATOBJEXT@
|
|
||||||
INSTOBJEXT = @INSTOBJEXT@
|
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
|
.SUFFIXES: .c .o .po .pox .gmo .mo
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
$(COMPILE) $<
|
$(COMPILE) $<
|
||||||
|
@ -70,96 +68,55 @@ INSTOBJEXT = @INSTOBJEXT@
|
||||||
|
|
||||||
.po.gmo:
|
.po.gmo:
|
||||||
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
|
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
|
||||||
&& rm -f $$file && $(GMSGFMT) -o $$file $<
|
&& rm -f $$file && $(GMSGFMT) --statistics -o $$file $<
|
||||||
|
|
||||||
.po.cat:
|
|
||||||
sed -f ../../../intl/po2msg.sed < $< > $*.msg \
|
|
||||||
&& rm -f $@ && $(GENCAT) $@ $*.msg
|
|
||||||
|
|
||||||
|
|
||||||
all: all-@USE_NLS@
|
all: all-@USE_NLS@
|
||||||
|
|
||||||
all-yes: cat-id-tbl.c $(CATALOGS)
|
all-yes: $(CATALOGS)
|
||||||
all-no:
|
all-no:
|
||||||
|
|
||||||
$(srcdir)/$(PACKAGE).pot: $(POTFILES)
|
# Note: Target 'all' must not depend on target '$(srcdir)/$(PACKAGE).pot',
|
||||||
$(PXGETTEXT) $(POTFILES) > $(PACKAGE).po \
|
# otherwise packages like GCC can not be built if only parts of the source
|
||||||
|
# have been downloaded.
|
||||||
|
|
||||||
|
$(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in
|
||||||
|
$(PXGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
|
||||||
|
--add-comments --keyword=_ --keyword=N_ \
|
||||||
|
--files-from=$(srcdir)/POTFILES.in \
|
||||||
&& test ! -f $(PACKAGE).po \
|
&& test ! -f $(PACKAGE).po \
|
||||||
|| ( rm -f $(srcdir)/$(PACKAGE).pot \
|
|| ( rm -f $(srcdir)/$(PACKAGE).pot \
|
||||||
&& mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot )
|
&& mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot )
|
||||||
|
|
||||||
$(srcdir)/cat-id-tbl.c: stamp-cat-id; @:
|
|
||||||
$(srcdir)/stamp-cat-id: $(PACKAGE).pot
|
|
||||||
rm -f cat-id-tbl.tmp
|
|
||||||
sed -f ../../../intl/po2tbl.sed $(srcdir)/$(PACKAGE).pot \
|
|
||||||
| sed -e "s/@PACKAGE NAME@/$(PACKAGE)/" > cat-id-tbl.tmp
|
|
||||||
if cmp -s cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; then \
|
|
||||||
rm cat-id-tbl.tmp; \
|
|
||||||
else \
|
|
||||||
echo cat-id-tbl.c changed; \
|
|
||||||
rm -f $(srcdir)/cat-id-tbl.c; \
|
|
||||||
mv cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; \
|
|
||||||
fi
|
|
||||||
cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id
|
|
||||||
|
|
||||||
|
|
||||||
install: install-exec install-data
|
install: install-exec install-data
|
||||||
install-exec:
|
install-exec:
|
||||||
install-data: install-data-@USE_NLS@
|
install-data: install-data-@USE_NLS@
|
||||||
install-data-no: all
|
|
||||||
install-data-yes: all
|
|
||||||
if test -r "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $(datadir); \
|
|
||||||
else \
|
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \
|
|
||||||
fi
|
|
||||||
@catalogs='$(CATALOGS)'; \
|
|
||||||
for cat in $$catalogs; do \
|
|
||||||
cat=`basename $$cat`; \
|
|
||||||
case "$$cat" in \
|
|
||||||
*.gmo) destdir=$(gnulocaledir);; \
|
|
||||||
*) destdir=$(localedir);; \
|
|
||||||
esac; \
|
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
|
||||||
dir=$$destdir/$$lang/LC_MESSAGES; \
|
|
||||||
if test -r "$(MKINSTALLDIRS)"; then \
|
|
||||||
$(MKINSTALLDIRS) $$dir; \
|
|
||||||
else \
|
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
|
|
||||||
fi; \
|
|
||||||
if test -r $$cat; then \
|
|
||||||
$(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
|
||||||
echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
|
|
||||||
else \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
|
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
|
||||||
"$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
|
|
||||||
fi; \
|
|
||||||
if test -r $$cat.m; then \
|
|
||||||
$(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
|
||||||
if test -r $(srcdir)/$$cat.m ; then \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/$$cat.m \
|
|
||||||
$$dir/$(PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
echo "installing $(srcdir)/$$cat as" \
|
|
||||||
"$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
|
|
||||||
else \
|
|
||||||
true; \
|
|
||||||
fi; \
|
|
||||||
fi; \
|
|
||||||
done
|
|
||||||
if test "$(PACKAGE)" = "gettext"; then \
|
if test "$(PACKAGE)" = "gettext"; then \
|
||||||
if test -r "$(MKINSTALLDIRS)"; then \
|
$(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
|
||||||
$(MKINSTALLDIRS) $(gettextsrcdir); \
|
|
||||||
else \
|
|
||||||
$(SHELL) $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \
|
|
||||||
fi; \
|
|
||||||
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
|
||||||
$(gettextsrcdir)/Makefile.in.in; \
|
$(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
||||||
else \
|
else \
|
||||||
: ; \
|
: ; \
|
||||||
fi
|
fi
|
||||||
|
install-data-no: all
|
||||||
|
install-data-yes: all
|
||||||
|
$(mkinstalldirs) $(DESTDIR)$(datadir)
|
||||||
|
@catalogs='$(CATALOGS)'; \
|
||||||
|
for cat in $$catalogs; do \
|
||||||
|
cat=`basename $$cat`; \
|
||||||
|
lang=`echo $$cat | sed 's/\.gmo$$//'`; \
|
||||||
|
dir=$(localedir)/$$lang/LC_MESSAGES; \
|
||||||
|
$(mkinstalldirs) $(DESTDIR)$$dir; \
|
||||||
|
if test -r $$cat; then \
|
||||||
|
$(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
|
||||||
|
echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE).mo"; \
|
||||||
|
else \
|
||||||
|
$(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
|
||||||
|
echo "installing $(srcdir)/$$cat as" \
|
||||||
|
"$(DESTDIR)$$dir/$(PACKAGE).mo"; \
|
||||||
|
fi; \
|
||||||
|
done
|
||||||
|
|
||||||
# Define this as empty until I found a useful application.
|
# Define this as empty until I found a useful application.
|
||||||
installcheck:
|
installcheck:
|
||||||
|
@ -168,28 +125,27 @@ uninstall:
|
||||||
catalogs='$(CATALOGS)'; \
|
catalogs='$(CATALOGS)'; \
|
||||||
for cat in $$catalogs; do \
|
for cat in $$catalogs; do \
|
||||||
cat=`basename $$cat`; \
|
cat=`basename $$cat`; \
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
lang=`echo $$cat | sed 's/\.gmo$$//'`; \
|
||||||
rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
|
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo; \
|
||||||
rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
|
|
||||||
rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
|
|
||||||
done
|
done
|
||||||
rm -f $(gettextsrcdir)/po-Makefile.in.in
|
if test "$(PACKAGE)" = "gettext"; then \
|
||||||
|
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
|
||||||
|
else \
|
||||||
|
: ; \
|
||||||
|
fi
|
||||||
|
|
||||||
check: all
|
check: all
|
||||||
|
|
||||||
cat-id-tbl.o: ../../../intl/libgettext.h
|
|
||||||
|
|
||||||
dvi info tags TAGS ID:
|
dvi info tags TAGS ID:
|
||||||
|
|
||||||
mostlyclean:
|
mostlyclean:
|
||||||
rm -f core core.* *.pox $(PACKAGE).po *.old.po cat-id-tbl.tmp
|
rm -f core core.* *.pox $(PACKAGE).po *.new.po
|
||||||
rm -fr *.o
|
rm -fr *.o
|
||||||
|
|
||||||
clean: mostlyclean
|
clean: mostlyclean
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
|
rm -f Makefile Makefile.in POTFILES *.mo
|
||||||
|
|
||||||
maintainer-clean: distclean
|
maintainer-clean: distclean
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
|
@ -197,31 +153,36 @@ maintainer-clean: distclean
|
||||||
rm -f $(GMOFILES)
|
rm -f $(GMOFILES)
|
||||||
|
|
||||||
distdir = ../../../$(PACKAGE)-$(VERSION)/$(subdir)
|
distdir = ../../../$(PACKAGE)-$(VERSION)/$(subdir)
|
||||||
dist distdir: update-po $(DISTFILES)
|
dist distdir:
|
||||||
|
$(MAKE) update-po
|
||||||
|
@$(MAKE) dist2
|
||||||
|
# This is a separate target because 'update-po' must be executed before.
|
||||||
|
dist2: $(DISTFILES)
|
||||||
dists="$(DISTFILES)"; \
|
dists="$(DISTFILES)"; \
|
||||||
for file in $$dists; do \
|
for file in $$dists; do \
|
||||||
ln $(srcdir)/$$file ../../$(distdir) 2> /dev/null \
|
cp -p $(srcdir)/$$file ../../$(distdir); \
|
||||||
|| cp -p $(srcdir)/$$file $(distdir); \
|
|
||||||
done
|
done
|
||||||
|
|
||||||
update-po: Makefile
|
update-po: Makefile
|
||||||
$(MAKE) $(PACKAGE).pot
|
$(MAKE) $(PACKAGE).pot
|
||||||
PATH=`pwd`/../src:$$PATH; \
|
if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \
|
||||||
cd $(srcdir); \
|
cd $(srcdir); \
|
||||||
catalogs='$(CATALOGS)'; \
|
catalogs='$(GMOFILES)'; \
|
||||||
for cat in $$catalogs; do \
|
for cat in $$catalogs; do \
|
||||||
cat=`basename $$cat`; \
|
cat=`basename $$cat`; \
|
||||||
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
|
lang=`echo $$cat | sed 's/\.gmo$$//'`; \
|
||||||
mv $$lang.po $$lang.old.po; \
|
|
||||||
echo "$$lang:"; \
|
echo "$$lang:"; \
|
||||||
if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \
|
if $(MSGMERGE) $$lang.po $(PACKAGE).pot -o $$lang.new.po; then \
|
||||||
rm -f $$lang.old.po; \
|
mv -f $$lang.new.po $$lang.po; \
|
||||||
else \
|
else \
|
||||||
echo "msgmerge for $$cat failed!"; \
|
echo "msgmerge for $$cat failed!"; \
|
||||||
rm -f $$lang.po; \
|
rm -f $$lang.new.po; \
|
||||||
mv $$lang.old.po $$lang.po; \
|
|
||||||
fi; \
|
fi; \
|
||||||
done
|
done
|
||||||
|
$(MAKE) update-gmo
|
||||||
|
|
||||||
|
update-gmo: Makefile $(GMOFILES)
|
||||||
|
@:
|
||||||
|
|
||||||
POTFILES: POTFILES.in
|
POTFILES: POTFILES.in
|
||||||
( if test 'x$(srcdir)' != 'x.'; then \
|
( if test 'x$(srcdir)' != 'x.'; then \
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -8,13 +8,11 @@
|
||||||
|
|
||||||
libexecdir = $(gimpplugindir)/plug-ins
|
libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
EXTRA_DIST = print-printers.c
|
|
||||||
|
|
||||||
libexec_PROGRAMS = print
|
libexec_PROGRAMS = print
|
||||||
|
|
||||||
bin_PROGRAMS = escputil
|
bin_PROGRAMS = escputil
|
||||||
|
|
||||||
print_SOURCES = \
|
print_SOURCES = @STRIP_BEGIN@ \
|
||||||
print-canon.c \
|
print-canon.c \
|
||||||
print-dither.c \
|
print-dither.c \
|
||||||
print-escp2.c \
|
print-escp2.c \
|
||||||
|
@ -30,30 +28,36 @@ print_SOURCES = \
|
||||||
print.c \
|
print.c \
|
||||||
gimp_color_window.c \
|
gimp_color_window.c \
|
||||||
gimp_main_window.c \
|
gimp_main_window.c \
|
||||||
print_gimp.h
|
print_gimp.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
escputil_SOURCES = escputil.c
|
escputil_SOURCES = escputil.c
|
||||||
|
|
||||||
man_MANS = escputil.1
|
man_MANS = escputil.1
|
||||||
|
|
||||||
INCLUDES = \
|
EXTRA_DIST = print-printers.c
|
||||||
-I$(top_srcdir) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\" \
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
-DVERSION=\"$(GIMP_PRINT_VERSION)\" \
|
-DVERSION=\"$(GIMP_PRINT_VERSION)\" \
|
||||||
-DRELEASE_DATE=\"$(GIMP_PRINT_RELEASE_DATE)\"
|
-DRELEASE_DATE=\"$(GIMP_PRINT_RELEASE_DATE)\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
|
-I$(top_srcdir) \
|
||||||
|
$(GTK_CFLAGS) \
|
||||||
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
escputil_LDADD =
|
escputil_LDADD =
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = rcm
|
libexec_PROGRAMS = rcm
|
||||||
|
|
||||||
rcm_SOURCES = \
|
rcm_SOURCES = @STRIP_BEGIN@ \
|
||||||
rcm.c \
|
rcm.c \
|
||||||
rcm.h \
|
rcm.h \
|
||||||
rcm_callback.c \
|
rcm_callback.c \
|
||||||
|
@ -14,30 +14,35 @@ rcm_SOURCES = \
|
||||||
rcm_gdk.c \
|
rcm_gdk.c \
|
||||||
rcm_gdk.h \
|
rcm_gdk.h \
|
||||||
rcm_misc.c \
|
rcm_misc.c \
|
||||||
rcm_misc.h
|
rcm_misc.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = @STRIP_BEGIN@ \
|
||||||
pixmaps/rcm_360.xpm \
|
pixmaps/rcm_360.xpm \
|
||||||
pixmaps/rcm_a_b.xpm \
|
pixmaps/rcm_a_b.xpm \
|
||||||
pixmaps/rcm_ccw.xpm \
|
pixmaps/rcm_ccw.xpm \
|
||||||
pixmaps/rcm_cw.xpm
|
pixmaps/rcm_cw.xpm \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = script-fu
|
libexec_PROGRAMS = script-fu
|
||||||
|
|
||||||
script_fu_SOURCES = \
|
script_fu_SOURCES = @STRIP_BEGIN@ \
|
||||||
interp_regex.c \
|
interp_regex.c \
|
||||||
interp_slib.c \
|
interp_slib.c \
|
||||||
interp_sliba.c \
|
interp_sliba.c \
|
||||||
|
@ -30,18 +30,26 @@ script_fu_SOURCES = \
|
||||||
script-fu-enums.h \
|
script-fu-enums.h \
|
||||||
siod.h \
|
siod.h \
|
||||||
siodp.h \
|
siodp.h \
|
||||||
$(regex_sources)
|
$(regex_sources) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = @STRIP_BEGIN@ \
|
||||||
regexrepl.c \
|
regexrepl.c \
|
||||||
regexrepl.h
|
regexrepl.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DREGEX_MALLOC \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/plug-ins/dbbrowser/dbbrowser_utils.o \
|
$(top_builddir)/plug-ins/dbbrowser/dbbrowser_utils.o \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
|
@ -49,11 +57,8 @@ LDADD = \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DREGEX_MALLOC \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,49 +2,54 @@
|
||||||
|
|
||||||
libexecdir = $(gimpplugindir)/plug-ins
|
libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
EXTRA_DIST = README \
|
|
||||||
README.limn
|
|
||||||
|
|
||||||
libexec_PROGRAMS = sel2path
|
libexec_PROGRAMS = sel2path
|
||||||
|
|
||||||
sel2path_SOURCES = \
|
sel2path_SOURCES = @STRIP_BEGIN@ \
|
||||||
bitmap.h \
|
bitmap.h \
|
||||||
bounding-box.h \
|
bounding-box.h \
|
||||||
curve.c \
|
curve.c \
|
||||||
curve.h \
|
curve.h \
|
||||||
edge.c \
|
edge.c \
|
||||||
edge.h \
|
edge.h \
|
||||||
fit.c \
|
fit.c \
|
||||||
fit.h \
|
fit.h \
|
||||||
global.h \
|
global.h \
|
||||||
math.c \
|
math.c \
|
||||||
pxl-outline.c \
|
pxl-outline.c \
|
||||||
pxl-outline.h \
|
pxl-outline.h \
|
||||||
sel2path.c \
|
sel2path.c \
|
||||||
sel2path_adv_dialog.c \
|
sel2path_adv_dialog.c \
|
||||||
sel2path.h \
|
sel2path.h \
|
||||||
spline.c \
|
spline.c \
|
||||||
spline.h \
|
spline.h \
|
||||||
types.h \
|
types.h \
|
||||||
vector.c \
|
vector.c \
|
||||||
vector.h
|
vector.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
EXTRA_DIST = \
|
||||||
|
README \
|
||||||
|
README.limn
|
||||||
|
|
||||||
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
LDADD = \
|
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,27 +4,31 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = sgi
|
libexec_PROGRAMS = sgi
|
||||||
|
|
||||||
sgi_SOURCES = \
|
sgi_SOURCES = @STRIP_BEGIN@ \
|
||||||
sgi.c \
|
sgi.c \
|
||||||
sgi.h \
|
sgi.h \
|
||||||
sgilib.c
|
sgilib.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -8,18 +8,23 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = webbrowser
|
libexec_PROGRAMS = webbrowser
|
||||||
|
|
||||||
webbrowser_SOURCES = \
|
webbrowser_SOURCES = @STRIP_BEGIN@ \
|
||||||
webbrowser.c
|
webbrowser.c \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
EXTRA_DIST = $(scriptdata_DATA)
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
|
@ -27,9 +32,8 @@ LDADD = \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(LIBXMU) \
|
$(LIBXMU) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
EXTRA_DIST = $(scriptdata_DATA)
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -4,21 +4,29 @@ libexecdir = $(gimpplugindir)/plug-ins
|
||||||
|
|
||||||
libexec_PROGRAMS = xjt
|
libexec_PROGRAMS = xjt
|
||||||
|
|
||||||
EXTRA_DIST = README README_xjt_fileformat.txt
|
EXTRA_DIST = \
|
||||||
|
README \
|
||||||
|
README_xjt_fileformat.txt
|
||||||
|
|
||||||
xjt_SOURCES = \
|
xjt_SOURCES = @STRIP_BEGIN@ \
|
||||||
xjt.c \
|
xjt.c \
|
||||||
xjpeg.c \
|
xjpeg.c \
|
||||||
xjpeg.h \
|
xjpeg.h \
|
||||||
xpdb_calls.c \
|
xpdb_calls.c \
|
||||||
xpdb_calls.h
|
xpdb_calls.h \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
||||||
|
-DLOCALEDIR=\""$(localedir)"\" \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
LDADD = \
|
LDADD = @STRIP_BEGIN@ \
|
||||||
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||||
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
||||||
|
@ -26,10 +34,8 @@ LDADD = \
|
||||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(LIBJPEG) \
|
$(LIBJPEG) \
|
||||||
$(INTLLIBS)
|
$(INTLLIBS) \
|
||||||
|
@STRIP_END@
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DLOCALEDIR=\""$(localedir)"\"
|
|
||||||
|
|
||||||
.PHONY: files
|
.PHONY: files
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
*.mo
|
*.mo
|
||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
Makefile.in.in
|
|
||||||
POTFILES
|
POTFILES
|
||||||
cat-id-tbl.c
|
cat-id-tbl.c
|
||||||
*.pot
|
*.pot
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
2001-06-07 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* Makefile.in.in: some build fixes.
|
||||||
|
|
||||||
|
* zh_TW.Big5.po: new dummy file.
|
||||||
|
|
||||||
2001-05-21 Pablo Saratxaga <pablo@mandrakesoft.com>
|
2001-05-21 Pablo Saratxaga <pablo@mandrakesoft.com>
|
||||||
|
|
||||||
* ca.po,fr;po,ga.po,sk.po,ro.po: fixed headers and syntax errors
|
* ca.po,fr;po,ga.po,sk.po,ro.po: fixed headers and syntax errors
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# but which still want to provide support for the GNU gettext functionality.
|
# but which still want to provide support for the GNU gettext functionality.
|
||||||
# Please note that the actual code is *not* freely available.
|
# Please note that the actual code is *not* freely available.
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = gimp-libgimp
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
@ -22,7 +22,7 @@ exec_prefix = @exec_prefix@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
localedir = $(datadir)/locale
|
localedir = $(datadir)/locale
|
||||||
gettextsrcdir = $(datadir)/gettext/po
|
gettextsrcdir = $(datadir)/gettext/po
|
||||||
subdir = po
|
subdir = po-libgimp
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
|
@ -0,0 +1,227 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: gimp-libgimp 1.3.0\n"
|
||||||
|
"POT-Creation-Date: 2001-06-06 22:45+0200\n"
|
||||||
|
"PO-Revision-Date: 2001-06-07 01:00+01\n"
|
||||||
|
"Last-Translator: AUTHOR <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: Chinese <zh@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=big5\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:160 libgimp/gimpexport.c:187
|
||||||
|
msgid "can't handle layers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:161 libgimp/gimpexport.c:170
|
||||||
|
msgid "Merge Visible Layers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:169 libgimp/gimpexport.c:178
|
||||||
|
msgid "can only handle layers as animation frames"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:170 libgimp/gimpexport.c:179
|
||||||
|
msgid "Save as Animation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:179 libgimp/gimpexport.c:188 libgimp/gimpexport.c:197
|
||||||
|
msgid "Flatten Image"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:196
|
||||||
|
msgid "can't handle transparency"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:205
|
||||||
|
msgid "can only handle RGB images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:206 libgimp/gimpexport.c:234 libgimp/gimpexport.c:243
|
||||||
|
msgid "Convert to RGB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:214
|
||||||
|
msgid "can only handle grayscale images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:215 libgimp/gimpexport.c:234 libgimp/gimpexport.c:255
|
||||||
|
msgid "Convert to Grayscale"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:223
|
||||||
|
msgid "can only handle indexed images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:224 libgimp/gimpexport.c:243 libgimp/gimpexport.c:253
|
||||||
|
msgid ""
|
||||||
|
"Convert to Indexed using default settings\n"
|
||||||
|
"(Do it manually to tune the result)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:233
|
||||||
|
msgid "can only handle RGB or grayscale images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:242
|
||||||
|
msgid "can only handle RGB or indexed images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:252
|
||||||
|
msgid "can only handle grayscale or indexed images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:263
|
||||||
|
msgid "needs an alpha channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:264
|
||||||
|
msgid "Add Alpha Channel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#.
|
||||||
|
#. * Plug-ins have called gtk_init () before calling gimp_export ().
|
||||||
|
#. * Otherwise bad things will happen now!!
|
||||||
|
#.
|
||||||
|
#. the dialog
|
||||||
|
#: libgimp/gimpexport.c:333
|
||||||
|
msgid "Export File"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:338
|
||||||
|
msgid "Export"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:340
|
||||||
|
msgid "Ignore"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:342 libgimpwidgets/gimpquerybox.c:208
|
||||||
|
#: libgimpwidgets/gimpquerybox.c:264 libgimpwidgets/gimpquerybox.c:322
|
||||||
|
#: libgimpwidgets/gimpquerybox.c:387 libgimpwidgets/gimpunitmenu.c:510
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpexport.c:357
|
||||||
|
msgid ""
|
||||||
|
"Your image should be exported before it can be saved for the following "
|
||||||
|
"reasons:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. the footline
|
||||||
|
#: libgimp/gimpexport.c:420
|
||||||
|
msgid "The export conversion won't modify your original image."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. pseudo unit
|
||||||
|
#: libgimp/gimpunit.c:52
|
||||||
|
msgid "pixel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpunit.c:52
|
||||||
|
msgid "pixels"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. standard units
|
||||||
|
#: libgimp/gimpunit.c:55
|
||||||
|
msgid "inch"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpunit.c:55
|
||||||
|
msgid "inches"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpunit.c:56
|
||||||
|
msgid "millimeter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpunit.c:56
|
||||||
|
msgid "millimeters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. professional units
|
||||||
|
#: libgimp/gimpunit.c:59
|
||||||
|
msgid "point"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpunit.c:59
|
||||||
|
msgid "points"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpunit.c:60
|
||||||
|
msgid "pica"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpunit.c:60
|
||||||
|
msgid "picas"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimp/gimpunit.c:67
|
||||||
|
msgid "percent"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpcolorbutton.c:71
|
||||||
|
msgid "/Use Foreground Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpcolorbutton.c:72
|
||||||
|
msgid "/Use Background Color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpfileselection.c:391
|
||||||
|
msgid "Select File"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpquerybox.c:208 libgimpwidgets/gimpquerybox.c:264
|
||||||
|
#: libgimpwidgets/gimpquerybox.c:322 libgimpwidgets/gimpquerybox.c:387
|
||||||
|
#: libgimpwidgets/gimpunitmenu.c:508
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpunitmenu.c:246
|
||||||
|
msgid "More..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpunitmenu.c:503
|
||||||
|
msgid "Unit Selection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpunitmenu.c:540
|
||||||
|
msgid "Unit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpunitmenu.c:541
|
||||||
|
msgid "Factor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpwidgets.c:722
|
||||||
|
msgid ""
|
||||||
|
"If the \"Time\" button is not pressed, use this value for random number "
|
||||||
|
"generator seed - this allows you to repeat a given \"random\" operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpwidgets.c:727
|
||||||
|
msgid "Time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpwidgets.c:736
|
||||||
|
msgid ""
|
||||||
|
"Seed random number generator from the current time - this guarantees a "
|
||||||
|
"reasonable randomization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpwidgets.c:1049
|
||||||
|
msgid "Bytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpwidgets.c:1050
|
||||||
|
msgid "KiloBytes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: libgimpwidgets/gimpwidgets.c:1051
|
||||||
|
msgid "MegaBytes"
|
||||||
|
msgstr ""
|
|
@ -1,3 +1,9 @@
|
||||||
|
2001-06-07 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* Makefile.in.in: some build fixes.
|
||||||
|
|
||||||
|
* zh_TW.Big5.po: new dummy file.
|
||||||
|
|
||||||
2001-05-22 Stanislav Brabec <utx@penguin.cz>
|
2001-05-22 Stanislav Brabec <utx@penguin.cz>
|
||||||
|
|
||||||
* cs.po: Updated translation.
|
* cs.po: Updated translation.
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# but which still want to provide support for the GNU gettext functionality.
|
# but which still want to provide support for the GNU gettext functionality.
|
||||||
# Please note that the actual code is *not* freely available.
|
# Please note that the actual code is *not* freely available.
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = gimp-std-plugins
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
@ -22,7 +22,7 @@ exec_prefix = @exec_prefix@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
localedir = $(datadir)/locale
|
localedir = $(datadir)/locale
|
||||||
gettextsrcdir = $(datadir)/gettext/po
|
gettextsrcdir = $(datadir)/gettext/po
|
||||||
subdir = po
|
subdir = po-plug-ins
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,3 +1,9 @@
|
||||||
|
2001-06-07 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* Makefile.in.in: some build fixes.
|
||||||
|
|
||||||
|
* zh_TW.Big5.po: new dummy file.
|
||||||
|
|
||||||
2001-05-21 Pablo Saratxaga <pablo@mandrakesoft.com>
|
2001-05-21 Pablo Saratxaga <pablo@mandrakesoft.com>
|
||||||
|
|
||||||
* ca.po: Updated Catalan file
|
* ca.po: Updated Catalan file
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# but which still want to provide support for the GNU gettext functionality.
|
# but which still want to provide support for the GNU gettext functionality.
|
||||||
# Please note that the actual code is *not* freely available.
|
# Please note that the actual code is *not* freely available.
|
||||||
|
|
||||||
PACKAGE = @PACKAGE@
|
PACKAGE = gimp-script-fu
|
||||||
VERSION = @VERSION@
|
VERSION = @VERSION@
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
@ -22,7 +22,7 @@ exec_prefix = @exec_prefix@
|
||||||
datadir = @datadir@
|
datadir = @datadir@
|
||||||
localedir = $(datadir)/locale
|
localedir = $(datadir)/locale
|
||||||
gettextsrcdir = $(datadir)/gettext/po
|
gettextsrcdir = $(datadir)/gettext/po
|
||||||
subdir = po
|
subdir = po-script-fu
|
||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
INSTALL_DATA = @INSTALL_DATA@
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
@ -33,6 +33,7 @@ CC = @CC@
|
||||||
GMSGFMT = @GMSGFMT@
|
GMSGFMT = @GMSGFMT@
|
||||||
MSGFMT = @MSGFMT@
|
MSGFMT = @MSGFMT@
|
||||||
XGETTEXT = @XGETTEXT@
|
XGETTEXT = @XGETTEXT@
|
||||||
|
SXGETTEXT = $(srcdir)/script-fu-xgettext
|
||||||
MSGMERGE = msgmerge
|
MSGMERGE = msgmerge
|
||||||
|
|
||||||
DEFS = @DEFS@
|
DEFS = @DEFS@
|
||||||
|
@ -80,7 +81,7 @@ all-no:
|
||||||
# have been downloaded.
|
# have been downloaded.
|
||||||
|
|
||||||
$(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in
|
$(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in
|
||||||
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
|
$(SXGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \
|
||||||
--add-comments --keyword=_ --keyword=N_ \
|
--add-comments --keyword=_ --keyword=N_ \
|
||||||
--files-from=$(srcdir)/POTFILES.in \
|
--files-from=$(srcdir)/POTFILES.in \
|
||||||
&& test ! -f $(PACKAGE).po \
|
&& test ! -f $(PACKAGE).po \
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,15 +1,19 @@
|
||||||
|
## Process this file with automake to produce Makefile.in
|
||||||
|
|
||||||
if WITH_PDBGEN
|
if WITH_PDBGEN
|
||||||
D_pdbgen=pdbgen
|
D_pdbgen = pdbgen
|
||||||
else
|
else
|
||||||
D_pdbgen=
|
D_pdbgen =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if WITH_AUTHORSGEN
|
if WITH_AUTHORSGEN
|
||||||
D_authorgen=authorsgen
|
D_authorgen = authorsgen
|
||||||
else
|
else
|
||||||
D_authorgen=
|
D_authorgen =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = $(D_pdbgen) $(D_authorgen)
|
||||||
|
|
||||||
bin_PROGRAMS = $(GIMP_REMOTE)
|
bin_PROGRAMS = $(GIMP_REMOTE)
|
||||||
|
|
||||||
EXTRA_PROGRAMS = \
|
EXTRA_PROGRAMS = \
|
||||||
|
@ -18,15 +22,16 @@ EXTRA_PROGRAMS = \
|
||||||
|
|
||||||
gimp_remote_SOURCES = gimp-remote.c
|
gimp_remote_SOURCES = gimp-remote.c
|
||||||
|
|
||||||
gimp_remote_LDADD = \
|
gimp_remote_LDADD = @STRIP_BEGIN@ \
|
||||||
$(GTK_LIBS) \
|
$(GTK_LIBS) \
|
||||||
$(LIBXMU)
|
$(LIBXMU) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
kernelgen_SOURCES = kernelgen.c
|
kernelgen_SOURCES = kernelgen.c
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = @STRIP_BEGIN@ \
|
||||||
-I$(top_srcdir) \
|
-I$(top_srcdir) \
|
||||||
$(GTK_CFLAGS) \
|
$(GTK_CFLAGS) \
|
||||||
-I$(includedir)
|
-I$(includedir) \
|
||||||
|
@STRIP_END@
|
||||||
|
|
||||||
SUBDIRS = $(D_pdbgen) $(D_authorgen)
|
|
||||||
|
|
Loading…
Reference in New Issue