watch.sh 116 B

123456789
  1. #!/bin/bash
  2. echo "Executing Makefile... $1"
  3. make -k $1
  4. while inotifywait -r -e modify ./; do
  5. make -k $1
  6. done