Files
archived-lcd4linux/smoketest.sh
reinelt 825e9464a2 [lcd4linux @ 2006-06-25 14:58:38 by reinelt]
switch to automake-1.9

git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@665 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2006-06-25 14:58:38 +00:00

24 lines
566 B
Bash
Executable File

#! /bin/bash
rm -f smoketest.log lcd4linux
make distclean
./bootstrap
for driver in BeckmannEgle BWCT CrystalFontz Curses Cwlinux G15 HD44780 LCD2USB LCDLinux LCDTerm LPH7508 LUIse M50530 MatrixOrbital MilfordInstruments Noritake NULL PNG PPM RouterBoard Sample serdisplib SimpleLCD T6963 Trefon USBLCD WincorNixdorf X11; do
make distclean
./configure --with-driver=$driver
make
if [ -x lcd4linux ]; then
echo "Success: $driver" >>smoketest.log
else
echo "FAILED: $driver" >>smoketest.log
fi
done
make distclean
./configure