Skip to content
Snippets Groups Projects
Commit 4d9d1db8 authored by Isabella Skořepová's avatar Isabella Skořepová
Browse files

Added recmake

- utility invoking make in parent directories
parent 4cc5bf80
No related branches found
No related tags found
No related merge requests found
recmake 0 → 100755
#!/bin/bash
p=$(pwd)
while true
do
if [ -f Makefile ]
then
echo "running in $(pwd)"
make $@
cd $p
exit
else
cd ..
fi
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment