mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
11 lines
226 B
Makefile
11 lines
226 B
Makefile
# SPDX-FileCopyrightText: 2018 Robin Appelman <robin@icewind.nl>
|
|
# SPDX-License-Identifier: MIT
|
|
.PHONY: tests
|
|
|
|
all: vendor
|
|
|
|
vendor: composer.json
|
|
composer install
|
|
|
|
tests: vendor
|
|
vendor/bin/phpunit tests -c tests/phpunit.xml
|