~larsu/ubuntu-mono/messaging-menu-status-emblems

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Paul Sladen
  • Date: 2011-01-06 02:39:02 UTC
  • Revision ID: sladen@ubuntu.com-20110106023902-xvqtjf8ssfzyyf4w
Makefile: replace postinst/prerm with Makefile

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
THEME = dark light
 
2
SIZES = 22 24
 
3
ICONS = nm-device-wired \
 
4
        nm-signal-00 nm-signal-25 nm-signal-50 nm-signal-75 nm-signal-100 \
 
5
        gsm-3g-none gsm-3g-low gsm-3g-medium gsm-3g-high gsm-3g-full
 
6
PADLOCK = nm-vpn-lock.svg
 
7
FILES = $(foreach t,$(THEME),$(foreach s,$(SIZES),$(foreach i,$(ICONS),ubuntu-mono-$t/status/$s/$i-secure.svg)))
 
8
 
 
9
all: $(FILES)
 
10
 
 
11
%-secure.svg: %.svg 
 
12
        ./scavenge.py -o $@ $^ $(dir $@)$(PADLOCK)
 
13
 
 
14
clean:
 
15
        -rm -f $(FILES)
 
16
 
 
17
.PHONY: all clean