From 4a8ab009ce9997c36d7f973c9f5f785482673efd Mon Sep 17 00:00:00 2001 From: augustin64 Date: Sun, 27 Mar 2022 15:03:13 +0200 Subject: [PATCH] Add make.sh instructions --- make.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/make.sh b/make.sh index ca2287c..12d1c9e 100755 --- a/make.sh +++ b/make.sh @@ -6,7 +6,9 @@ if [[ $1 == "preview" ]]; then [[ $2 ]] || set -- "$1" "build" if [[ $2 == "build" ]]; then mkdir -p out + echo "Compilation de src/mnist/preview.c" gcc src/mnist/preview.c -o out/preview_mnist $FLAGS + echo "Fait." exit elif [[ $2 == "train" ]]; then [[ -f out/preview_mnist ]] || $0 preview build @@ -24,7 +26,9 @@ if [[ $1 == "test" ]]; then if [[ $2 == "build" ]]; then mkdir -p out for i in $(ls test); do + echo "Compilation de test/$i" gcc "test/$i" -o "out/test_$(echo $i | awk -F. '{print $1}')" $FLAGS + echo "Fait." done exit elif [[ $2 == "run" ]]; then @@ -37,3 +41,8 @@ if [[ $1 == "test" ]]; then exit fi fi + +echo "Usage:" +echo -e "\t$0 preview ( build | train | t10k )" +echo -e "\t$0 test ( build | run )\n" +echo -e "Les fichiers de test sont recompilés à chaque exécution,\nles autres programmes sont compilés automatiquement si manquants"