mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-08-18 01:48:32 +08:00
29 lines
405 B
Makefile
29 lines
405 B
Makefile
.PHONY: all check test ptest clean
|
|
|
|
all :
|
|
|
|
check : test
|
|
test : 02 03
|
|
./test.sh
|
|
#./test-ws.sh
|
|
|
|
02 :
|
|
./02-subscribe-argv-errors.py
|
|
./02-subscribe-qos1.py
|
|
./02-subscribe-format.py
|
|
./02-subscribe-null.py
|
|
./02-subscribe-verbose.py
|
|
|
|
03 :
|
|
./03-publish-argv-errors.py
|
|
./03-publish-qos0-empty.py
|
|
./03-publish-qos1-properties.py
|
|
./03-publish-qos1.py
|
|
|
|
ptest :
|
|
./test.sh
|
|
#./test-ws.sh
|
|
./test.py
|
|
|
|
clean:
|