~ubuntu-branches/ubuntu/maverick/gimp/maverick-updates

« back to all changes in this revision

Viewing changes to plug-ins/rcm/images/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-12-09 19:44:52 UTC
  • Revision ID: james.westby@ubuntu.com-20051209194452-yggpemjlofpjqyf4
Tags: upstream-2.2.9
ImportĀ upstreamĀ versionĀ 2.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
STOCK_IMAGES = \
 
4
        rcm-360.png     \
 
5
        rcm-a-b.png     \
 
6
        rcm-ccw.png     \
 
7
        rcm-cw.png
 
8
 
 
9
EXTRA_DIST = $(STOCK_IMAGES)
 
10
 
 
11
noinst_DATA = rcm-stock-pixbufs.h
 
12
CLEANFILES = $(noinst_DATA) stock-icons.list
 
13
 
 
14
stock-icons.list: $(STOCK_IMAGES) Makefile.am
 
15
        ( rm -f $@; \
 
16
          for image in $(STOCK_IMAGES); do \
 
17
            echo $$image | \
 
18
              sed -e 's|.*/||' -e 's|-|_|g' -e 's|\.png$$||' >> $@; \
 
19
            echo "  $(srcdir)/$$image" >> $@; \
 
20
          done )
 
21
 
 
22
$(srcdir)/rcm-stock-pixbufs.h: stock-icons.list
 
23
        gdk-pixbuf-csource --raw --build-list `cat stock-icons.list` > $(@F)