1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Add the first four utils

This commit is contained in:
Jordi Boggiano 2013-08-02 19:24:20 +02:00
parent d4e96b33e3
commit 9653ed81a2
8 changed files with 316 additions and 5 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
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