mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
14 lines
354 B
Makefile
14 lines
354 B
Makefile
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) $@
|