1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
-
- size = 22x22
- context = status
-
- iconsdir = $(themedir)/$(size)/$(context)
-
- icons_DATA = \
- audio-volume-high.png \
- audio-volume-low.png \
- audio-volume-medium.png \
- audio-volume-muted.png \
- battery-caution.png \
- dialog-error.png \
- dialog-information.png \
- dialog-warning.png \
- folder-drag-accept.png \
- folder-open.png \
- folder-visiting.png \
- image-loading.png \
- image-missing.png \
- mail-attachment.png \
- network-error.png \
- network-idle.png \
- network-offline.png \
- network-receive.png \
- network-transmit.png \
- network-transmit-receive.png \
- network-wireless-encrypted.png \
- printer-error.png \
- software-update-available.png \
- software-update-urgent.png \
- user-trash-full.png \
- weather-clear.png \
- weather-clear-night.png \
- weather-few-clouds.png \
- weather-few-clouds-night.png \
- weather-overcast.png \
- weather-severe-alert.png \
- weather-showers.png \
- weather-showers-scattered.png \
- weather-snow.png \
- weather-storm.png
-
- EXTRA_DIST = \
- $(icons_DATA)
-
- install-data-local: install-iconsDATA
- (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
- if ENABLE_ICON_FRAMING
- $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context)
- (cd $(DESTDIR)$(themedir) && \
- for icon in $(icons_DATA); do \
- $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \
- done)
- (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context))
- endif
-
- uninstall-local:
- rm -rf $(themedir)/24x24/$(context)
|