1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
## Process this file with automake to produce Makefile.in
#all other files that are distributed
EXTRA_DIST=gtkmorph/ChangeLog AUTHORS INSTALL README gimp-README TODO HISTORY \
configure \
po/gtkmorph.glade.c \
Makefile.conf gtkmorph.glade
# it is copied by some glade autoconf stuff: pixmaps/howmany.xpm \
# it is obsolete: strings.gettext ; now we use po/gtkmorph.glade.c
include Makefile.conf
if COND_MORPH
SUBDIRS1= morph
else
SUBDIRS1=
endif
if COND_XMORPH
SUBDIRS2= $(SUBDIRS1) xmorph
else
SUBDIRS2=
endif
if COND_GTKMORPH
SUBDIRS3=$(SUBDIRS2) gtkmorph
else
SUBDIRS3=$(SUBDIRS2)
endif
if COND_TKMORPH
SUBDIRS4=$(SUBDIRS3) tkmorph
else
SUBDIRS4=$(SUBDIRS3)
endif
SUBDIRS= intl po doc libmorph $(SUBDIRS4)
## added by glade, to automatically support pixmaps in GTK widgets
install-data-local:
@$(NORMAL_INSTALL)
if test -d $(srcdir)/pixmaps; then \
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
for pixmap in $(srcdir)/pixmaps/*; do \
if test -f $$pixmap; then \
$(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
fi \
done \
fi
dist-hook:
if test -d pixmaps; then \
mkdir $(distdir)/pixmaps; \
for pixmap in pixmaps/*; do \
if test -f $$pixmap; then \
cp -p $$pixmap $(distdir)/pixmaps; \
fi \
done \
fi
|