mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-23 20:24:17 +08:00
21 lines
321 B
Makefile
21 lines
321 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = @subdirs2@ doc
|
|
|
|
EXTRA_DIST = \
|
|
fuse3.pc.in \
|
|
README* \
|
|
test/*.py \
|
|
test/pytest.ini
|
|
|
|
pkgconfigdir = @pkgconfigdir@
|
|
pkgconfig_DATA = fuse3.pc
|
|
|
|
$(pkgconfig_DATA): config.status
|
|
|
|
.PHONY: test
|
|
test: all
|
|
python3 -m pytest test/
|