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

81 by Paul Sladen
Makefile: replace postinst/prerm with Makefile
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