mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added a everything-all-archs target that builds both x86 and x64.
This commit is contained in:
parent
ac81da7609
commit
fda16f93ac
1 changed files with 6 additions and 0 deletions
6
Makefile
6
Makefile
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue