## Process this file with automake to produce Makefile.in SUBDIRS = src po doc debian EXTRA_DIST = \ autogen.sh liteamp.png liteamp.desktop liteamp.spec icon_DATA = liteamp.png icondir = $(datadir)/pixmaps util_DATA = liteamp.desktop utildir = $(datadir)/applications 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 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