mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
f32eee58b0
python/tests/basic.py: added first python test script and a 'make tests' target Daniel
21 lines
515 B
Makefile
21 lines
515 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = src include docs @PYTHON_SUBDIR@
|
|
|
|
EXTRA_DIST = libvirt.spec.in libvirt.spec COPYING.LIB \
|
|
libvirt.pc.in libvirt.pc TODO AUTHORS ChangeLog \
|
|
NEWS README
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libvirt.pc
|
|
|
|
rpm: clean
|
|
@(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
|
|
|
|
check-local: all tests
|
|
|
|
tests:
|
|
@(if [ "@PYTHON_SUBDIR@" != "" ] ; then cd python ; \
|
|
$(MAKE) MAKEFLAGS+=--silent tests ; fi)
|
|
|