first commit

This commit is contained in:
Jose Caban
2025-06-07 11:38:03 -04:00
commit e0316ca3ff
79 changed files with 3155 additions and 0 deletions

24
make_all.sh Normal file
View File

@@ -0,0 +1,24 @@
#!/usr/bin/env bash
if [ $# == 0 ]; then
bash gen_makefiles.sh
else
bash gen_makefiles.sh $1
if [ $? == 2 ]; then
exit 2
fi
fi
cd build
for program in *; do
cd $program
for lang_name in *; do
cd $lang_name
make
cd ..
done
cd ..
done
cd ..