diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2015-05-02 10:31:41 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2015-05-02 10:52:30 +0200 |
commit | c9ef1e6ae94381bc10c5d62f5e08b95102cf8ad9 (patch) | |
tree | 861001ae0cf084a92008f9be71853be08fd6fb56 /Makefile | |
parent | d0ebdea628307f0504f6998aa2467c78bedb85ee (diff) | |
download | theme-c9ef1e6ae94381bc10c5d62f5e08b95102cf8ad9.tar theme-c9ef1e6ae94381bc10c5d62f5e08b95102cf8ad9.tar.gz theme-c9ef1e6ae94381bc10c5d62f5e08b95102cf8ad9.tar.bz2 theme-c9ef1e6ae94381bc10c5d62f5e08b95102cf8ad9.tar.xz theme-c9ef1e6ae94381bc10c5d62f5e08b95102cf8ad9.zip |
Fix indentation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -15,10 +15,10 @@ scripts: @/bin/cp -f gimp/scripts/gimp-normalize-to-bootsplash.scm tmp-gimp-command @cat gimp/scripts/gimp-convert-to-jpeg.scm >> tmp-gimp-command @for i in */gfxboot/*.png ; do \ - echo \(gimp-normalize-to-bootsplash 1.0 \"$$i\" \"`dirname $$i`/`basename $$i .png`.jpg\"\) >> tmp-gimp-command; \ + echo \(gimp-normalize-to-bootsplash 1.0 \"$$i\" \"`dirname $$i`/`basename $$i .png`.jpg\"\) >> tmp-gimp-command; \ done @for i in */background/*.png ; do \ - echo \(gimp-convert-to-jpeg 0.98 \"$$i\" \"`dirname $$i`/`basename $$i .png`.jpg\"\) >> tmp-gimp-command; \ + echo \(gimp-convert-to-jpeg 0.98 \"$$i\" \"`dirname $$i`/`basename $$i .png`.jpg\"\) >> tmp-gimp-command; \ done @echo \(gimp-quit 1\) >> tmp-gimp-command @echo running gimp to convert images @@ -34,20 +34,20 @@ install: install -m 644 extra-backgrounds/*.jpg $(DESTDIR)$(sharedir)/mga/backgrounds install -m644 */background/*.jpg $(DESTDIR)$(sharedir)/mga/backgrounds @for t in $(THEMES); do \ - set -x; set -e; \ - install -d $(DESTDIR)$(sharedir)/plymouth/themes/$$t; \ - install -m644 common/plymouth/*.script $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ - install -m644 common/plymouth/*.png $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ - install -m644 $$t/plymouth/*.plymouth $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ - install -m644 $$t/plymouth/*.png $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ - install -m644 $$t/background/$$t-*.png $(DESTDIR)$(sharedir)/mga/backgrounds/; \ - install -d $(DESTDIR)$(sharedir)/gfxboot/themes/$$t; \ - install -m644 $$t/gfxboot/*.jpg $(DESTDIR)$(sharedir)/gfxboot/themes/$$t/; \ - done + set -x; set -e; \ + install -d $(DESTDIR)$(sharedir)/plymouth/themes/$$t; \ + install -m644 common/plymouth/*.script $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ + install -m644 common/plymouth/*.png $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ + install -m644 $$t/plymouth/*.plymouth $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ + install -m644 $$t/plymouth/*.png $(DESTDIR)$(sharedir)/plymouth/themes/$$t/; \ + install -m644 $$t/background/$$t-*.png $(DESTDIR)$(sharedir)/mga/backgrounds/; \ + install -d $(DESTDIR)$(sharedir)/gfxboot/themes/$$t; \ + install -m644 $$t/gfxboot/*.jpg $(DESTDIR)$(sharedir)/gfxboot/themes/$$t/; \ + done @mkdir -p $(DESTDIR)$(libexecdir) - install -m755 mga-bg-res/mga-bg-res.sh $(DESTDIR)$(libexecdir)/mga-bg-res @mkdir -p $(DESTDIR)$(unitdir) + install -m755 mga-bg-res/mga-bg-res.sh $(DESTDIR)$(libexecdir)/mga-bg-res install -m644 mga-bg-res/mga-bg-res.service $(DESTDIR)$(unitdir)/mga-bg-res.service dist: cleandist export |