mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-08 00:20:59 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3877 e7d03fd6-7b0d-0410-9947-9c21f3af8025
31 lines
567 B
Makefile
31 lines
567 B
Makefile
# refresh media files
|
|
|
|
# base directory of oxygen icon set checkout
|
|
OXYGEN = /home/calvin/src/oxygen-gitsvn/16x16
|
|
|
|
ICONS = \
|
|
cancel.png \
|
|
options.png \
|
|
preferences.png \
|
|
start.png \
|
|
stop.png \
|
|
|
|
all: $(ICONS)
|
|
|
|
start.png: $(OXYGEN)/actions/media-playback-start.png
|
|
cp $< $@
|
|
|
|
stop.png: $(OXYGEN)/actions/media-playback-stop.png
|
|
cp $< $@
|
|
|
|
cancel.png: $(OXYGEN)/actions/process-stop.png
|
|
cp $< $@
|
|
|
|
options.png: $(OXYGEN)/categories/preferences-system-network.png
|
|
cp $< $@
|
|
|
|
preferences.png: $(OXYGEN)/categories/preferences-other.png
|
|
cp $< $@
|
|
|
|
clean:
|
|
rm -f *.png
|