coreutils/Makefile

13 lines
386 B
Makefile
Raw Normal View History

2013-08-02 17:24:20 +00:00
build:
rm -rf build
mkdir build
# run through the shell since make acting up on windows
sh -c 'rustc --out-dir build/ false/false.rs'
sh -c 'rustc --out-dir build/ printenv/printenv.rs'
sh -c 'rustc --out-dir build/ true/true.rs'
sh -c 'rustc --out-dir build/ yes/yes.rs'
sh -c 'rustc --out-dir build/ cat/cat.rs'
2013-10-18 12:00:38 +00:00
sh -c 'rustc --out-dir build/ whoami/whoami.rs'
2013-08-02 17:24:20 +00:00
.PHONY: build