blob: 0a3086cdb0db074aa6e10064feb1a68200892479 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#! /bin/bash
# $Id$
# $URL$
rm -f smoketest.log lcd4linux
make distclean
./bootstrap
for driver in BeckmannEgle BWCT CrystalFontz Curses Cwlinux G15 HD44780 LCD2USB LCDLinux LCDTerm LEDMatrix LPH7508 LUIse M50530 MatrixOrbital MilfordInstruments Noritake NULL PNG PPM RouterBoard Sample serdisplib SimpleLCD T6963 Trefon USBHUB 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
|