Do not include games or binutils by default
This commit is contained in:
parent
4f329b8879
commit
0059276741
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -46,15 +46,9 @@
|
||||||
[submodule "docgen"]
|
[submodule "docgen"]
|
||||||
path = docgen
|
path = docgen
|
||||||
url = https://github.com/redox-os/docgen.git
|
url = https://github.com/redox-os/docgen.git
|
||||||
[submodule "programs/binutils"]
|
|
||||||
path = programs/binutils
|
|
||||||
url = https://github.com/redox-os/binutils.git
|
|
||||||
[submodule "libc-artifacts"]
|
[submodule "libc-artifacts"]
|
||||||
path = libc-artifacts
|
path = libc-artifacts
|
||||||
url = https://github.com/redox-os/libc-artifacts.git
|
url = https://github.com/redox-os/libc-artifacts.git
|
||||||
[submodule "programs/games"]
|
|
||||||
path = programs/games
|
|
||||||
url = https://github.com/redox-os/games.git
|
|
||||||
[submodule "kernel"]
|
[submodule "kernel"]
|
||||||
path = kernel
|
path = kernel
|
||||||
url = https://github.com/redox-os/kernel.git
|
url = https://github.com/redox-os/kernel.git
|
||||||
|
|
|
@ -14,11 +14,9 @@ members = [
|
||||||
"installer",
|
"installer",
|
||||||
"kernel",
|
"kernel",
|
||||||
"programs/acid",
|
"programs/acid",
|
||||||
"programs/binutils",
|
|
||||||
"programs/contain",
|
"programs/contain",
|
||||||
"programs/coreutils",
|
"programs/coreutils",
|
||||||
"programs/extrautils",
|
"programs/extrautils",
|
||||||
"programs/games",
|
|
||||||
"programs/init",
|
"programs/init",
|
||||||
"programs/ion",
|
"programs/ion",
|
||||||
"programs/netutils",
|
"programs/netutils",
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
binutils: \
|
|
||||||
filesystem/bin/hex \
|
|
||||||
filesystem/bin/hexdump \
|
|
||||||
filesystem/bin/strings
|
|
||||||
|
|
||||||
filesystem/bin/%: programs/binutils/Cargo.toml programs/binutils/src/bin/%.rs $(BUILD)/libstd.rlib
|
|
||||||
mkdir -p filesystem/bin
|
|
||||||
$(CARGO) rustc --manifest-path $< --bin $* $(CARGOFLAGS) -o $@
|
|
||||||
$(STRIP) $@
|
|
|
@ -1,13 +0,0 @@
|
||||||
games: \
|
|
||||||
filesystem/bin/baduk \
|
|
||||||
filesystem/bin/ice \
|
|
||||||
filesystem/bin/minesweeper \
|
|
||||||
filesystem/bin/reblox \
|
|
||||||
filesystem/bin/rusthello
|
|
||||||
|
|
||||||
#filesystem/bin/snake
|
|
||||||
|
|
||||||
filesystem/bin/%: programs/games/Cargo.toml programs/games/src/%/**.rs $(BUILD)/libstd.rlib
|
|
||||||
mkdir -p filesystem/bin
|
|
||||||
$(CARGO) rustc --manifest-path $< --bin $* $(CARGOFLAGS) -o $@
|
|
||||||
$(STRIP) $@
|
|
|
@ -2,7 +2,6 @@ userspace: \
|
||||||
drivers \
|
drivers \
|
||||||
coreutils \
|
coreutils \
|
||||||
extrautils \
|
extrautils \
|
||||||
games \
|
|
||||||
installer \
|
installer \
|
||||||
ion \
|
ion \
|
||||||
netutils \
|
netutils \
|
||||||
|
@ -12,15 +11,12 @@ userspace: \
|
||||||
schemes \
|
schemes \
|
||||||
filesystem/bin/acid \
|
filesystem/bin/acid \
|
||||||
filesystem/bin/contain \
|
filesystem/bin/contain \
|
||||||
filesystem/bin/redox_installer \
|
|
||||||
filesystem/bin/smith \
|
filesystem/bin/smith \
|
||||||
filesystem/bin/tar
|
filesystem/bin/tar
|
||||||
|
|
||||||
include mk/userspace/binutils.mk
|
|
||||||
include mk/userspace/coreutils.mk
|
include mk/userspace/coreutils.mk
|
||||||
include mk/userspace/drivers.mk
|
include mk/userspace/drivers.mk
|
||||||
include mk/userspace/extrautils.mk
|
include mk/userspace/extrautils.mk
|
||||||
include mk/userspace/games.mk
|
|
||||||
include mk/userspace/installer.mk
|
include mk/userspace/installer.mk
|
||||||
include mk/userspace/ion.mk
|
include mk/userspace/ion.mk
|
||||||
include mk/userspace/netutils.mk
|
include mk/userspace/netutils.mk
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit ce057bac70f18fe7fd004c68e58c07c1cc7174e0
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit c4984dc276bf5776f544b5f9f6996330e3ca4b51
|
|
Loading…
Reference in a new issue