## Process this file with automake to produce Makefile.in SUBDIRS = autotools libvo src po include docs intl EXTRA_DIST = autogen.sh GOPchop.glade GOPchop.spec install-data-local: @$(NORMAL_INSTALL) if test -d $(srcdir)/pixmaps; then \ $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \ for pixmap in $(srcdir)/pixmaps/*; do \ if test -f $$pixmap; then \ $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \ fi \ done \ fi uninstall-local: @$(NORMAL_UNINSTALL) if test -d $(srcdir)/pixmaps; then \ for pixmap in `(cd $(srcdir)/pixmaps && echo *)`; do \ if test -f $(srcdir)/pixmaps/$$pixmap; then \ rm -f $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE)/$$pixmap; \ fi \ done \ fi dist-hook: if test -d $(srcdir)/pixmaps; then \ mkdir $(distdir)/pixmaps; \ for pixmap in $(srcdir)/pixmaps/*; do \ if test -f $$pixmap; then \ cp -p $$pixmap $(distdir)/pixmaps; \ fi \ done \ fi