diff --git a/cook.sh b/cook.sh
index 652a016c96ffd704313cc5cd35953d2d9655ae8a..c6f91249ff1b79a3a46a7074fddb5de65dc28f88 100755
--- a/cook.sh
+++ b/cook.sh
@@ -26,6 +26,13 @@ then
                     xargo clean
                     popd
                     ;;
+                install)
+                    mkdir -p root/bin
+                    pushd build
+                    #TODO xargo install --root "../root" $CARGOFLAGS
+                    cp -v $(find target/x86_64-unknown-redox/debug/ -maxdepth 1 -type f ! -name "*.*") ../root/bin
+                    popd
+                    ;;
                 fetch)
                     git clone --recursive "$GIT" build
                     ;;
diff --git a/recipes/smith/root/.crates.toml b/recipes/smith/root/.crates.toml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/recipes/smith/root/bin/smith b/recipes/smith/root/bin/smith
new file mode 100755
index 0000000000000000000000000000000000000000..fc57dbff381132614de21e77f0e3edba9e705392
Binary files /dev/null and b/recipes/smith/root/bin/smith differ