1## Process this file with automake to produce Makefile.in
2
3ACLOCAL_AMFLAGS = -I m4
4
5SUBDIRS = m4 intl po include src plugins doc
6
7pkgdata_DATA = sweep_splash.png
8
9desktop_DATA = sweep.desktop
10desktopdir = $(datadir)/applications
11
12pixmapdir = $(datadir)/pixmaps
13pixmap_DATA = sweep.svg
14
15EXTRA_DIST = config.rpath mkinstalldirs  $(desktop_DATA) $(pkgdata_DATA)  $(pixmap_DATA) \
16             sweep.spec README.Solaris README.ALSA README.i18n TODO
17
18MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in \
19                       stamp-h.in \
20                       config.guess mkinstalldirs \
21                       missing install-sh config.sub ltconfig \
22                       ltmain.sh acinclude.m4
23
24#install-data-local:
25#	@$(NORMAL_INSTALL)
26#	if test -d $(srcdir)/pixmaps; then \
27#	  $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
28#	  for pixmap in $(srcdir)/pixmaps/*; do \
29#	    if test -f $$pixmap; then \
30#	      $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
31#	    fi \
32#	  done \
33#	fi
34
35dist-hook:
36	if test -d pixmaps; then \
37	  mkdir $(distdir)/pixmaps; \
38	  for pixmap in pixmaps/*; do \
39	    if test -f $$pixmap; then \
40	      cp -p $$pixmap $(distdir)/pixmaps; \
41	    fi \
42	  done \
43	fi
44