Do not include games or binutils by default

This commit is contained in:
Jeremy Soller 2017-04-07 21:25:16 -06:00
parent 4f329b8879
commit 0059276741
7 changed files with 0 additions and 36 deletions

View file

@ -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) $@

View file

@ -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) $@

View file

@ -2,7 +2,6 @@ userspace: \
drivers \
coreutils \
extrautils \
games \
installer \
ion \
netutils \
@ -12,15 +11,12 @@ userspace: \
schemes \
filesystem/bin/acid \
filesystem/bin/contain \
filesystem/bin/redox_installer \
filesystem/bin/smith \
filesystem/bin/tar
include mk/userspace/binutils.mk
include mk/userspace/coreutils.mk
include mk/userspace/drivers.mk
include mk/userspace/extrautils.mk
include mk/userspace/games.mk
include mk/userspace/installer.mk
include mk/userspace/ion.mk
include mk/userspace/netutils.mk