mirror of
https://github.com/mfillpot/mathomatic.git
synced 2026-01-08 04:29:39 +00:00
12 lines
132 B
Bash
Executable File
12 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
# Shell script to test Mathomatic.
|
|
|
|
if make --version >/dev/null 2>&1
|
|
then
|
|
set -x
|
|
make test
|
|
else
|
|
set -x
|
|
gmake test
|
|
fi
|