first shoot

This commit is contained in:
Tonton Th
2019-03-03 16:22:55 +01:00
commit 5a72327882
25 changed files with 1480 additions and 0 deletions

33
build.sh Executable file
View File

@@ -0,0 +1,33 @@
#!/bin/bash
cd lib
echo EEEEEEEEEE we are in $PWD
make
error=$?
if [ 0 -ne $error ]; then
printf "in %s err %d in %s\n" $PWD $error $0
exit $error
fi
cd ..
cd funcs
echo EEEEEEEEEE we are in $PWD
make
error=$?
if [ 0 -ne $error ]; then
printf "in %s err %d in %s\n" $PWD $error $0
exit $error
fi
cd ..
cd tools
echo
make fimg2pnm addtga2fimg mkfimg png2fimg fimgstats fimg2png
error=$?
cd ..
echo