~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to icons/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2006-11-11 10:32:06 UTC
  • Revision ID: james.westby@ubuntu.com-20061111103206-f3p0r9g0vq44rp3r
Tags: upstream-3.0.PRE5
ImportĀ upstreamĀ versionĀ 3.0.PRE5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: Makefile.am,v 1.11 2003/05/21 08:24:26 hno Exp $
 
2
#
 
3
 
 
4
ICON1   =       anthony-binhex.gif
 
5
ICON2   =       anthony-bomb.gif \
 
6
                anthony-box.gif \
 
7
                anthony-box2.gif \
 
8
                anthony-c.gif \
 
9
                anthony-compressed.gif \
 
10
                anthony-dir.gif \
 
11
                anthony-dirup.gif \
 
12
                anthony-dvi.gif \
 
13
                anthony-f.gif \
 
14
                anthony-image.gif \
 
15
                anthony-image2.gif \
 
16
                anthony-layout.gif \
 
17
                anthony-link.gif \
 
18
                anthony-movie.gif \
 
19
                anthony-pdf.gif \
 
20
                anthony-portal.gif \
 
21
                anthony-ps.gif \
 
22
                anthony-quill.gif \
 
23
                anthony-script.gif \
 
24
                anthony-sound.gif \
 
25
                anthony-tar.gif \
 
26
                anthony-tex.gif \
 
27
                anthony-text.gif \
 
28
                anthony-unknown.gif \
 
29
                anthony-xbm.gif \
 
30
                anthony-xpm.gif
 
31
 
 
32
icondir = $(datadir)/icons
 
33
icon_DATA = $(ICON1) $(ICON2)
 
34
EXTRA_DIST = $(ICON1) $(ICON2) icons.shar
 
35
DISTCLEANFILES = 
 
36
 
 
37
# The magic with ICON1,2 is to have a single dependency
 
38
# for all of the icons.
 
39
$(ICON2): $(ICON1)
 
40
 
 
41
$(ICON1):
 
42
        @if [ ! -f "$(srcdir)/$(ICON1)" ]; then \
 
43
            $(SHELL) "$(srcdir)/icons.shar" ; \
 
44
            touch -r "$(srcdir)/icons.shar" *.gif ; \
 
45
        fi
 
46
 
 
47
update-icons.shar:
 
48
        shar --no-timestamp $(ICON1) $(ICON2) > $@ 2>/dev/null || \
 
49
        shar $(ICON1) $(ICON2) > $@
 
50
 
 
51
## DEFAULT_ICON_DIR        = $(sysconfdir)/icons
 
52