diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2009-11-19 21:25:51 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2009-11-19 23:02:46 -0300 |
commit | ca492e304110739e964987a857334433c4dbfe15 (patch) | |
tree | 6807211e3f3f9bb022147a1d39f804d44d050ca5 /configs/install-iso/Makefile | |
parent | 23b12f0dde504a61c76a60180b476e6fdcd01ddd (diff) | |
download | archiso32-ca492e304110739e964987a857334433c4dbfe15.tar.xz |
Reorder rules in the Makefile
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'configs/install-iso/Makefile')
-rw-r--r-- | configs/install-iso/Makefile | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/configs/install-iso/Makefile b/configs/install-iso/Makefile index 0dbdf33..4d93f8a 100644 --- a/configs/install-iso/Makefile +++ b/configs/install-iso/Makefile @@ -18,24 +18,26 @@ all-usb: net-usb core-usb all-net: net-iso net-usb all-core: core-iso core-usb -net-iso: $(NETname).iso -net-usb: $(NETname).img -core-iso: $(COREname).iso -core-usb: $(COREname).img - # Rules for each type of image -$(COREname).iso: core-pkgs base-fs $(BOOTLOADER) +core-iso: $(COREname).iso +$(COREname).iso: core-pkgs base-fs mkarchiso -p $(BOOTLOADER) iso $(WORKDIR) $@ -$(COREname).img: core-pkgs base-fs $(BOOTLOADER) +core-usb: $(COREname).img +$(COREname).img: core-pkgs base-fs mkarchiso -p $(BOOTLOADER) usb $(WORKDIR) $@ -$(NETname).iso: base-fs $(BOOTLOADER) +net-iso: $(NETname).iso +$(NETname).iso: base-fs mkarchiso -p $(BOOTLOADER) iso $(WORKDIR) $@ -$(NETname).img: base-fs $(BOOTLOADER) +net-usb: $(NETname).img +$(NETname).img: base-fs mkarchiso -p $(BOOTLOADER) usb $(WORKDIR) $@ + +# This is the main rule for make the working filesystem. base-fs: boot-files initcpio overlay iso-mounts + # Rule for make /boot -boot-files: root-image +boot-files: root-image $(BOOTLOADER) cp -r $(WORKDIR)/root-image/boot $(WORKDIR)/iso/ cp $(WORKDIR)/root-image/usr/share/licenses/common/GPL2/license.txt $(WORKDIR)/iso/boot/memtest86+/memtest.bin.COPYING cp -r boot-files/* $(WORKDIR)/iso/boot/ @@ -59,23 +61,23 @@ $(WORKDIR)/iso/boot/archiso_pata.img: initcpio-pata root-image # overlay filesystem overlay: - cp -r overlay $(WORKDIR)/ if [ ! -d $(WORKDIR)/overlay/etc/pacman.d ]; then \ - mkdir -m755 $(WORKDIR)/overlay/etc/pacman.d; \ + mkdir -p -m755 $(WORKDIR)/overlay/etc/pacman.d; \ fi + cp -r overlay $(WORKDIR)/ wget -O $(WORKDIR)/overlay/etc/pacman.d/mirrorlist http://www.archlinux.org/mirrorlist/$(ARCH)/all/ sed -i "s/#Server/Server/g" $(WORKDIR)/overlay/etc/pacman.d/mirrorlist -# Rule for make the core repo packages +# Rule for make the [core] repo packages core-pkgs: ./download-repo.sh core $(WORKDIR)/core-pkgs # Bootloaders -grub-gfx: +grub-gfx: root-image cp -r $(WORKDIR)/root-image/usr/lib/grub/i386-pc/* $(WORKDIR)/iso/boot/grub -grub: +grub: root-image cp -r $(WORKDIR)/root-image/usr/lib/grub/i386-pc/* $(WORKDIR)/iso/boot/grub -syslinux: +syslinux: root-image cp -r $(WORKDIR)/root-image/usr/lib/syslinux/isolinux.bin $(WORKDIR)/iso/boot/isolinux # Clean-up all work |