aboutsummaryrefslogtreecommitdiffstats
path: root/Testbuild.sh
blob: 21493b349c09fbb5ebc514ff7e9c85ba91254341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -ex

make distclean
make
make clean

for option in HAVE_GTK HAVE_GTK_VNC HAVE_AVAHI HAVE_XENSTORE HAVE_LIBVIRT; do
	make $option=no
	make $option=no -n install
	make $option=no clean
done

make distclean