]> Git Repo - qemu.git/blob - ui/icons/Makefile
works with less than base ISA qemu-system-riscv32 -M virt -bios none -kernel output...
[qemu.git] / ui / icons / Makefile
1
2 # Regenerate bitmaps from the SVG using inkscape CLI export
3 # and ImageMagick. Don't use ImageMagick for the initial
4 # SVG conversion, since it merely calls inkscape, but uses
5 # 96 DPI res resulting in poor quality output.
6
7 regenerate:
8         for s in 16 24 32 48 64 128 256 512; \
9         do \
10             inkscape --without-gui --export-png=qemu_$${s}x$${s}.png \
11                 --export-width=$$s --export-height=$$s qemu.svg ; \
12         done
13         convert qemu_32x32.png qemu_32x32.bmp
This page took 0.025253 seconds and 4 git commands to generate.