mirror of
https://github.com/netfun2000/lcd4linux.git
synced 2026-02-27 09:44:34 +08:00
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@843 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
28 lines
634 B
Bash
Executable File
28 lines
634 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# $Id$
|
|
# $URL$
|
|
|
|
|
|
rm -f smoketest.log lcd4linux
|
|
|
|
make distclean
|
|
./bootstrap
|
|
|
|
for driver in BeckmannEgle BWCT CrystalFontz Curses Cwlinux EA232graphic G15 HD44780 LCD2USB LCDLinux LCDTerm LEDMatrix LPH7508 LUIse M50530 MatrixOrbital MilfordInstruments Noritake NULL Pertelian picoLCD PNG PPM RouterBoard Sample serdisplib SimpleLCD T6963 Trefon USBHUB USBLCD WincorNixdorf X11; do
|
|
|
|
make distclean
|
|
./configure --with-drivers=$driver
|
|
make
|
|
|
|
if [ -x lcd4linux ]; then
|
|
echo "Success: $driver" >>smoketest.log
|
|
else
|
|
echo "FAILED: $driver" >>smoketest.log
|
|
fi
|
|
|
|
done
|
|
|
|
make distclean
|
|
./configure
|