From 0b52663fb559ad6dfcfb70003164456ce820aba2 Mon Sep 17 00:00:00 2001 From: "Anton V. Boyarshinov" Date: Tue, 23 Jun 2009 14:42:17 +0400 Subject: [PATCH] Makefile.in: cleanup --- Makefile.in | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile.in b/Makefile.in index 1a23934..7ed1fb4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -8,13 +8,12 @@ all: cp -a bootloader/config design-bootloader-source/ cp -a bootloader/gfxboot.cfg design-bootloader-source/data-install/ cp -a bootloader/gfxboot.cfg design-bootloader-source/data-boot/ - convert images/boot.jpg -resize 800x600 -fill '#c62530' -font /usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf -style Normal -weight Normal -pointsize 20 -gravity northeast -draw 'text 25,25 "@STATUS@"' boot.jpg - convert images/boot.jpg -resize 800x600 -fill '#c62530' -font /usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf -style Normal -weight Normal -pointsize 20 -gravity northeast -draw 'text 25,25 "@STATUS@"' boot-800x600.jpg + for size in 1024x768 800x600 640x480; do \ + convert images/boot.jpg -resize "$$size!" -fill '#c62530' -font /usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf -style Normal -weight Normal -pointsize 20 -gravity northeast -draw 'text 25,25 "@STATUS@"' boot-$$size.jpg ;\ + cp -al boot-$$size.jpg bootsplash/images/silent-$$size.jpg ;\ + done cp -al boot-800x600.jpg design-bootloader-source/data-boot/back.jpg cp -al boot-800x600.jpg design-bootloader-source/data-install/back.jpg - cp -al boot.jpg bootsplash/images/silent-1024x768.jpg - convert -resize '800x600!' bootsplash/images/silent-1024x768.jpg bootsplash/images/silent-800x600.jpg - convert -resize '640x480!' bootsplash/images/silent-800x600.jpg bootsplash/images/silent-640x480.jpg # background convert images/background.png -fill '#c62530' -font /usr/share/fonts/ttf/dejavu/DejaVuSansCondensed-Bold.ttf -style Normal -weight Normal -pointsize 20 -gravity northeast -draw 'text 25,25 "@STATUS@"' background.png cp -al background.png graphics/backgrounds/default.png