mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-15 17:51:07 +00:00
10 lines
294 B
Makefile
10 lines
294 B
Makefile
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'
|
|
|
|
.PHONY: build
|