mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix foo-all-archs targets.
This commit is contained in:
parent
0f9a3d93a6
commit
d05bc1c6f5
1 changed files with 10 additions and 10 deletions
20
Makefile
20
Makefile
|
@ -246,37 +246,37 @@ everything: most-things iso.xz
|
|||
|
||||
.PHONY: sysroot-base-headers-all-archs
|
||||
sysroot-base-headers-all-archs:
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) sysroot-base-headers HOST=i486-sortix
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) sysroot-base-headers HOST=x86_64-sortix
|
||||
|
||||
.PHONY: all-archs
|
||||
all-archs:
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) all HOST=i486-sortix
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) all HOST=x86_64-sortix
|
||||
|
||||
.PHONY: most-things-all-archs
|
||||
most-things-all-archs:
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) most-things HOST=i486-sortix
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) most-things HOST=x86_64-sortix
|
||||
|
||||
.PHONY: everything-all-archs
|
||||
everything-all-archs:
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) everything HOST=i486-sortix
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) everything HOST=x86_64-sortix
|
||||
|
||||
.PHONY: release-all-archs
|
||||
release-all-archs:
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) release HOST=i486-sortix
|
||||
$(MAKE) clean
|
||||
$(MAKE) clean clean-sysroot
|
||||
$(MAKE) release HOST=x86_64-sortix
|
||||
|
||||
# Kernel
|
||||
|
|
Loading…
Reference in a new issue