root/sweep/branches/sweep-info-panel/Makefile.am

Revision 473, 1.8 kB (checked in by radekk, 5 years ago)

Add marker colors icons.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 ## Process this file with automake to produce Makefile.in
2
3 ACLOCAL_AMFLAGS = -I m4
4
5 SUBDIRS = m4 intl po include src plugins doc
6
7 pkgdata_DATA =  sweep_splash.png \
8                 pixmaps/done.png \
9                 pixmaps/sample.png \
10                 pixmaps/select.png \
11                 pixmaps/undo.png \
12                 pixmaps/marker.png \
13                 pixmaps/select-del-ico.png \
14                 pixmaps/select-add-ico.png \
15                 pixmaps/marker-del-ico.png \
16                 pixmaps/marker-add-ico.png \
17                 pixmaps/undo-revall-ico.png \
18                 pixmaps/undo-rev-ico.png \
19                 pixmaps/marker-img0.png \
20                 pixmaps/marker-img1.png \
21                 pixmaps/marker-img2.png \
22                 pixmaps/marker-img3.png \
23                 pixmaps/marker-img4.png \
24                 pixmaps/marker-img5.png \
25                 pixmaps/marker-img6.png \
26                 pixmaps/marker-img7.png \
27                 pixmaps/marker-img8.png \
28                 pixmaps/marker-img9.png \
29                 pixmaps/marker-img10.png
30                
31
32 desktop_DATA = sweep.desktop
33 desktopdir = $(datadir)/applications
34
35 pixmapdir = $(datadir)/pixmaps
36 pixmap_DATA = sweep.svg
37
38 EXTRA_DIST = config.rpath mkinstalldirs  $(desktop_DATA) $(pkgdata_DATA)  $(pixmap_DATA) \
39              sweep.spec README.Solaris README.ALSA README.i18n TODO
40
41 MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in \
42                        stamp-h.in \
43                        config.guess mkinstalldirs \
44                        missing install-sh config.sub ltconfig \
45                        ltmain.sh acinclude.m4
46
47 #install-data-local:
48 #       @$(NORMAL_INSTALL)
49 #       if test -d $(srcdir)/pixmaps; then \
50 #         $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
51 #         for pixmap in $(srcdir)/pixmaps/*; do \
52 #           if test -f $$pixmap; then \
53 #             $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
54 #           fi \
55 #         done \
56 #       fi
57
58 dist-hook:
59         if test -d pixmaps; then \
60           mkdir $(distdir)/pixmaps; \
61           for pixmap in pixmaps/*; do \
62             if test -f $$pixmap; then \
63               cp -p $$pixmap $(distdir)/pixmaps; \
64             fi \
65           done \
66         fi
Note: See TracBrowser for help on using the browser.