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.
62 lines
1.4 KiB
Makefile
62 lines
1.4 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
libexec_PROGRAMS = MapObject
|
|
|
|
MapObject_SOURCES = @STRIP_BEGIN@ \
|
|
amb1.xpm \
|
|
amb2.xpm \
|
|
arcball.c \
|
|
arcball.h \
|
|
diffint1.xpm \
|
|
diffint2.xpm \
|
|
diffref1.xpm \
|
|
diffref2.xpm \
|
|
high1.xpm \
|
|
high2.xpm \
|
|
mapobject_apply.c \
|
|
mapobject_apply.h \
|
|
mapobject_image.c \
|
|
mapobject_image.h \
|
|
mapobject_main.c \
|
|
mapobject_main.h \
|
|
mapobject_preview.c \
|
|
mapobject_preview.h \
|
|
mapobject_shade.c \
|
|
mapobject_shade.h \
|
|
mapobject_ui.c \
|
|
mapobject_ui.h \
|
|
specref1.xpm \
|
|
specref2.xpm \
|
|
@STRIP_END@
|
|
|
|
AM_CPPFLAGS = @STRIP_BEGIN@ \
|
|
-DLOCALEDIR=\""$(localedir)"\" \
|
|
@STRIP_END@
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/plug-ins/libgck \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir) \
|
|
@STRIP_END@
|
|
|
|
LDADD = @STRIP_BEGIN@ \
|
|
$(top_builddir)/libgimp/libgimpui-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimp/libgimp-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la \
|
|
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
|
$(top_builddir)/plug-ins/libgck/gck/libgck-$(LT_RELEASE).la \
|
|
$(GTK_LIBS) \
|
|
$(INTLLIBS) \
|
|
@STRIP_END@
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|