mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 06:48:47 +02:00
13 lines
323 B
Bash
Executable File
13 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
# Make sure Remind compiles with all supported languages; show
|
|
# tstlang.rem output for each language.
|
|
|
|
ALL=`grep ^#define lang.h | grep -v '#define LANG' | awk '{print $2}'`
|
|
|
|
for i in $ALL ; do
|
|
make clean
|
|
make -j`nproc` all LANGDEF=-DLANG=$i || exit 1
|
|
./remind -q -r ../tests/tstlang.rem
|
|
done
|
|
exit 0
|