Added a everything-all-archs target that builds both x86 and x64.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-12-02 22:56:50 +01:00
parent ac81da7609
commit fda16f93ac
1 changed files with 6 additions and 0 deletions

View File

@ -53,6 +53,12 @@ cleanbuilds:
everything: all deb iso
everything-all-archs:
$(MAKE) clean $(MFLAGS)
$(MAKE) everything CPU=x86 $(MFLAGS)
$(MAKE) clean $(MFLAGS)
$(MAKE) everything CPU=x64 $(MFLAGS)
# Initializing RamDisk
$(INITRD): suball
(cd $(INITRDDIR) && ../mkinitrd/mkinitrd * -o ../$(INITRD))