lambda/build.sh

6 lines
82 B
Bash
Executable File

#!/bin/sh
for f in *.cpp; do
make SOURCE=$f
make SOURCE=$f USE_GMP=1
done